The OneStream Community is temporarily frozen until June 29th due to the ongoing maintenance. Please read the blog post here to learn more.
Forum Discussion
LarysaZ
3 years agoNew Contributor II
Percent ownership in cube view
Hi,
My client has asked me to build a report with all subsidiaries and associated companies with respective Percent Ownership. I am aware that I can retrieve this through XFGetRelationshipProperty ...
ChristianW
OneStream Employee
3 years agoYes, you can create a dynamic member formula that returns all the relationship information. The consolidation member needs to be C#OwnerPostAdj, C#Elimination, C#Share to get access to the parent member. The code for the dynamic calc member formula looks like this:
Return api.Entity.PercentOwnership()
There are function for all relational information in the entity class. The definition for PercentOwnership is:
api.Entity.PercentOwnership(optional byval entityId as integer, optional byval parentId as integer, optional byval varyByScenarioTypeId as integer, optional byval varyByTimeId as integer) as decimal
If you don't specify the optional parameters, it will use the dataunits pov information.
- ChristianW3 years ago
OneStream Employee
In a cubeview, you can also use the XFMemberProperty, details are in the documentation.
I prefer the dynamic member formula because it allows you to access this information everywhere (i.e. quickview).
Related Content
- 3 months ago
- 2 years ago