BAPI_IUID_REG_DATA SAP (Required Data to Register UII) Structure details

Dictionary Type: Structure
Description: Required Data to Register UII




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




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

BAPI_IUID_REG_DATA 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 "Required Data to Register UII" 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_BAPI_IUID_REG_DATA TYPE BAPI_IUID_REG_DATA.

The BAPI_IUID_REG_DATA table consists of various fields, each holding specific information or linking keys about Required Data to Register UII data available in SAP. These include IUID_TYPE (Structure Type of UII), UID_IAC_ID (Issuing Agency Code), UID_EID (Enterprise Identifier), MATNR (Material Number).. 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 BAPI_IUID_REG_DATA 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
UIIUnique Item Identifier UII_CHAR72CHAR72UII_CHAR72UIIH_UII
IUID_TYPEStructure Type of UII IUID_TYPECHAR10Assigned to domainIUID_TYPEH_IUID_TYPE
UID_IAC_IDIssuing Agency Code UID_IAC_IDCHAR3Assigned to domainUID_IAC_ID
UID_EIDEnterprise Identifier UID_EIDCHAR18UID_EIDH_UID_EID
MATNRMaterial Number MATNRCHAR18Assigned to domainMATN1MATNRMATS_MAT1
CHARGEBatch Number CHARG_DCHAR10Assigned to domainCHARGCHA
SERNRSerial Number GERNRCHAR18GERNRGERNRSER
PCIDPrime Contractor Identifier UID_PCIDCHAR9UID_PCID
VBELNSales and Distribution Document Number VBELNCHAR10Assigned to domainALPHAVBELNAUN
POSNRItem number of the SD document POSNRNUMC6Assigned to domainPOSNR
MAKTXMaterial Description (Short Text) MAKTXCHAR40TEXT40
WAERKSD Document Currency WAERKCUKY5Assigned to domainWAERSFWS
MEINSBase Unit of Measure MEINSUNIT3Assigned to domainCUNITMEINS
NETWRNet value of the order item in document currency NETWR_APCURR15(2) WERTV8
ACC_CODEAcceptance Code UID_ACC_CODECHAR6UID_ACC_CODE
ACC_DATEAcceptance Date UID_ACC_DATEDATS8UID_ACC_DATE
IHREZ_EShip-to party character IHREZ_ECHAR12TEXT12
CUR_MATNRMaterial Number MATNRCHAR18Assigned to domainMATN1MATNRMATS_MAT1
CUR_MAT_DATDate from which the cross-plant material status is valid MSTDEDATS8DATUM
MAN_IACIssuing Agency Code UID_IAC_IDCHAR3Assigned to domainUID_IAC_ID
MAN_EIDEnterprise Identifier UID_EIDCHAR18UID_EIDH_UID_EID
BOTCODEBagged or Tagged Code UID_BOTCODECHAR1FLAG
CONTENTSContents UID_CONTENTSCHAR25CHAR25
EFFECTIVE_DATEEffectivity Date /CBAD/EFF_DATEDATS8DATUM
AOR_FLAGAdded or Removed Flag UID_AORFLAGCHAR1FLAG
MAR_IACIssuing Agency Code UID_IAC_IDCHAR3Assigned to domainUID_IAC_ID
MAR_EIDEnterprise Identifier UID_EIDCHAR18UID_EIDH_UID_EID
MEDIUM_CODEMedium Code UID_MEDIUM_CODECHAR25CHAR25
VALUEValue UID_VALUECHAR255CHAR255
CUST_PCIDPrime Contractor Identifier UID_PCIDCHAR9UID_PCID
CUST_CVBELNSales and Distribution Document Number VBELNCHAR10Assigned to domainALPHAVBELNAUN
CUST_RS_DATEReceive / Send Date UID_RS_DATEDATS8
CUST_STATUS_CODEStatus Code UID_STATUS_CODECHAR1FLAG
CHILD_UIIUnique Item Identifier UII_CHAR72CHAR72UII_CHAR72UIIH_UII
CHILD_IUID_TYPEStructure Type of UII IUID_TYPECHAR10Assigned to domainIUID_TYPEH_IUID_TYPE
CHILD_MAKTXMaterial Description (Short Text) MAKTXCHAR40TEXT40
PARENT_UIIUnique Item Identifier UII_CHAR72CHAR72UII_CHAR72UIIH_UII
CHILD_UID_IAC_IDIssuing Agency Code UID_IAC_IDCHAR3Assigned to domainUID_IAC_ID
CHILD_UID_EIDEnterprise Identifier UID_EIDCHAR18UID_EIDH_UID_EID
CHILD_MATNRMaterial Number MATNRCHAR18Assigned to domainMATN1MATNRMATS_MAT1
CHILD_CHARGEBatch Number CHARG_DCHAR10Assigned to domainCHARGCHA
CHILD_SERNRSerial Number GERNRCHAR18GERNRGERNRSER
CHILD_PCIDPrime Contractor Identifier UID_PCIDCHAR9UID_PCID
CHILD_BOTCODEBagged or Tagged Code UID_BOTCODECHAR1FLAG
CHILD_CONTENTSContents UID_CONTENTSCHAR25CHAR25
CHILD_EFFECTIVE_DATEEffectivity Date /CBAD/EFF_DATEDATS8DATUM
CHILD_AOR_FLAGAdded or Removed Flag UID_AORFLAGCHAR1FLAG
CHILD_MAR_IACIssuing Agency Code UID_IAC_IDCHAR3Assigned to domainUID_IAC_ID
CHILD_MAR_EIDEnterprise Identifier UID_EIDCHAR18UID_EIDH_UID_EID
CHILD_MEDIUM_CODEMedium Code UID_MEDIUM_CODECHAR25CHAR25
CHILD_VALUEValue UID_VALUECHAR255CHAR255

Key field Non-key field



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

As BAPI_IUID_REG_DATA 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 BAPI_IUID_REG_DATA as there is no data to select.

How to access SAP table BAPI_IUID_REG_DATA

Within an ECC or HANA version of SAP you can also view further information about BAPI_IUID_REG_DATA 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!