SAP GRRMANALYSISDATA Analysis Data Table data and field list

GRRMANALYSISDATA is a standard SAP Table which is used to store Analysis Data data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The GRRMANALYSISDATA table consists of various fields, each holding specific information or linking keys about Analysis Data data available in SAP. These include CASE_GUID (Case GUID), ANALYSIS_TYPE (Analysis Type), PROBABILITY_MODE (Analysis Mode), PROBABILITY (Analysis Probability)... 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. .

GRRMANALYSISDATA 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 GRRMANALYSISDATA 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 GRRMANALYSISDATA 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
CLIENTClient MANDTCLNT3Assigned to domainMANDT
CASE_GUIDCase GUID GRRM_CASEGUIDCHAR32SYSUUID_C
ANALYSIS_TYPEAnalysis Type GRRM_ANALYSIS_TYPECHAR2GRRM_ANALYSIS_TYPE
PROBABILITY_MODEAnalysis Mode GRRM_ANALYSIS_MODECHAR2GRRM_ANALYSIS_MODE
PROBABILITYAnalysis Probability GRRM_ANALYSIS_PROBABILITYDEC6(4) RMPROGRRM_ANALYSIS_PROBABILITY
PROB_SCOREProbability Score GRFN_PROBABILITY_SCOREDEC13(5) RMSCRGRFN_SCORE
QUAL_IMPACTAnalysis Qualitative Impact GRRM_ANALYSIS_QUAL_IMPACTDEC4(2) GRRM_ANALYSIS_QUAL_IMPACT
IMPACT_SCOREImpact Score GRFN_IMPACT_SCOREDEC13(5) RMSCRGRFN_SCORE
SPEED_OF_ONSETSpeed of Onset GRRM_SPEED_OF_ONSETCHAR4Assigned to domainGRRM_SPEED_OF_ONSET
SOO_SCORESpeed of Onset Score GRFN_SPEED_OF_ONSET_SCOREDEC13(5) RMSCRGRFN_SCORE
OVERWRITTENIndicator GRFN_BOOLEANCHAR1GRFN_BOOLEAN

Key field Non-key field



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

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

SELECT SINGLE *
FROM GRRMANALYSISDATA
INTO CORRESPONDING FIELDS OF WA_GRRMANALYSISDATA
WHERE...

How to access SAP table GRRMANALYSISDATA

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

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