Hi anilpersaud: you're really close, just a few things to change and we can hopefully get this working for you.
Regarding the changes to the BR:
- You only needed to modify the sections that indicated 'SET A DEFAULT HERE' which it looks like you've set correctly.
Modifications to make it work in your CV. For your member filter, try:
U4#TotProject.CustomMemberList(BRName=XFR_MemberList_ByDataBuffer, MemberListName=MemberListHasData, MemberExpansion=[Base], Sort=[True], MaxNumOfMembers=[20])
A few notes on the changes I made above:
- The X#Member is meant to represent the dimension you are pulling and the initial starting member to expand from, in this case U4#TotProject
- Sort, you'll want to pick either 'True' or 'False'
- The rest of the dimensions can be removed when used in the CubeView as they will simply pull from what is defined in your Cube View POV. However, you can also retain them if you'd like the member list to generate from the unique dimensions you've referenced rather than following the Cube View POV.
- General reminder, the rest of the dimensions will follow those defaults you've set, but can also be overridden as needed.
When you go to use this in a Report Book:
- The Report Book does not have the concept of the Cube View POV, hence you will need to include those Data Unit dimensions in the syntax of the CustomMemberList
- Usage in the Report Book Loop Member Filter will look like:
-
U4#TotProject.CustomMemberList(BRName=XFR_MemberList_ByDataBuffer, MemberListName=MemberListHasData, MemberExpansion=[Base], Sort=[True], MaxNumOfMembers=[20], Cube=[00_CorpRpt], Entity=[RealEntityHere-or-|!UseAnEntityParameter!|], Cons=[Local], Scenario=[Budget_V2], Time=[2024])
Let me know if that gets it going for you.
Cheers, -db