SAP GRPCTASK Obsolete: GRPC authorization tasks Table data and field list

GRPCTASK is a standard SAP Table which is used to store Obsolete: GRPC authorization tasks data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The GRPCTASK table consists of various fields, each holding specific information or linking keys about Obsolete: GRPC authorization tasks data available in SAP. These include TASK (Task ID), ROLE_UNIQUE (Task is restricted to a role), ENTITY (Object Type ID), APPLICATION (Application Scenario)... 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. .

GRPCTASK table Technical Details:

Delivery Class: S - System table, maint. only by SAP, change = modification
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced

Text table = GRPCTASKT


SAP GRPCTASK 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 GRPCTASK 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
TASKTask ID GRPC_TASKCHAR10GRPC_TASK
ROLE_UNIQUETask is restricted to a role GRPC_ROLE_UNIQUECHAR1XFELD
ENTITYObject Type ID GRPC_OBJTYPECHAR10GRPCOBJTYPEGRPC_OBJTYPE
APPLICATIONApplication Scenario CRMT_BSP_APPLCHAR20CRMC_BL_APPLCRM_BSP_APPL
REPLACED_BYReplaced by Task GRPC_REPL_TASKCHAR10GRPCTASKGRPC_TASK
SCHEDULABLECan Be Scheduled GRPC_SCHEDULABLECHAR1XFELD
INHERIT_AUTHTask Passes on Authorization GRPC_AUTH_INHCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM GRPCTASK
INTO CORRESPONDING FIELDS OF WA_GRPCTASK
WHERE...

How to access SAP table GRPCTASK

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

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