GHO_OWNDOI_READ_AR_SEQUENTIAL 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 GHO_OWNDOI_READ_AR_SEQUENTIAL 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.
Selection Text: O_CONC = D .
Selection Text: O_C_CODE = D .
Selection Text: O_DATE = D .
Selection Text: O_DOI_ID = D .
Selection Text: O_MEDIUM = D .
Title: Program GHO_OWNDOI_READ_AR_SEQUENTIAL
Text Symbol: 000 = Read Archiving object
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 = 'GHO_OWNDOI' IMPORTING archive_handle = lv_handle EXCEPTIONS OTHERS = 1.
ARCHIVE_GET_NEXT_OBJECT CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT' EXPORTING archive_handle = lv_handle EXCEPTIONS end_of_file = 1.
ARCHIVE_GET_TABLE * CALL FUNCTION 'ARCHIVE_GET_TABLE' * EXPORTING * archive_handle = lv_handle * record_structure = 'GHO_OWNDOI' * all_records_of_object = 'X' * TABLES * table = lt_doi_header_tmp * EXCEPTIONS * end_of_object = 0. "not entries of this type
ARCHIVE_READ_OBJECT_BY_HANDLE CALL FUNCTION 'ARCHIVE_READ_OBJECT_BY_HANDLE' EXPORTING iv_handle = lv_handle * IV_READ_CLASS_DATA = 'CONTEXT' CHANGING ct_obj_data = gt_data_object.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING archive_handle = lv_handle record_structure = gw_object_data-tabname all_records_of_object = 'X' TABLES table = lt_doi_header EXCEPTIONS end_of_object = 0. "not entries of this type
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = lv_handle.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_structure_name = 'GHO_OWN_DOI_HDR' TABLES t_outtab = lt_doi_header.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
GHO_OWNDOI_READ_AR_SEQUENTIAL - Program GHO_OWNDOI_READ_AR_SEQUENTIAL GHO_OWNDOI_READ_AR_SEQUENTIAL - Program GHO_OWNDOI_READ_AR_SEQUENTIAL GHO_OWNDOI_DEL - Archiving Ownership DOI: Delete program GHO_OWNDOI_DEL - Archiving Ownership DOI: Delete program GHO_OWNDOI_BUPA_WRI - Archiving Ownership Business Partner : Write program GHO_OWNDOI_BUPA_WRI - Archiving Ownership Business Partner : Write program