BON13F01 is a standard ABAP INCLUDE 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 BON13F01 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TRANSFER_NAMES_TO_FIELDS CALL FUNCTION 'TRANSFER_NAMES_TO_FIELDS' EXPORTING SELECTFIELD = L_FIELDNAME TABLES FIELDS = L_FIELDS NAMELIST = LIST_OF_FIELDS EXCEPTIONS WRONG_FORMAT_GIVEN = 01.
HELP_VALUES_GET_NO_DD_NAME CALL FUNCTION 'HELP_VALUES_GET_NO_DD_NAME' EXPORTING SELECTFIELD = L_FIELDNAME TITEL = TEXT-057 * TEXT: NACHWEISUMFANG WAHELEN NO_PERS_HELP_SELECT = YES SHOW_ALL_VALUES_AT_FIRST_TIME = YES IMPORTING IND = L_IND TABLES FIELDS = L_FIELDS FULL_TABLE = L_RANDIS_SELECT EXCEPTIONS FULL_TABLE_EMPTY = 01 NO_TABLESTRUCTURE_GIVEN = 02.
HELP_DOCU_SHOW_FOR_FIELD CALL FUNCTION 'HELP_DOCU_SHOW_FOR_FIELD' EXPORTING FIELDNAME = 'RANDIS' TABNAME = 'RWM03' KEYWORD = L_F1_TEXT HELP_IN_POPUP = YES EXCEPTIONS ERROR_MESSAGE = 1 OTHERS = 2.
DDUT_DOMVALUES_GET CALL FUNCTION 'DDUT_DOMVALUES_GET' EXPORTING NAME = 'RODIS' LANGU = SY-LANGU TEXTS_ONLY = ' ' TABLES DD07V_TAB = L_DD07V_TAB EXCEPTIONS ILLEGAL_INPUT = 1 OTHERS = 2.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING DYNAME = SY-CPROG DYNUMB = SY-DYNNR REQUEST = 'A' TABLES DYNPFIELDS = L_DYNPFIELDS EXCEPTIONS INVALID_ABAPWORKAREA = 1 INVALID_DYNPROFIELD = 2 INVALID_DYNPRONAME = 3 INVALID_DYNPRONUMMER = 4 INVALID_REQUEST = 5 NO_FIELDDESCRIPTION = 6 INVALID_PARAMETER = 7 UNDEFIND_ERROR = 8 DOUBLE_CONVERSION = 9 ERROR_MESSAGE = 10 OTHERS = 11.
DYNP_VALUES_UPDATE CALL FUNCTION 'DYNP_VALUES_UPDATE' EXPORTING DYNAME = SY-CPROG DYNUMB = SY-DYNNR TABLES DYNPFIELDS = L_DYNPFIELDS EXCEPTIONS INVALID_ABAPWORKAREA = 1 INVALID_DYNPROFIELD = 2 INVALID_DYNPRONAME = 3 INVALID_DYNPRONUMMER = 4 INVALID_REQUEST = 5 NO_FIELDDESCRIPTION = 6 UNDEFIND_ERROR = 7 ERROR_MESSAGE = 8 OTHERS = 9.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.