Kbase P16871: How to send a report to screen using Report Builder
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  2/28/2010 |
|
Status: Verified
GOAL:
How to send a report to screen using Report Builder
GOAL:
Is it possible to direct Report Builder's output to screen ?
FACT(s) (Environment):
Windows
Progress 8.x
Progress 9.x
Report Builder
FIX:
To direct the output of Report Builder to the screen, set the following three Report Builder engine parameters as follows:
RB-OUTPUT-FILE="".
RB-PRINT-DESTINATION="D".
RB-PRINTER-NAME="".
Example:
/* This code will call the Report Builder Engine and */
/* send the output to screen. */
RUN aderb/_printrb.p
("c:\work\reports.prl", /* RB-REPORT-LIBRARY */
"Example", /* RB-REPORT-NAME */
"", /* RB-DB-CONNECTION */
"O", /* RB-INCLUDE-RECORDS */
"", /* RB-FILTER */
"", /* RB-MEMO-FILE */
"D", /* RB-PRINT-DESTINATION */
"", /* RB-PRINTER-NAME */
"", /* RB-PRINTER-PORT */
"", /* RB-OUTPUT-FILE */
1, /* RB-NUMBER-COPIES */
1, /* RB-BEGIN-PAGE */
99999, /* RB-END-PAGE */
no, /* RB-TEST-PATTERN */
"", /* RB-WINDOW-TITLE */
yes, /* RB-DISPLAY-ERRORS */
yes, /* RB-DISPLAY-STATUS */
no, /* RB-NO-WAIT */
""). /* RB-OTHER-PARAMETERS */