Skip to Content
0
Former Member
Jul 18, 2008 at 04:23 PM

how to retrieve complete report output in HTML format

36 Views

Hi,

I'm looking for how to retrieve complete report output in HTML format.

I have tried the following and it only give me first page of the report output where in the actual report output should be 5 pages. Is there something I'm missing.

CallbackOption[] boCallOpt = new CallbackOption[1];
ImageManagement boImgMan = new ImageManagement();
boImgMan.setCallbackScript("getImage.jsp");
boImgMan.setImageManagementHolder("imageName");
boImgMan.setDocumentReferenceHolder("docRef");
boCallOpt[0] = boImgMan;
        
RetrieveData oRetrieveData = new RetrieveData();
RetrieveView oRetrieveView = new RetrieveView();
oRetrieveView.setCallbackOption(boCallOpt);
oRetrieveData.setRetrieveView(oRetrieveView);

Action[] oActions;
oActions = new Action[1];
oActions[0] = fillPrompts;

oReportEngine.getDocumentInformation(boDocInfo.getDocumentReference(), null, oActions, null,oRetrieveData);

Testing this on BOE XI 3.0

Thanks,