Groovy - How to exclude shared members from ASO createDataExporter()?
Summary:
HI All -
I need to exclude shared members from a createDataExporter() ASO data export. Would the best way way be to create two lists : List 1 with the members from the rollup I need to export and List 2, a list with all members that have a Data Storage property of "shared" and then remove List 2 from List 1?
Something like this (from @Brett Rooks - https://community.oracle.com/customerconnect/discussion/811261/can-you-exlude-members-in-a-groovy-data-export-script :
list1 = dim.getEvaluatedMembers(ILvl0Descendants(Total Entity))
list2 = dim.getEvaluatedMembers(Attribute(Entity_Closed))
list1.remove(list2)
I've seen on other threads stating that 'List 2' was so large it was not able to export, which may be a problem for me as well.
Tagged:
1