SDVBKARD 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 SDVBKARD into the relevant SAP transactions such as SE38 or SE80
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.
Title: Program SDVBKARD
Text Symbol: 001 = No Archive Opened
Text Symbol: 002 = Error When Reading Address
Text Symbol: 003 = Text Line
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_OPEN_FOR_READ CALL FUNCTION 'ARCHIVE_OPEN_FOR_READ' EXPORTING OBJECT = 'SD_VBKA' IMPORTING ARCHIVE_HANDLE = AR_HANDLE EXCEPTIONS OTHERS = 8. "HWR
ARCHIVE_GET_NEXT_OBJECT CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT' EXPORTING ARCHIVE_HANDLE = AR_HANDLE EXCEPTIONS OTHERS = 6.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING ARCHIVE_HANDLE = AR_HANDLE RECORD_STRUCTURE = 'VBKA' ALL_RECORDS_OF_OBJECT = 'X' TABLES TABLE = YVBKA EXCEPTIONS OTHERS = 4.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING ARCHIVE_HANDLE = AR_HANDLE RECORD_STRUCTURE = 'VBFA' ALL_RECORDS_OF_OBJECT = 'X' TABLES TABLE = XVBFA EXCEPTIONS OTHERS = 4.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING ARCHIVE_HANDLE = AR_HANDLE RECORD_STRUCTURE = 'NAST' ALL_RECORDS_OF_OBJECT = 'X' TABLES TABLE = XNAST EXCEPTIONS OTHERS = 4.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING ARCHIVE_HANDLE = AR_HANDLE RECORD_STRUCTURE = 'VBPA' ALL_RECORDS_OF_OBJECT = 'X' TABLES TABLE = XVBPA EXCEPTIONS OTHERS = 4.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING ARCHIVE_HANDLE = AR_HANDLE RECORD_STRUCTURE = 'SADLSTWU' ALL_RECORDS_OF_OBJECT = 'X' TABLES TABLE = XSTWU EXCEPTIONS OTHERS = 4.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING ARCHIVE_HANDLE = AR_HANDLE RECORD_STRUCTURE = 'SADLSTADM' ALL_RECORDS_OF_OBJECT = 'X' TABLES TABLE = XSTADM EXCEPTIONS OTHERS = 4.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING ARCHIVE_HANDLE = AR_HANDLE RECORD_STRUCTURE = 'SADLSTIAD' ALL_RECORDS_OF_OBJECT = 'X' TABLES TABLE = XSTIAD EXCEPTIONS OTHERS = 4.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING ARCHIVE_HANDLE = AR_HANDLE RECORD_STRUCTURE = 'SADLSTRECH' ALL_RECORDS_OF_OBJECT = 'X' TABLES TABLE = XSTRECH EXCEPTIONS OTHERS = 4.
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING ARCHIVE_HANDLE = AR_HANDLE.
SELECT_TEXT CALL FUNCTION 'SELECT_TEXT' EXPORTING OBJECT = 'VBKA' NAME = TEXTNAME ID = '*' LANGUAGE = '*' ARCHIVE_HANDLE = AR_HANDLE IMPORTING ENTRIES = TEXT_ENTRIES TABLES SELECTIONS = TXT_TAB EXCEPTIONS OTHERS = 2.
READ_TEXT CALL FUNCTION 'READ_TEXT' EXPORTING ID = TXT_TAB-TDID LANGUAGE = TXT_TAB-TDSPRAS NAME = TXT_TAB-TDNAME OBJECT = TXT_TAB-TDOBJECT ARCHIVE_HANDLE = AR_HANDLE TABLES LINES = TEXT_LINES EXCEPTIONS OTHERS = 8.
ADDRESS_ARCHIVE_GET_TABLE CALL FUNCTION 'ADDRESS_ARCHIVE_GET_TABLE' EXPORTING ARCHIVE_HANDLE = AR_HANDLE RECORD_STRUCTURE = 'ADRC' TABLES T_DATA = XADRC EXCEPTIONS INVALID_STRUCTURE = 1 OTHERS = 2.
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = g_repid IS_LAYOUT = ls_layout IT_FIELDCAT = lt_fieldcat_1 I_SAVE = gc_save IT_EVENTS = lt_events I_TABNAME_HEADER = gv_tabname_hdr I_TABNAME_ITEM = gv_tabname_itm IS_KEYINFO = ls_keyinfo TABLES T_OUTTAB_HEADER = gt_output_hdr T_OUTTAB_ITEM = gt_output_itm EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_PROGRAM_NAME = g_repid I_INTERNAL_TABNAME = iv_inttab I_STRUCTURE_NAME = iv_structure I_INCLNAME = g_repid CHANGING CT_FIELDCAT = xt_fieldcat EXCEPTIONS INCONSISTENT_INTERFACE = 1 PROGRAM_ERROR = 2 OTHERS = 3.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING i_list_type = 0 IMPORTING et_events = xt_events EXCEPTIONS list_type_wrong = 1 OTHERS = 2.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = gt_list_top_of_list.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.