There are several peculiarities associated with exporting reports to an application server.
The export to an application server uses a different interface than the export to a presentation server (PC). Several possible consequences are described below.
Solution- 1. When you export in table format, no texts except the line texts (e.g. no column headers, footers, headers, title page, last page) are exported. This is only supported for an export in text format.
- 2. Report lines to be exported are always appended to existing files up to and including Release 3.0E. Use the following, simple ABAP/4 program to delete the contents of export files:
PROGRAM Z...
PARAMETERS: OUT_FILE LIKE LGRWO-OUT_FILE.
OPEN DATASET OUT_FILE IN TEXT MODE.
CLOSE DATASET OUT_FILE.
The program can be run either online or in the background. By means of this program, for example, you can in a first step of the background processing initialize the files required in the subsequent steps.
- 3. In contrast to an export to the presentation server (PC), an export to an application server can also be performed in the background.
REPORTWRITER, REPORTPAINTER, DOWNLOAD, title page, headers, report texts, export file
No comments:
Post a Comment