Forum Discussion
1 Reply
- RobbSalzmannValued Contributor II
You need the list of parent(s) this member you want to remove the relationships from rolls up to.
Construct your list:
Dim relationshipPks as New List(of RelationshipPk) 'parse over the parents - not coded here Dim dimPk as new DimPk(BrApi.Finance.Dim.GetDim(si, dimensionName).DimPk
inside the loop over the parents, (assuming parents are MemberInfo type):Dim relationshipPk as RelationshipPk = new RelationshipPk(dimPk.DimTypeId, parent.MemberId, DimConstants.Unknown); 'building the list of RelationshiptPk: relationshipPks.Add(relationshipPk)
Related Content
- 9 months ago
- 10 months ago
Question: Are there any learning materials to help when setting up a new application (in addition to the training materials)? As a new partner, we're spending some time to build an application to understand the interdependencies but is there anything which defines what order things need to be set up?
5 years ago