OG_CONVERT_PRECONF_FLAG 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 OG_CONVERT_PRECONF_FLAG 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 OG_CONVERT_PRECONF_FLAG
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SFW_GET_CLIENT_FOR_XPRA CALL FUNCTION 'SFW_GET_CLIENT_FOR_XPRA' EXPORTING * I_OBJECTTYPE = 'PROG' I_OBJECTNAME = 'OG_CONVERT_PRECONF_FLAG' * I_SELECT_STAND_BY = ' ' CHANGING T_T000 = ALL_CLIENTS[] .
DD_INDX_DEL CALL FUNCTION 'DD_INDX_DEL' EXPORTING SQLTAB = P_TABLE INDEXNAME = P_INDEX_NAME DEL_STATE = I_DD12L-AS4LOCAL IMPORTING RC = P_RCODE.
OG_CONVERT_PRECONF_FLAG_TASK CALL FUNCTION 'OG_CONVERT_PRECONF_FLAG_TASK' EXPORTING OLD_LTSPS = P_OLD_LTSPS NEW_LTSPS = P_NEW_LTSPS P_CLIENT = P_CLIENT EXCEPTIONS NO_VBUP_ENTRY_EXISTS = 1.
APPEND_PROTOCOL * CALL FUNCTION 'APPEND_PROTOCOL' * EXPORTING * ACCEPT_NOT_INIT = 'X' * TABLES * XMSG = TPROT * EXCEPTIONS * OTHERS = 01.
TR_APPEND_LOG CALL FUNCTION 'TR_APPEND_LOG' * EXPORTING * OPEN_FILE = 'X' * CLOSE_FILE = 'X' * CONDENSE = 'X' * MASTER_LANGU = 'E' * ACCEPT_NOT_INIT = ' ' * IV_SUPPRESS_STATISTICS = ' ' TABLES xmsg = tprot EXCEPTIONS file_not_found = 1 wrong_call = 2 OTHERS = 3.
TR_FLUSH_LOG CALL FUNCTION 'TR_FLUSH_LOG' EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.