IUUC_CREATE_MT_ENTRY_ANALYSIS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for All subsequent IUUC activities refer to an organizational entity called the mass transfer identifier...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_CREATE_MT_ENTRY_ANALYSIS 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_DESCR = D Description
Selection Text: P_ENHPAK = Enhancement Package Rcv System
Selection Text: P_MT_ID = D Mass Transfer ID
Selection Text: P_PACK = D Migration Package
Selection Text: P_PHASE = D Phase
Selection Text: P_RCVREL = Receiver System Basis Release
Selection Text: P_RFCSND = Sender System rfc Destination
Selection Text: P_UNIC = Unicode Conversion (MDMP)
Title: Create Mass Transfer Entry for IUUC
Text Symbol: 004 = 'SAP' and 'CUS' are reserved IDs that must not be used
Text Symbol: 005 = Unicode Conversion (MDMP) included?
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_PROJ_DEFINE CALL FUNCTION 'DTL_PROJ_DEFINE' EXPORTING im_applic = 'SLO' im_project = g_proj_ident im_descript = p_descr i_tadir = abap_true i_uc_active = p_unic i_scenario = 'IUUC'.
DTL_SUBPROJ_DEFINE CALL FUNCTION 'DTL_SUBPROJ_DEFINE' EXPORTING im_project = g_proj_ident im_subproject = g_proj_ident im_descript = p_descr i_tadir = abap_true.
CNV_TABL_CLASS_GET_CVERS CALL FUNCTION 'CNV_TABL_CLASS_GET_CVERS' DESTINATION p_rfcsnd IMPORTING et_cvers = gt_cvers EXCEPTIONS communication_failure = 1 MESSAGE g_errtext system_failure = 2 MESSAGE g_errtext.
CNV_MBT_L_PROTOCOL_MESSAGE CALL FUNCTION 'CNV_MBT_L_PROTOCOL_MESSAGE' EXPORTING msgty = 'E' msgid = 'DMCLG' msgno = '383' msgv1 = p_rfcsnd msgv2 = g_errtext level = '2' probclass = '2' EXCEPTIONS OTHERS = 0.
CNV_MBT_L_PROTOCOL_MESSAGE CALL FUNCTION 'CNV_MBT_L_PROTOCOL_MESSAGE' EXPORTING msgty = 'E' msgid = 'DMCLG' msgno = '385' msgv1 = p_rfcsnd msgv2 = g_errtext level = '2' probclass = '2' EXCEPTIONS OTHERS = 0.
DMC_SERVER_LIST CALL FUNCTION 'DMC_SERVER_LIST' EXPORTING rfc_type = cl_dmc_load_distribution=>co_convert rfc_dest = g_rfcdest TABLES server_values = gt_servers.
CNV_TABL_CLASS_GET_CVERS CALL FUNCTION 'CNV_TABL_CLASS_GET_CVERS' DESTINATION g_rfcdest IMPORTING et_cvers = gt_cvers.
DTL_MT_DEFINE CALL FUNCTION 'DTL_MT_DEFINE' EXPORTING im_mt_id = p_mt_id im_descript = p_descr im_blocksize = p_blksiz im_subproject = g_proj_ident IMPORTING ex_lognumber = g_lognumber TABLES it_tables = gt_tables.
BAL_DB_LOAD CALL FUNCTION 'BAL_DB_LOAD' EXPORTING i_t_lognumber = gt_lognr IMPORTING e_t_log_handle = gt_loghndl EXCEPTIONS OTHERS = 0.
BAL_DSP_PROFILE_POPUP_GET CALL FUNCTION 'BAL_DSP_PROFILE_POPUP_GET' IMPORTING e_s_display_profile = gs_display_profile EXCEPTIONS OTHERS = 0.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = gs_display_profile i_t_log_handle = gt_loghndl EXCEPTIONS OTHERS = 0.
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_CREATE_MT_ENTRY_ANALYSIS - Create Mass Transfer Entry for IUUC IUUC_CREATE_MT_ENTRY_ANALYSIS - Create Mass Transfer Entry for IUUC IUUC_CREATE_MT_ENTRY - Create Mass Transfer Entry for IUUC IUUC_CREATE_MT_ENTRY - Create Mass Transfer Entry for IUUC IUUC_CREATE_LOGTAB_NONSAP - Create Logging Tables in a non-SAP system IUUC_CREATE_LOGTAB_NONSAP - Create Logging Tables in a non-SAP system