SAP GRFNMWRTINSTWI MSMP Runtime - Work Item execution context cache Table data and field list

GRFNMWRTINSTWI is a standard SAP Table which is used to store MSMP Runtime - Work Item execution context cache data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The GRFNMWRTINSTWI table consists of various fields, each holding specific information or linking keys about MSMP Runtime - Work Item execution context cache data available in SAP. These include WI_ID (Work item ID), INSTANCE_ID (MSMP Instance ID), VERSION (Version ID), TASK_ID (Stage Task ID)... 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. .

GRFNMWRTINSTWI table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP GRFNMWRTINSTWI table 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 GRFNMWRTINSTWI 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
MANDTClient MANDTCLNT3Assigned to domainMANDT
WI_IDWork item ID SWW_WIIDNUMC12Assigned to domainSWW_WIIDWID
INSTANCE_IDMSMP Instance ID GRFN_MW_INSTANCE_IDCHAR32GRFN_GUIDGRNFMW_INSTANCE_SRCHHLP
VERSIONVersion ID GRFN_MW_VERSIONNUMC6NUMC06GRFN_MW_VERSION_SHLP
TASK_IDStage Task ID GRFN_MW_STG_TSK_IDCHAR14HROBJEC_14
PROCESS_IDProcess ID GRFN_MW_PROCESS_IDCHAR30Assigned to domainGRFN_MW_PROCESS_IDGRFNMW_PROCESS_SRCH_HLP
EXTERNAL_KEYExternal Key GRFN_MW_EXT_KEYCHAR50GRFN_MW_EXT_KEY
EXTERNAL_KEY_DISExternal Key for Display GRFN_MW_EXT_KEY_DISPLAYCHAR50GRFN_MW_EXT_KEY_DISPLAY
STAGE_TYPEPath / Stage Type Class GRFN_MW_PATH_STG_TYPCHAR30SEOCLSNAME
PATH_IDPath ID GRFN_MW_PATH_IDCHAR20GRFN_MW_PATH_IDGRFNMW_PATHID
PATH_SEQPath Sequence Number (Long Time Stamp) GRFN_MW_PATH_SEQNRDEC21(7) TZNTSTMPL
STAGE_SEQNRStage Sequence Number GRFN_MW_STG_SEQNRNUMC3GRFN_MW_STG_SEQNR
STAGE_EXEC_SEQNRStage Execution Sequence Number GRFN_MW_STG_EXEC_SEQNRINT410INT4
STAGE_CONFIG_IDStage Configuration ID GRFN_MW_STG_CONFIG_IDCHAR30CHAR30
LINE_ITEM_KEYLine Item Key GRFN_MW_LINE_ITEMCHAR32GRFN_MW_LINE_ITEM

Key field Non-key field



How do I retrieve data from SAP table GRFNMWRTINSTWI using ABAP code

The following ABAP code Example will allow you to do a basic selection on GRFNMWRTINSTWI to SELECT all data from the table
DATA: WA_GRFNMWRTINSTWI TYPE GRFNMWRTINSTWI.

SELECT SINGLE *
FROM GRFNMWRTINSTWI
INTO CORRESPONDING FIELDS OF WA_GRFNMWRTINSTWI
WHERE...

How to access SAP table GRFNMWRTINSTWI

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

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