SAP RIE01 Work Fields Task List Package Allocation Table data and field list

RIE01 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 "Work Fields Task List Package Allocation" 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_RIE01 TYPE RIE01.

The RIE01 table consists of various fields, each holding specific information or linking keys about Work Fields Task List Package Allocation data available in SAP. These include INDEX_PLWP (Index for maintenance package allocation), INDEX_DT (Index referring to the current entry in a list), EQUNR (Equipment Number), IWERK (Maintenance Planning Plant)... 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. .

RIE01 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 RIE01 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 RIE01 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
MAX_ZUONRNode Number KNTNRNUMC8KNTNR
INDEX_PLWPIndex for maintenance package allocation INDEX_PLWPINT410TABIX
INDEX_DTIndex referring to the current entry in a list INDEX_ACTINT410SYST_LONG
EQUNREquipment Number EQUNRCHAR18Assigned to domainALPHAEQUNREQNEQUI
IWERKMaintenance Planning Plant IWERKCHAR4Assigned to domainWERKSIWK
PLNTYTask List Type PLNTYCHAR1Assigned to domainPLNTYPTYH_TCA01
PLNNRKey for Task List Group PLNNRCHAR8ALPHAPLNNRPLNPLKS
PLNALGroup Counter PLNALCHAR2ALPHAALTNRPAL
PLNFLSequence PLNFOLGECHAR6ALPHAPLNFOLGE
PLNKNNumber of the task list node PLNKNNUMC8KNTNR
DATUVValid-from date CIM_DATEDATS8DATUM
TECHVTechnical status from TECHVCHAR12TECHS
FLG_ROUTIndicator: Access via routing FLG_ROUTCHAR1XFELD
FLG_WPLANInd.: Entry through maint. plan transaction FLG_WPLANCHAR1FLAG
AENNRChange Number AENNRCHAR12Assigned to domainAENNRAENNRAEN
HISKZIndicator: Process plan with or without history HISKZCHAR1XFELD
CONTENTContent of a data field CONTENTCHAR30CHAR30
TRTYPTransaction type TRTYPCHAR1TRTYP
SORTMSort mode SORTMNUMC2NUM2
VORNROperation/Activity Number VORNRCHAR4NUMCVVORNRVGN
FLG_SELField for selecting records SEL_FLGCHAR1FLG_SEL
LINE_ROUTOutput line: Allocation of operation to BOM items LINE_ROUTCHAR75LINE_ROUT
HEAD_ROUTHeader line for the allocation of BOM items to operations HEAD_ROUTCHAR75HEAD_ROUT
FLG_ALLOCIndicator: Assignment exists FLG_ALLOCCHAR1XFELD
FLG_BTABInd.: Document table already configured in task list FLG_BTABCHAR1FLAG
FLG_WPInd.: Maint.package allocation to operations FLG_WPCHAR1FLAG
HEADLINEHeader line on the screen (maximum length) HEADLINECHAR70TEXT70
FLG_DETAILIndicator: Processing of the detail screen FLG_DETAILCHAR1XFELD
FLG_DTABInd.:Online table maint.packg.allocation already configured FLG_DTWPCHAR1FLAG
FLG_PROVIndicator: allocations to an operation FLG_PROVCHAR1XFELD
BLDGRScreen group BLDGRCHAR2BLDGR
PANELName of the current screen display PANELCHAR4PANEL
NO_ENTRIESIndicator: Dialog table contains entries FLGENTRIESCHAR1XFELD
TRTYP_WPLNTransaction type TRTYPCHAR1TRTYP
INDEX_PICKIndex referring to the current entry in a list INDEX_ACTINT410SYST_LONG
ZAEHLMaintenance Package Number PAKETZAEHLNUMC2Assigned to domainPAKZAE
HIERANature of the maintenance packages (additional, replacement) HIERARCHIENUMC2NUM2
KTEX1Text for maintenance package/cycle (time/performance) TXZYKLUSCHAR30TXT30
STRATMaintenance strategy STRATCHAR6Assigned to domainWSTRASTRSTRAA

Key field Non-key field



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

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

How to access SAP table RIE01

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

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