OXT_SYSTEM_MAINTAIN 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 OXT_SYSTEM_MAINTAIN into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
EEWC - System Data Maintenance
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: P_3SYS = Generate in ERP
Selection Text: P_CCLNT = Separate Customizing Client
Selection Text: P_CUST = Customer System
Selection Text: P_MOBIL = Enhance CRM Mobile
Selection Text: P_NSPC = Namespace
Selection Text: P_3SYSLS = D .
Selection Text: P_3SYSRF = D .
Selection Text: P_CSYSLS = D .
Selection Text: P_CSYSRF = D .
Selection Text: P_LSYSDS = D .
Selection Text: P_LSYSNM = D .
Selection Text: P_LSYSTP = D .
Title: EEW System Settings
Text Symbol: 001 = Save
Text Symbol: 002 = Expert Mode
Text Symbol: 003 = Adjust System Name
Text Symbol: BL1 = Home System
Text Symbol: BL2 = Customizing Client
Text Symbol: BL3 = Connected ERP System
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
OXT_GET_STANDARD_SYSTEMINFO CALL FUNCTION 'OXT_GET_STANDARD_SYSTEMINFO' EXPORTING iv_allow_creation = 'X' IMPORTING es_local_system = gs_localsys ev_cusclnt_logsys = p_csysls ev_cusclnt_rfc = p_csysrf ev_r3_logsys = p_3sysls ev_r3_rfc = p_3sysrf ev_namespace = lv_namespace ev_use_crm_mobile = p_mobil ev_customer_system = p_cust EXCEPTIONS no_standard_settings = 1 update_failed = 2 OTHERS = 3.
VIEW_ENQUEUE CALL FUNCTION 'VIEW_ENQUEUE' EXPORTING * ACTION = 'E' enqueue_mode = 'E' view_name = 'V_OXT_SYSTAB' * ENQUEUE_RANGE = ' ' EXCEPTIONS client_reference = 1 foreign_lock = 2 invalid_action = 3 invalid_enqueue_mode = 4 system_failure = 5 table_not_found = 6 OTHERS = 7.
VIEW_AUTHORITY_CHECK CALL FUNCTION 'VIEW_AUTHORITY_CHECK' EXPORTING * VIEW_ACTION = 'U' view_name = 'V_OXT_SYSTAB' EXCEPTIONS invalid_action = 1 no_authority = 2 no_clientindependent_authority = 3 table_not_found = 4 no_linedependent_authority = 5 OTHERS = 6.
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = '%_00' p_program = 'OXT_SYSTEM_MAINTAIN' TABLES p_exclude = lt_excl.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = lv_text IMPORTING answer = lv_answer EXCEPTIONS text_not_found = 1 OTHERS = 2.
VIEW_MAINTENANCE_CALL CALL FUNCTION 'VIEW_MAINTENANCE_CALL' EXPORTING action = 'S' view_name = 'V_OXT_SYSTAB' EXCEPTIONS OTHERS = 15.
LOGICAL_SYSTEM_GETLIST CALL FUNCTION 'LOGICAL_SYSTEM_GETLIST' TABLES systems = lt_bapi_lsys.
RFC_READ_R3_DESTINATION CALL FUNCTION 'RFC_READ_R3_DESTINATION' EXPORTING destination = p_csysrf authority_check = ' ' IMPORTING client = lv_mandt EXCEPTIONS OTHERS = 5.
RFC_READ_R3_DESTINATION CALL FUNCTION 'RFC_READ_R3_DESTINATION' EXPORTING destination = p_3sysrf authority_check = ' ' EXCEPTIONS OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.