Solved
Relationship properties - how to get stored items?
Hello,
I'm trying to get all the stored items of Entity relationship properties, but w/o success. Any idea what I'm doing wrong?
Dim oVMProperties As New VaryingMemberProperties(DimType.Entity.Id, iChild, iParent)
Dim oVMPropertiesStoredItemsList As List(Of VaryingMemberPropertyItem) = oVMProperties.GetEntityRelationshipProperties().PercentConsolidation.GetStoredPropertyItems()I'm expecting the list (row #2) for some use cases (relationships) should return > 0, and it seems to be always 0:
{sChild} under {sParent}: {oVMPropertiesStoredItemsList.Count} | {oVMProperties.GetEntityRelationshipProperties().PercentConsolidation.GetNumStoredPropertyItems()} | {oVMProperties.GetEntityRelationshipProperties().PercentConsolidation.HasStoredPropertyItems()}
None under Root: 0 | 0 | False
CONSOLID under Root: 0 | 0 | False
INACTIVE under Root: 0 | 0 | False
Global under Root: 0 | 0 | False
TOTAL_LE under CONSOLID: 0 | 0 | False
