Smart View get member's children (HypGetMemberInformation) retrieving only 1 child
Summary
Smart View get member's children (HypGetMemberInformation) retrieving only 1 childContent
Hello,
During migration from essbase API to Smart View API, I'm struggling with one problem - I'm not able to retrieve member's children together with aliases.
Previous, application was using EssVGetMemberInfo:
X = EssVGetMemberInfo("sheetName", "AOL", EssChildLevel, False)
This particular option was retrieving 6 childen: AOLC, AOLG, AOLK, AOLP, AOLR, AOLZ
nextly,
X = EssVGetMemberInfo("SheetName", "AOL", EssChildLevel, True)
was retrieving aliases connected with children and it all was working fine.
Right now I'm trying to achieve same result by using Smart View function: HypGetMemberInformation
X = HypGetMemberInformation("SheetName", "AOL", HYP_MI_CHILD_MEMBER_NAME, abchildProp, abchild)
0