Right off the bat, I'll say I'm new to essbase and am far from an expert on report scripts so I'm sure I'm messing up the terminology here, so let me know and I can edit the post.
I'm creating 2 simple report scripts that pull from separate databases and want to combine the output into one file for a load into a new database. However, the two databases do not have the same dimensions but I'd like to add some dummy members to one report script so that everything lines up correctly for an easy merge later.
I'll try and provide some code to paint a picture of this, but it just boils down to whether or not I can add a blank member or not.
<COLUMN("Year")
"Year"
<ROW ("A","B","C","D","E","F","G")
"A"
"B"
"C"
"D"
[[BLANK MEMBER HERE]]
"E"
"F"
"G"
!
I tried using the Duplicate function, but this duplicates the entire row and not just the member. It is also worth mentioning that while I could do this after the scripts have ran using a unix script, I'd like to avoid the route if there's something I can do within the essbase script itself.
I've done quite a bit of research on this but haven't been able to find anything, so let me know what you guys think.