SAP GMGRTYPE Grant type Table data and field list

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

The GMGRTYPE table consists of various fields, each holding specific information or linking keys about Grant type data available in SAP. These include GRANT_TYPE (Grant Type), ASSIGNMENT_TYPE (Number Assignment Type), INTERNALRANGE (Number of Number Range for Internal Number Assignment), EXTERNALRANGE (Number of Number Range for External Number Assignment)... 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. .

GMGRTYPE table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)

Text table = GMGRTYPETEXTS


SAP GMGRTYPE 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 GMGRTYPE 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 MANDTCLNT3T000MANDT
GRANT_TYPEGrant Type GM_GRANT_TYPECHAR2GM_GRANT_TYPEGM_GRANT_TYPEGMGRANTTYPES
ASSIGNMENT_TYPENumber Assignment Type GM_ASSIGNMENT_TYPECHAR1GM_ASSIGNMENT_TYPE
INTERNALRANGENumber of Number Range for Internal Number Assignment GM_INUMNRCHAR2CHAR2
EXTERNALRANGENumber of Number Range for External Number Assignment GM_ENUMNRCHAR2CHAR2
STATUS_PROFILEStatus profile for the user states attached to system states GM_STATUS_PROFILECHAR8TJ20J_STSMA
POSTINGCONTROLPosting control GM_POSTINGCONTROLCHAR1GM_POSTINGCONTROL
FIELDGRPCONTROLField group control GM_FIELDGRPCONTROLCHAR1GM_FIELDGRPCONTROL
USERSTATUSMGMTUser status management GM_USERSTATUSMGMTCHAR1GM_USERSTATUSMGMT
TRANSFER_TO_FMTransfer to FM Budget Indicator GM_BDGT_TRANSFER_TO_FMCHAR1XFELD
BDGT_SOURCESource for Budgeting GM_BDGT_SOURCECHAR1GM_BDGT_SOURCE
CCCURENCYUse company code currency for grant GM_COMPANY_CODE_CURRENCYCHAR1XFELD
BUDGET_TRANSFERBudget transfer restrictions GM_BUDGET_TRANSFERCHAR1GM_BUDGET_TRANSFER
OUTGOINGOutgoing Grant Indicator GM_OUTGOINGCHAR1GM_OUTGOING

Key field Non-key field



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

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

SELECT SINGLE *
FROM GMGRTYPE
INTO CORRESPONDING FIELDS OF WA_GMGRTYPE
WHERE...

How to access SAP table GMGRTYPE

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

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