Page number of Page Count Peoplecode for BIP Report Merger — Oracle Analytics

Oracle Analytics Cloud and Server

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

Page number of Page Count Peoplecode for BIP Report Merger

Received Response
61
Views
1
Comments

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??

Thanks for your help.

John

 

Answers