TLAN_MANAGEMENTCL2 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 TLAN_MANAGEMENTCL2 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!
SCP_CODEPAGE_FOR_LANGUAGE CALL FUNCTION 'SCP_CODEPAGE_FOR_LANGUAGE' EXPORTING language = lang_key IMPORTING codepage = codepage EXCEPTIONS no_codepage = 1 OTHERS = 2.
BP_JOB_SELECT CALL FUNCTION 'BP_JOB_SELECT' EXPORTING jobselect_dialog = btc_no jobsel_param_in = l_job_sel * ENDDATE = ' ' * ENDTIME = ' ' * IMPORTING * JOBSEL_PARAM_OUT = TABLES jobselect_joblist = l_job_sel_list EXCEPTIONS * INVALID_DIALOG_TYPE = 1 * JOBNAME_MISSING = 2 * NO_JOBS_FOUND = 3 * SELECTION_CANCELED = 4 * USERNAME_MISSING = 5 OTHERS = 6 .
ENQUEUE_E_LANGUAGE CALL FUNCTION 'ENQUEUE_E_LANGUAGE' EXPORTING mode_t002c = 'E' spras = lang_key * X_SPRAS = ' ' * _SCOPE = '2' * _WAIT = ' ' * _COLLECT = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3 .
DEQUEUE_E_LANGUAGE CALL FUNCTION 'DEQUEUE_E_LANGUAGE' EXPORTING mode_t002c = 'E' spras = lang_key * X_SPRAS = ' ' * _SCOPE = '3' * _SYNCHRON = ' ' * _COLLECT = ' ' .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.