IUUC_PARALL_CONTROLLER_CLITR is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This activity allows you to transfer data changes from the productive system to the target system in parallel to the usage of the productive system...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter IUUC_PARALL_CONTROLLER_CLITR 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: P_ACT_ID = D Activity ID
Selection Text: P_FSTDAY = Date of first start
Selection Text: P_FSTTIM = Time of first start
Selection Text: P_JOBS = Number of transfer jobs
Selection Text: P_LSTDAY = Day of last run
Selection Text: P_LSTTIM = Time of last run
Selection Text: P_PACK = D Package
Selection Text: P_PHASE = D Phase
Selection Text: P_WAIT = Wait time till next scheduling
Title: Start data transfer in parallel to production (full incrementality)
Text Symbol: 001 = min
Text Symbol: 002 = No package specified
Text Symbol: 003 = No mass transfer ID assigned to this package
Text Symbol: 004 = Number of jobs scheduled for incremental load:
Text Symbol: 005 = Time interval between restarts of incremental load:
Text Symbol: 006 = Date and time of last iteration:
INCLUDE CNV_MBT_SM_PARAMS.
No SAP DATABASE tables are accessed within this REPORT code!
CNV_MBT_AUTHORITY_CHECK CALL FUNCTION 'CNV_MBT_AUTHORITY_CHECK' EXPORTING im_area = 'SLOP' im_level = 'PACKAGE' im_activity = '02'.
DTL_GET_IDS_FROM_PACKAGE CALL FUNCTION 'DTL_GET_IDS_FROM_PACKAGE' EXPORTING i_packid = p_pack IMPORTING e_mt_id = p_mt_id e_acpl_id = p_acp_id EXCEPTIONS no_pcl_destination = 1 invalid_package = 2 OTHERS = 3.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
DTL_MT_DATA_LOAD CALL FUNCTION 'DTL_MT_DATA_LOAD' EXPORTING im_mode = gc_mode_exec im_mt_id = p_mt_id im_acc_prec_id = p_acp_id im_test = space im_session_id = g_session_id im_restart = abap_true i_no_of_jobs = g_jobs i_ddic_check = abap_true TABLES it_tables = gt_tab_select.
DEQUEUE_E_DMC_MT_TABLES CALL FUNCTION 'DEQUEUE_E_DMC_MT_TABLES' EXPORTING mode_dmc_mt_tables = 'E' id = p_mt_id.
ENQUEUE_E_DMC_MT_TABLES CALL FUNCTION 'ENQUEUE_E_DMC_MT_TABLES' EXPORTING mode_dmc_mt_tables = 'E' id = p_mt_id EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
END_TIME_DETERMINE CALL FUNCTION 'END_TIME_DETERMINE' EXPORTING duration = p_wait unit = 'MIN' IMPORTING end_date = l_nxtstrtdate end_time = l_nxtstrttime EXCEPTIONS OTHERS = 0.
END_TIME_DETERMINE CALL FUNCTION 'END_TIME_DETERMINE' EXPORTING duration = 1 unit = 'MIN' IMPORTING end_date = l_nxtstrtdate end_time = l_nxtstrttime EXCEPTIONS OTHERS = 0.
JOB_OPEN CALL FUNCTION 'JOB_OPEN' EXPORTING jobname = l_jobname IMPORTING jobcount = l_jobcount EXCEPTIONS cant_create_job = 1 invalid_job_data = 2 jobname_missing = 3 OTHERS = 4.
JOB_CLOSE CALL FUNCTION 'JOB_CLOSE' EXPORTING jobcount = l_jobcount jobname = l_jobname sdlstrtdt = l_nxtstrtdate sdlstrttm = l_nxtstrttime EXCEPTIONS cant_start_immediate = 1 invalid_startdate = 2 jobname_missing = 3 job_close_failed = 4 job_nosteps = 5 job_notex = 6 lock_failed = 7 invalid_target = 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.
IUUC_PARALL_CONTROLLER_CLITR - Start data transfer in parallel to production (full incrementality) IUUC_PARALL_CONTROLLER_CLITR - Start data transfer in parallel to production (full incrementality) IUUC_NRIV_STORE - Store the content of N.R. table for further analysis IUUC_NRIV_STORE - Store the content of N.R. table for further analysis IUUC_NRIV_DISPLAY - Number Ranges Table Statistics IUUC_NRIV_DISPLAY - Number Ranges Table Statistics