SAP Reports / Programs

IUUC_PREPARE_LOAD_PARALLELIZAT SAP ABAP Report - Generate Coding to calculate Static Delimitations for Access Plans







IUUC_PREPARE_LOAD_PARALLELIZAT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report generates a report in the old productive system for tables which is assigned a fieldname and a number of parallel jobs in table IUUC_PERF_OPTION in the specified mass transfer...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_PREPARE_LOAD_PARALLELIZAT into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT IUUC_PREPARE_LOAD_PARALLELIZAT. "Basic submit
SUBMIT IUUC_PREPARE_LOAD_PARALLELIZAT AND RETURN. "Return to original report after report execution complete
SUBMIT IUUC_PREPARE_LOAD_PARALLELIZAT VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_CAP_ID = collective access plan ID
Selection Text: P_JOBS = # of parallel jobs for calcula
Selection Text: P_MT_ID = D Mass Transfer ID
Selection Text: P_NUMACP = Number of access plans
Selection Text: P_NUMREC = number of records per delimit.
Selection Text: S_TABNAM = D Table Name
Title: Generate Coding to calculate Static Delimitations for Access Plans
Text Symbol: 001 = Syntax error occurred in line
Text Symbol: 002 = Report
Text Symbol: 003 = successfully generated
Text Symbol: 004 = Job scheduling failed for report
Text Symbol: 005 = Job started
Text Symbol: FUN = GENERATE_ACPLAN_DELIM


INCLUDES used within this REPORT IUUC_PREPARE_LOAD_PARALLELIZAT

INCLUDE CNV_MBT_SM_PARAMS_NODISPLAY.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

CNV_MBT_AUTHORITY_CHECK CALL FUNCTION 'CNV_MBT_AUTHORITY_CHECK' EXPORTING im_area = 'SLOP' im_level = 'PACKAGE' im_activity = '02'.

IUUC_GENERATE_ACPLAN_DELIMITER CALL FUNCTION 'IUUC_GENERATE_ACPLAN_DELIMITER' DESTINATION g_sndrfc EXPORTING i_reportname = g_reportname it_code = gt_code i_sched_immediate = abap_true i_recs_per_delim = p_numrec IMPORTING e_line = g_line e_message = g_message EXCEPTIONS communication_failure = 1 MESSAGE g_err_msg_text system_failure = 2 MESSAGE g_err_msg_text job_schedule_failure = 3.

IUUC_GET_ACPLAN_DELIMITATIONS CALL FUNCTION 'IUUC_GET_ACPLAN_DELIMITATIONS' DESTINATION g_sndrfc EXPORTING i_mt_id = p_mt_id i_tabname = ls_perf_option-tabname i_reportname = l_reportname IMPORTING e_job_running = l_job_running EXCEPTIONS communication_failure = 1 MESSAGE g_err_msg_text system_failure = 2 MESSAGE g_err_msg_text.

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 strtimmed = abap_true 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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name IUUC_PREPARE_LOAD_PARALLELIZAT or its description.