SAP Reports / Programs

SBOOKA_OLD SAP ABAP Report - Demo Program for Archiving Data Using ADK (Old Version)







SBOOKA_OLD is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

If you would like to execute this report or see the full code listing simply enter SBOOKA_OLD into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT SBOOKA_OLD. "Basic submit
SUBMIT SBOOKA_OLD AND RETURN. "Return to original report after report execution complete
SUBMIT SBOOKA_OLD VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Data Archiving Write Program for BC_SBOOK
Selection Text: COMMENTS = D Archiving Session Note
Selection Text: DEL_PROD = Delete w. Production Run Var.
Selection Text: DEL_TEST = Delete with Test Run Variant
Selection Text: NO_FILE = Do Not Create Archive File
Selection Text: O_CARRID = D Airline Carrier
Selection Text: O_ORDER = D Posting Date
Title: Demo Program for Archiving Data Using ADK (Old Version)
Text Symbol: 101 = Selection of Posting Docs to Be Archived
Text Symbol: 102 = Technical Options
Text Symbol: 103 = Test Data for Archiving with BC_SBOOK


INCLUDES used within this REPORT SBOOKA_OLD

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

ARCHIVE_OPEN_FOR_WRITE CALL FUNCTION 'ARCHIVE_OPEN_FOR_WRITE' EXPORTING call_delete_job_in_test_mode = no_delete comments = comments create_archive_file = create object = 'BC_SBOOK' IMPORTING archive_handle = handle.

ARCHIVE_NEW_OBJECT CALL FUNCTION 'ARCHIVE_NEW_OBJECT' EXPORTING archive_handle = handle object_id = data_object_id. " optional: ADK index

ARCHIVE_PUT_RECORD CALL FUNCTION 'ARCHIVE_PUT_RECORD' EXPORTING archive_handle = handle record_structure = 'SBOOK' record = sbook_itab.

ARCHIVE_PUT_RECORD * call function 'ARCHIVE_PUT_RECORD' ...

ARCHIVE_PUT_TABLE * (or preferrable: call function 'ARCHIVE_PUT_TABLE'...)

ARCHIVE_SAVE_OBJECT CALL FUNCTION 'ARCHIVE_SAVE_OBJECT' EXPORTING archive_handle = handle EXCEPTIONS termination_requested = 1.

ARCHIVE_WRITE_STATISTICS CALL FUNCTION 'ARCHIVE_WRITE_STATISTICS' EXPORTING archive_handle = handle.

ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = handle.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name SBOOKA_OLD or its description.