IUUC_DELETE_RECEIVER_TRIGGERS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The database triggers created in a previous activity are required for the sender 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_DELETE_RECEIVER_TRIGGERS into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
IUUC_DEL_RCV_TRIG - Delete triggers in the receiver syst
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_BATCH = Number of batch jobs
Selection Text: P_MT_ID = D Mass Transfer ID
Selection Text: P_PACK = D Pack ID
Selection Text: P_PHASE = D Phase
Selection Text: S_PROCOP = D process option
Selection Text: S_TABN = D Table Name
Title: IUUC: delete DB triggers in Receiver System
Text Symbol: 001 = Triggers successfully deleted for
Text Symbol: 002 = Trigger deletion failed for
Text Symbol: 003 = Tables
Text Symbol: FUN = delete DB triggers in receiver
INCLUDE CNV_MBT_SM_PARAMS.
INCLUDE CNV_MBT_SUB_SM_MACROS.
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'.
GET_JOB_RUNTIME_INFO CALL FUNCTION 'GET_JOB_RUNTIME_INFO' IMPORTING jobcount = gs_substate-jobcount jobname = gs_substate-jobname EXCEPTIONS OTHERS = 0.
CNV_MBT_L_SUBSTATE_WRITE CALL FUNCTION 'CNV_MBT_L_SUBSTATE_WRITE' EXPORTING packid = p_pack TABLES im_cnvmbtsubstate = gt_substate EXCEPTIONS OTHERS = 1.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
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.
CNV_MBT_SUBSTATE_WRITE CALL FUNCTION 'CNV_MBT_SUBSTATE_WRITE' TABLES im_cnvmbtsubstate = gt_substate EXCEPTIONS OTHERS = 0.
JOB_CLOSE CALL FUNCTION 'JOB_CLOSE' EXPORTING jobcount = l_jobcount jobname = l_jobname strtimmed = 'X' 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.
IUUC_DELETE_DB_TRIGGER CALL FUNCTION 'IUUC_DELETE_DB_TRIGGER' DESTINATION g_rcvrfc EXPORTING i_tabname = g_logged_table i_shadowtab = gs_tables-shadowtab_name i_process_option = gs_tables-process_option i_pool_handling = g_pool_handling EXCEPTIONS communication_failure = 1 MESSAGE l_errtext system_failure = 2 MESSAGE l_errtext trigger_deletion_failed = 3 OTHERS = 0.
IUUC_DELETE_ADBC_TRIGGER CALL FUNCTION 'IUUC_DELETE_ADBC_TRIGGER' DESTINATION g_rcvrfc EXPORTING i_tabname = g_logged_table i_shadowtab = gs_tables-shadowtab_name i_connection_name = g_dbcon_name i_process_option = gs_tables-process_option i_pool_handling = g_pool_handling IMPORTING e_error_message = g_error_message EXCEPTIONS communication_failure = 1 MESSAGE l_errtext system_failure = 2 MESSAGE l_errtext.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
RFC_CONNECTION_CLOSE CALL FUNCTION 'RFC_CONNECTION_CLOSE' EXPORTING destination = g_rcvrfc * TASKNAME = 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_DELETE_RECEIVER_TRIGGERS - IUUC: delete DB triggers in Receiver System IUUC_DELETE_RECEIVER_TRIGGERS - IUUC: delete DB triggers in Receiver System IUUC_DELETE_NONSAP_OBJECTS - Delete triggers, synonyms, logging tables... in non-SAP system IUUC_DELETE_NONSAP_OBJECTS - Delete triggers, synonyms, logging tables... in non-SAP system IUUC_DELETE_LOGTAB_ENTRIES - IUUC: delete logging table entries IUUC_DELETE_LOGTAB_ENTRIES - IUUC: delete logging table entries