IUUC_TABLES_ENTRIES SAP (Counter for number of entries in each table in IUUC_TABLES) Structure details

Dictionary Type: Structure
Description: Counter for number of entries in each table in IUUC_TABLES




ABAP Code to SELECT data from IUUC_TABLES_ENTRIES
Related tables to IUUC_TABLES_ENTRIES
Access table IUUC_TABLES_ENTRIES




Structure field list including key, data, relationships and ABAP select examples

IUUC_TABLES_ENTRIES is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Counter for number of entries in each table in IUUC_TABLES" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_IUUC_TABLES_ENTRIES TYPE IUUC_TABLES_ENTRIES.

The IUUC_TABLES_ENTRIES table consists of various fields, each holding specific information or linking keys about Counter for number of entries in each table in IUUC_TABLES data available in SAP. These include MT_ID (DMC: Indicator for Mass Transfer), TABNAME (Table Name), SHADOWTAB_NAME (Table Name), TABCLASS (Table category).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP IUUC_TABLES_ENTRIES structure fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
NUMBER_ENTRIESNumber of entries in a table IUUC_NUMBER_ENTRIESINT410
MT_IDDMC: Indicator for Mass Transfer DMC_MT_IDENTIFIERCHAR3CHAR03
TABNAMETable Name TABNAMECHAR30Assigned to domainAS4TABDTB
SHADOWTAB_NAMETable Name TABNAMECHAR30Assigned to domainAS4TABDTB
TABCLASSTable category IUUC_TABCLASSCHAR8IUUC_TABCLASS
SQLTABName of an SQL table or an appended table SQLAPPDTABCHAR30Assigned to domainAS4TAB
CONTFLAGDelivery class CONTFLAGCHAR1CONTFLAG
COBJ_GUIDUUID in compressed form (22 character UUENCODEd) SYSUUID_22CHAR22SYSUUID_22
DEVCLASSPackage DEVCLASSCHAR30Assigned to domainDEVCLASSDVCDEVCLASS
COMPONENTSoftware Component DLVUNITCHAR30Assigned to domainDLVUNITH_CVERS
CLIDEPFlag indicating client-specific entries CLIDEPCHAR1CLIDEP
PROCESS_OPTIONIUUC process option IUUC_PROCESS_OPTIONNUMC1IUUC_PROCESS_OPTION
SHADOW_TABLE_GENindicator: shadow table generated IUUC_SHADOWTAB_GENCHAR1BOOLEAN
ENTRIES_FOUNDindicator: entries exist in the logging table IUUC_ENTRIES_FOUND_IN_LOGTABCHAR1BOOLEAN
TRIGGER_STATEtrigger state (initial, created, activated, deactivated) IUUC_TRIGGER_STATENUMC1IUUC_TRIGGER_STATE
TRG_DEACT_RCVindicator: triggers in receiver have been deactivated IUUC_TRG_DEACT_RCVCHAR1BOOLEAN
IN_PROCESSBoolean Variable (X=True, -=False, Space=Unknown) BOOLEANCHAR1BOOLEAN
FAILEDBoolean Variable (X=True, -=False, Space=Unknown) BOOLEANCHAR1BOOLEAN
RCV_TAB_DELindicator: entries in receiver tables have been deleted IUUC_RCV_TAB_DELCHAR1BOOLEAN
ORIGINorigin of table upload (table upload, table classif...) IUUC_TAB_ORIGINCHAR1IUUC_TAB_ORIGIN
PROCOPT_CONFL_STconflict state concerning process option (classification) IUUC_PROCOPT_CONFLICT_STATENUMC1IUUC_PROCOPT_CONFLICT_STATE
CLASSIF_PROCOPTIUUC process option IUUC_PROCESS_OPTIONNUMC1IUUC_PROCESS_OPTION
CHANGE_CRITICALChanges of the process option are critical for this table IUUC_XINCCHAR1IUUC_XINC
CURSETTINGFlag: Object belongs to current settings CURSETTINGCHAR1X
IUUC_EVAL_VERSobsolete IUUC_VERSIONCHAR18
LOGTAB_IN_RCVcreate and fill logging table in receiver system IUUC_LOGTAB_IN_RCVCHAR1BOOLEAN
CLUSTER_PHYSICALIUUC: physical transfer of cluster tables IUUC_PHYS_CLUSTCHAR1BOOLEAN
CONSIDER_TREQconsider transport requests in delta replay IUUC_CONSID_TREQCHAR1IUUC_CONSIDER_TREQ
IMIG_STATEIMIG state IUUC_IMIG_STATENUMC1IUUC_IMIG_STATE
PROBTAB_NAMETable Name TABNAMECHAR30Assigned to domainAS4TABDTB
WRITE_BEHAVIOURMWB: Transfer Behaviour of Conversion DMC_RTO_BEHAVIOURNUMC1DMC_RTO_BEHAVIOUR
IN_SOBJBoolean Variable (X=True, -=False, Space=Unknown) BOOLEANCHAR1BOOLEAN
CLASSIF_SOURCEclassification source IUUC_CLASSIF_SOURCECHAR1IUUC_CLASSIF_SOURCE
OVERRIDE_ST10override ST10 data IUUC_OVERRIDE_ST10CHAR1BOOLEAN
DELTA_ALLOWED'delta-like' process options allowed IUUC_DELTA_ALLOWEDCHAR1BOOLEAN
PHASEphase in which trigger is to be changed from delta to freeze IUUC_FREEZE_PHASECHAR1
CRE_LOGTAB_RCVGeneral Flag FLAGCHAR1FLAG
NO_REPLForbid replication for table IUUC_FORBID_REPLICATIONCHAR1BOOLEAN
TAB_IN_RCVTable in Receiver System IUUC_TAB_IN_RCVCHAR1IUUC_TAB_IN_RCV
TAB_IN_SNDTable in Receiver System IUUC_TAB_IN_RCVCHAR1IUUC_TAB_IN_RCV
TRNSACT_CONSISTtable should be replicated in transactional consistent way IUUC_TRANSACTIONAL_CONSISTENCYCHAR1BOOLEAN
SYN_IN_RCVSynonym in Receiver IUUC_SYN_IN_RCVCHAR1IUUC_SYN_IN_RCV
LCL_TAB_FOR_RCVlocal table for receiver IUUC_LCL_TAB_FOR_RCVCHAR1IUUC_LCL_TAB_FOR_RCV

Key field Non-key field



How do I retrieve data from SAP structure IUUC_TABLES_ENTRIES using ABAP code?

As IUUC_TABLES_ENTRIES is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on IUUC_TABLES_ENTRIES as there is no data to select.

How to access SAP table IUUC_TABLES_ENTRIES

Within an ECC or HANA version of SAP you can also view further information about IUUC_TABLES_ENTRIES and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!