SAP IPM_RAWREC_STR OR Data Collector: Transfer Structure Table data and field list

IPM_RAWREC_STR 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 "OR Data Collector: Transfer Structure" 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_IPM_RAWREC_STR TYPE IPM_RAWREC_STR.

The IPM_RAWREC_STR table consists of various fields, each holding specific information or linking keys about OR Data Collector: Transfer Structure data available in SAP. These include OBJTYPE_TX (Object Type), SRC_HEADNO_TX (Sales and Distribution Document Number), SRC_ITEMNO_TX (Accounting Document Line Item Number), DATE_TX (Billing date for billing index and printout)... 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. .

IPM_RAWREC_STR structure Technical Details:

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


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

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the IPM_RAWREC_STR table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
LOGSYS_TXLogical system LOGSYSCHAR10Assigned to domainALPHALOGSYS
OBJTYPE_TXObject Type SWO_OBJTYPCHAR10Assigned to domainOJ_NAMEOBJ
SRC_HEADNO_TXSales and Distribution Document Number VBELNCHAR10Assigned to domainALPHAVBELNAUN
SRC_ITEMNO_TXAccounting Document Line Item Number POSNR_ACCNUMC10POSNR_ACC
DATE_TXBilling date for billing index and printout FKDATDATS8DATUM
IPThe ID of an Intellectual Property (not the GUID) IPM_CRM_PRODUCT_IPCHAR40IPM_CRM_PRODUCT
RGHTDIM01Rights Dimension 1 Value IPM_RIGHTS_DIMENSION_1CHAR30IPM_RIGHTS_DIM
RGHTDIM02Rights Dimension 2 Value IPM_RIGHTS_DIMENSION_2CHAR30IPM_RIGHTS_DIM
RGHTDIM03Rights Dimension 3 Value IPM_RIGHTS_DIMENSION_3CHAR30IPM_RIGHTS_DIM
RGHTDIM04Rights Dimension 4 Value IPM_RIGHTS_DIMENSION_4CHAR30IPM_RIGHTS_DIM
RGHTDIM05Rights Dimension 5 Value IPM_RIGHTS_DIMENSION_5CHAR30IPM_RIGHTS_DIM
RGHTDIM06Rights Dimension 6 Value IPM_RIGHTS_DIMENSION_6CHAR30IPM_RIGHTS_DIM
VALUE_TYPEThe Billing Engine Value Type IPM_BEA_VALUE_TYPECHAR4IPM_BEA_VALUE_TYPE_DOMAIN
CUM_SCOPEThe Cumulation Scope (ITD or PP, etc...) IPM_BEA_CUM_SCOPECHAR1IPM_BEA_CUM_SCOPE_DOMAIN
QUANTITYThe quantity of the Cumulation IPM_CUMULATION_QUANTITYQUAN15(3) MENGV15
QUANTITY_UNITThe unit for the cumulation quantity IPM_CUMULATION_QUANTITY_UNITUNIT3Assigned to domainCUNITMEINS
VALUEThe Cumulated Value IPM_CUMULATION_VALUECURR19(2) WERTV10
CURRENCYThe currency IPM_CURRENCYCUKY5Assigned to domainWAERS
XDELETEIndicates whether the entry is relevant for deletion IPM_DELETION_INDICATORCHAR1XFELD
UTCTIMEUTC time stamp in long form (YYYYMMDDhhmmss,mmmuuun) TZNTSTMPLDEC21(7) TZNTSTMPL

Key field Non-key field



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

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

How to access SAP table IPM_RAWREC_STR

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

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