RDDIMPDP is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Each export from a source system and each import into a target system can be split into different phases or transport steps...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 RDDIMPDP 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.
Title: RDDIMPDP
INCLUDE RDDPRIPI.
No SAP DATABASE tables are accessed within this REPORT code!
TRINT_AUTHCHECK_TRANSP_DISP CALL FUNCTION 'TRINT_AUTHCHECK_TRANSP_DISP' EXCEPTIONS no_authorization = 01.
TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING systemname = gv_sysname EXCEPTIONS OTHERS = 01.
TRINT_ANALYSE_TRBAT_LOGNAME CALL FUNCTION 'TRINT_ANALYSE_TRBAT_LOGNAME' EXPORTING iv_logname = ps_header-logname IMPORTING ev_process_count = lv_process_count_c.
SHOW_JOBSTATE CALL FUNCTION 'SHOW_JOBSTATE' EXPORTING jobcount = lr_jobcount->* jobname = ps_header-fd-job IMPORTING aborted = lv_aborted finished = lv_finished preliminary = lv_preliminary ready = lv_ready running = lv_running scheduled = lv_scheduled EXCEPTIONS jobcount_missing = 07 jobname_missing = 08 job_notex = 07.
BP_JOB_DELETE CALL FUNCTION 'BP_JOB_DELETE' EXPORTING forcedmode = lv_forcedmode jobcount = lr_jobcount->* jobname = ps_header-fd-job EXCEPTIONS OTHERS = 0.
BP_JOB_DELETE CALL FUNCTION 'BP_JOB_DELETE' EXPORTING forcedmode = lv_forcedmode jobcount = lr_jobcount->* jobname = ps_header-fd-job EXCEPTIONS OTHERS = 0.
TRINT_CHECK_TRANSP_DISP CALL FUNCTION 'TRINT_CHECK_TRANSP_DISP' EXPORTING iv_client = lv_mandt iv_weak_check = 'X' IMPORTING ev_not_scheduled = lv_not_scheduled ev_jobname = lv_jobname EXCEPTIONS invalid_client = 01.
TRINT_CHECK_TRANSP_DISP CALL FUNCTION 'TRINT_CHECK_TRANSP_DISP' EXPORTING iv_client = lv_mandt iv_weak_check = 'X' IMPORTING ev_not_scheduled = lv_not_scheduled ev_jobname = lv_jobname EXCEPTIONS invalid_client = 01.
TRINT_ANALYSE_TRBAT_LOGNAME CALL FUNCTION 'TRINT_ANALYSE_TRBAT_LOGNAME' EXPORTING iv_logname = ps_header-logname IMPORTING ev_process_count = lv_proc_count ev_hostname = lv_hostname.
UPGRUNT_START_BATCHJOB * call function 'SUBST_START_BATCHJOB' CALL FUNCTION 'UPGRUNT_START_BATCHJOB' EXPORTING jobname = ps_header-fd-job repname = ps_header-fd-prog varname = ps_header-fd-vari iv_params = lt_params authcknam = lv_authcknam batchhost = lv_batchhost language = lv_langu priparams = gs_pri_params iv_schedever = 'X' IMPORTING jobcount = lv_jobcount rc_start = lv_returncode.
TRINT_TRIGGER_TRANSP_DISP CALL FUNCTION 'TRINT_TRIGGER_TRANSP_DISP' EXPORTING iv_client = lv_mandt EXCEPTIONS raise_failed = 01.
STRF_SETNAME_TEMPPROT CALL FUNCTION 'STRF_SETNAME_TEMPPROT' EXPORTING acttype = ps_header-fd-log dirtype = lv_dirtype sysname = lv_sysname trkorr = pv_trkorr trbat_logname = pv_logname IMPORTING file = lv_file.
STRF_SETNAME_TEMPPROT_SINGLE CALL FUNCTION 'STRF_SETNAME_TEMPPROT_SINGLE' EXPORTING acttype = ps_header-fd-log dirtype = lv_dirtype sysname = lv_sysid trbat_logname = pv_logname IMPORTING file = lv_file.
TRINT_WRITE_LOG CALL FUNCTION 'TRINT_WRITE_LOG' EXPORTING iv_log_type = 'FILE' iv_logname_file = lv_file TABLES it_msgs = lt_sprot_u EXCEPTIONS OTHERS = 1.
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 RDDIMPDP or its description.