cancel
Showing results for 
Search instead for 
Did you mean: 

Merge Dimensions/ReportEngine SDK

Former Member
0 Kudos

Can someone please point me in the direction of how I can see merged dimensions (if they exist, what the definition is, etc.) through the XI R2 SDK's for Webi documents?

Thanks in advance.

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

Hello Ian,

Have a look at the following code snippet:


SynchroManager synchManager = null;
Link link = null;

synchManager = WebiDocument.getDictionary().getSynchroManager();
for (int i = 0; i < synchManager.getLinkCount(); i++){
  link = synchManager.getLink(i);
  out.println(link.getQualification());
  for(int k = 0; k < link.getExpressionCount(); k++){
      out.println(link.getExpression(k).getFormulaLanguageID());
  }
}

This should list the merged dimensions within a Webi Document and will list the composite dimensions which make up the linked dimension. I hope this is what you were looking for and hopefully it helps.

Jonathan

Edited by: Jonathan Wiens on Nov 13, 2008 4:57 PM

Former Member
0 Kudos

Worked great - thanks!

Answers (0)