Announcing a new experience for the Oracle Analytics community coming April 4th!
This category will be read-only as we migrate this space from 3/30-4/4, after which you’ll be able to post as usual. See you there!
Page number of Page Count Peoplecode for BIP Report Merger
Summary
How to get the Total page Count when merging 2 reports?Content
Hi All,
I have 2 BI Publisher reports that are getting merged in an App Engine into 1 report pdf. I can use the following to get the page number:
/*** Page Number ***/
Local PSXP_ENGINE:PageNumber &oPageNumber = create PSXP_ENGINE:PageNumber();
&oPageNumber.FontName = "Arial";
&oPageNumber.FontSize = 7;
&oPageNumber.PositionX = 400;
&oPageNumber.PositionY = 15;
&oMerger.PageNumber = &oPageNumber;
However, I need to get the total number of pages between the two reports that are merged in the app engine (Report 1 = 10pgs, Report 2 = 1 pg, Total = 11pgs)
Does anyone know of a function or method I can use to do this? An Array perhaps??