MDG_LG_ACTIVATION 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 MDG_LG_ACTIVATION 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: PO_APPL = D Application
Selection Text: PO_CLI = D Client
Selection Text: PO_LANGU = D Language Key
Selection Text: PO_OBJ = D Object for Language Activation
Selection Text: P_MSG = Issue Messages
Selection Text: P_TEST = Test Run
Title: Activation of Languages
Text Symbol: 001 = Restriction of Objects
Text Symbol: 002 = Client selection
Text Symbol: 003 = Options
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MDG_LG_AUTHORITY_CHECK CALL FUNCTION 'MDG_LG_AUTHORITY_CHECK' EXPORTING i_actvt = '02' EXCEPTIONS no_authority = 1 OTHERS = 2.
MDG_LG_GET_OBJECTS CALL FUNCTION 'MDG_LG_GET_OBJECTS' EXPORTING it_object = lt_object IMPORTING et_object = lt_object.
MDG_LG_PROCESS_OBJECTS CALL FUNCTION 'MDG_LG_PROCESS_OBJECTS' EXPORTING it_object = lt_object it_langu = lt_langu io_msg = lo_msg_tmp i_test = p_test i_no_rfc = space.
MDG_TR_GET_RFC_DEST CALL FUNCTION 'MDG_TR_GET_RFC_DEST' EXPORTING * I_SYSID = SY-SYSID i_mandt = l_client IMPORTING e_rfcdest = l_rfcdest EXCEPTIONS not_found = 1 OTHERS = 2.
MDG_LG_PROCESS_OBJECTS_RFC CALL FUNCTION 'MDG_LG_PROCESS_OBJECTS_RFC' DESTINATION l_rfcdest EXPORTING it_object = lt_object it_langu = lt_langu i_test = p_test IMPORTING et_message = lt_msg EXCEPTIONS communication_failure = 1 MESSAGE msg_text system_failure = 2 MESSAGE msg_text.
F4IF_GET_SHLP_DESCR CALL FUNCTION 'F4IF_GET_SHLP_DESCR' EXPORTING shlpname = 'MDG_LG_T002C' * SHLPTYPE = 'SH' IMPORTING shlp = shlp.
F4IF_START_VALUE_REQUEST CALL FUNCTION 'F4IF_START_VALUE_REQUEST' EXPORTING shlp = shlp IMPORTING rc = l_subrc TABLES return_values = t_return.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.