IUUC_IMIG_CRE_TABLES_IN_RCV is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for For all tables of the mass transfer that were added in the previous step, the DDIC and nametab definition of corresponding tables are created in the receiver system, but with different name (Z prefix)...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_IMIG_CRE_TABLES_IN_RCV 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_MT_ID = D Mass Transfer ID
Selection Text: P_PACK = D Pack ID
Selection Text: P_PHASE = D Phase
Title: Create Z Table in Receiver System (SAP DDIC only)
Text Symbol: 001 = Unicode nametab could not be read in sender system
Text Symbol: FUN = IUUC_IMIG_DDSTEP_REMOTE
INCLUDE: CNV_MBT_SM_PARAMS_NODISPLAY.
INCLUDE: IUUC_IMIG_ICONS.
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'.
IUUC_DD_SQLT_GET_WRAPPER CALL FUNCTION 'IUUC_DD_SQLT_GET_WRAPPER' DESTINATION g_rfcdest_snd EXPORTING i_sqltable_name = l_sql_tabname IMPORTING es_dd06v = ls_dd06v TABLES et_dd16v = lt_dd16v EXCEPTIONS communication_failure = 1 MESSAGE gd_msgtext system_failure = 2 MESSAGE gd_msgtext illegal_input = 3 OTHERS = 4.
IUUC_IMIG_ADD_SQLTAB_REMOTE CALL FUNCTION 'IUUC_IMIG_ADD_SQLTAB_REMOTE' DESTINATION g_rfcdest_rcv EXPORTING i_tabname = l_alias_tabname is_dd06v = ls_dd06v TABLES it_dd16v = lt_dd16v EXCEPTIONS communication_failure = 1 MESSAGE gd_msgtext system_failure = 2 MESSAGE gd_msgtext tabl_put_failed = 3 activation_error = 4 OTHERS = 5.
DMC_DDIF_TABL_GET_WRAPPER CALL FUNCTION 'DMC_DDIF_TABL_GET_WRAPPER' DESTINATION i_send_dest EXPORTING name = i_tabname i_nametab_only = abap_true i_get_all_infos = abap_true IMPORTING dd02v_wa = ls_dd02v dd09l_wa = ls_dd09l TABLES dd03p_tab = lt_dd03p dd05m_tab = lt_dd05m dd08v_tab = lt_dd08v dd12v_tab = lt_dd12v dd17v_tab = lt_dd17v EXCEPTIONS communication_failure = 1 MESSAGE gd_msgtext system_failure = 2 MESSAGE gd_msgtext illegal_input = 3 undefined_error = 4 no_fields = 5 OTHERS = 6.
IUUC_IMIG_GET_UC_NAMETAB CALL FUNCTION 'IUUC_IMIG_GET_UC_NAMETAB' DESTINATION i_send_dest EXPORTING tabname = i_tabname IMPORTING es_x030l = ls_x030l TABLES et_x031l_uc = lt_x031l_uc EXCEPTIONS communication_failure = 1 MESSAGE gd_msgtext system_failure = 2 MESSAGE gd_msgtext no_entry_found = 3 OTHERS = 4.
IUUC_IMIG_ADD_TABLE_REMOTE CALL FUNCTION 'IUUC_IMIG_ADD_TABLE_REMOTE' DESTINATION i_recv_dest EXPORTING i_tabname = i_alias_tabname is_dd02v = ls_dd02v is_dd09l = ls_dd09l is_x030l = ls_x030l TABLES it_dd03p = lt_dd03p it_dd05m = lt_dd05m it_dd08v = lt_dd08v it_dd12v = lt_dd12v it_dd17v = lt_dd17v it_x031l = lt_x031l_uc EXCEPTIONS communication_failure = 1 MESSAGE gd_msgtext system_failure = 2 MESSAGE gd_msgtext tabl_put_failed = 3 nametab_put_error = 4 activation_error = 5 OTHERS = 6.
IUUC_IMIG_SYST_REMOTE CALL FUNCTION 'IUUC_IMIG_SYST_REMOTE' DESTINATION g_rfcdest_rcv IMPORTING dest_saprl = l_dest_saprl system_is_unicode = l_dest_is_unicode EXCEPTIONS communication_failure = 1 MESSAGE g_msg_text system_failure = 2 MESSAGE g_msg_text OTHERS = 3.
IUUC_IMIG_SYST_REMOTE CALL FUNCTION 'IUUC_IMIG_SYST_REMOTE' DESTINATION g_rfcdest_snd IMPORTING dest_saprl = l_send_saprl system_is_unicode = l_send_is_unicode EXCEPTIONS communication_failure = 1 MESSAGE g_msg_text system_failure = 2 MESSAGE g_msg_text OTHERS = 3.
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_IMIG_CRE_TABLES_IN_RCV - Create Z Table in Receiver System (SAP DDIC only) IUUC_IMIG_CRE_TABLES_IN_RCV - Create Z Table in Receiver System (SAP DDIC only) IUUC_IMIG_APPROVAL_TRNSFR - IUUC_IMIG_APPROVAL_TRNSFR IUUC_IMIG_APPROVAL_TRNSFR - IUUC_IMIG_APPROVAL_TRNSFR IUUC_IMIG_ADD_TABLE - Add a Table to the list of replication tables IUUC_IMIG_ADD_TABLE - Add a Table to the list of replication tables