BI Publisher PeopleCode Display command does not generate on page but on download list.
Why is my Publisher Peoplecode does generate on a pop-page any more BUT on the download list.
It used to work generating report on a separate
I use the same PeopleCode:
import PSXP_RPTDEFNMANAGER:ReportDefn;
/* Declare variables */
Local PSXP_RPTDEFNMANAGER:ReportDefn &oRptDefn;
Local Record &rcdQryPrompts;
/* Call the XML Publisher report */
&oRptDefn = create PSXP_RPTDEFNMANAGER:ReportDefn("AAL_CAAT_ABS");
&oRptDefn.Get();
/* Generate report */
&oRptDefn.ProcessReport("AAL_CAAT_ABS_1", %Language, %Date, "XLS");
/* Perform a save */
CommitWork();
/* Display the report to the user */
&oRptDefn.DisplayOutput();