IUUC_DELETE_NONSAP_OBJECTS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report allows to delete different types of objects in DB systems not being part of an SAP 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_NONSAP_OBJECTS 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_LOGTAB = Delete logging tables
Selection Text: P_MT_ID = D Mass Transfer ID
Selection Text: P_SCHEMA = Database Schema
Selection Text: P_SYNON = Delete Initial Load Objects
Selection Text: P_TRIGG = delete Triggers
Selection Text: S_TABNAM = D Table Name
Title: Delete triggers, synonyms, logging tables... in non-SAP system
Text Symbol: 001 = Error occurred for table
Text Symbol: 002 = The following objects shall be deleted:
Text Symbol: 003 = DB Triggers
Text Symbol: 004 = Logging tables and corresponding SAP DDIC table definitions and synonyms
Text Symbol: 005 = SAP DDIC table definitions for nonSAP tables, and synonyms
Text Symbol: 006 = Choose at least one processing mode
Text Symbol: FUN = DELETE_NONSAP_OBJECTS
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DDIF_OBJECT_DELETE CALL FUNCTION 'DDIF_OBJECT_DELETE' EXPORTING type = gc_tabl name = g_synonym_name EXCEPTIONS illegal_input = 1 no_authority = 2 OTHERS = 3.
DDIF_OBJECT_DELETE CALL FUNCTION 'DDIF_OBJECT_DELETE' EXPORTING type = gc_tabl name =
-shadowtab_name EXCEPTIONS illegal_input = 1 no_authority = 2 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_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 IUUC_DELETE_LOGGING_TABLES_RCV - Delete Logging Tables in Remote Systems IUUC_DELETE_LOGGING_TABLES_RCV - Delete Logging Tables in Remote Systems