LOOP AT INFOTAB.
WRITE: / '=>', INFOTAB-LINE.
ENDLOOP.
*---- 2nd ----
WRITE / '2nd: FM_SELECTION_CRITERIA_PRINT' color col_key.
CALL FUNCTION 'FM_SELECTION_CRITERIA_PRINT'
EXPORTING
I_REPORT_NAME = SY-CPROG
EXCEPTIONS
OTHERS = 1.
WRITE / 'End of data.' color col_key.
RS_COVERPAGE_SELECTIONS - Internal use: Generate table for printing cover sheet Called from PRINT_SELECTIONS
FM_SELECTION_CRITERIA_PRINT - Just prints selection criteria for the report (sy-cprog).
GET_PRINT_PARAMETERS - Read, determine, change spool print parameters and archive parameters
Only correct way to modify a print or archive parameter record (see FM documentation).
LIST_FROM_MEMORY - Prepared list import from memory report report01.
...
data listtab like listobject occurs 1.
...
* Either other report
* has exported the list to memory, or
submit report02...
exporting list to memory and return.
call function 'LIST_FROM_MEMORY'
tables listobject = listtab.
* process listtab (see below)
LIST_TO_MEMORY - Exports list of SY-LSIND to memory
LIST_FREE_MEMORY - Refreshes list saved in memory [and listobject table]
WRITE_LIST - Display a (saved) list object
Writes list (e.g. imported from memory), not encapsulated in a CALL SCREEN. Can be used after or before WRITE statement to add list data to the current screen
DISPLAY_LIST - List object display (ABAPLIST)
Displays list (e.g. imported from memory) in full screen or dialog box.
SAVE_LIST - Save list
Saves list of SY-LSIND as internal table
Code:
report z_save_list.
data: list like abaplist occurs 0 with header line.
data: begin of listout occurs 0,
line(1024) type c,
end of listout.
LIST_DOWNLOAD - ABAP list download Like List->Save->Local file. METHOD = RTF | DAT | HTML | NOCO(no conversion) | space(selection dialog)
DOWNLOAD_LIST - Download list in ASCI format (called from LIST_DOWNLOAD when METHOD = NOCO)
LIST_DOWNLOAD_HTML - Download list in HTML format (called from LIST_DOWNLOAD when METHOD = HTML)
LIST_SCROLL_LINE_TOPMOST - Scroll List Display: Selected Line Becomes First Line E.g. to place an interactively-selected line (SY-LILLI) directly after the page header:
call function 'LIST_SCROLL_LINE_TOPMOST'
exporting list_line = sy-lilli.
See also SCROLL statement.
LIST_SCAN - Calls standard Find window.
WWW_LIST_TO_HTML - After running a report, call this function to convert the list output to HTML.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.