SAP GM_AUTH_GROUP_READ_TEXT Function Module for GM: Read authority group description
GM_AUTH_GROUP_READ_TEXT is a standard gm auth group read text SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for GM: Read authority group description processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for gm auth group read text FM, simply by entering the name GM_AUTH_GROUP_READ_TEXT into the relevant SAP transaction such as SE37 or SE38.
Function Group: GMAU
Program Name: SAPLGMAU
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function GM_AUTH_GROUP_READ_TEXT pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'GM_AUTH_GROUP_READ_TEXT'"GM: Read authority group description.
EXPORTING
AUTH_GROUP = "GM Authorization group
OBJECT = "Grants Management: Master Data Object Type
* LANGUAGE = SY-LANGU "R/3 System, current language
IMPORTING
E_DD07V = "Object Description
E_AUTH_GROUP_DESC = "Grants Management: Authority Groups Descriptions
TABLES
* TAUTH_GROUP_DESC = "Grants Management: Authority Groups Descriptions
EXCEPTIONS
WRONG_OBJECT = 1 NO_ENTRY_FOUND = 2
IMPORTING Parameters details for GM_AUTH_GROUP_READ_TEXT
AUTH_GROUP - GM Authorization group
Data type: GM_AUTHGROptional: No
Call by Reference: Yes
OBJECT - Grants Management: Master Data Object Type
Data type: GM_OBJECTOptional: No
Call by Reference: Yes
LANGUAGE - R/3 System, current language
Data type: SY-LANGUDefault: SY-LANGU
Optional: No
Call by Reference: Yes
EXPORTING Parameters details for GM_AUTH_GROUP_READ_TEXT
E_DD07V - Object Description
Data type: DD07VOptional: No
Call by Reference: Yes
E_AUTH_GROUP_DESC - Grants Management: Authority Groups Descriptions
Data type: GMAUTHGRPTOptional: No
Call by Reference: Yes
TABLES Parameters details for GM_AUTH_GROUP_READ_TEXT
TAUTH_GROUP_DESC - Grants Management: Authority Groups Descriptions
Data type: GMAUTHGRPTOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
WRONG_OBJECT - Parameter Object Incorrect
Data type:Optional: No
Call by Reference: Yes
NO_ENTRY_FOUND - No description avalilable for the requested Authority Group
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for GM_AUTH_GROUP_READ_TEXT Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_e_dd07v | TYPE DD07V, " | |||
| lv_auth_group | TYPE GM_AUTHGR, " | |||
| lv_wrong_object | TYPE GM_AUTHGR, " | |||
| lt_tauth_group_desc | TYPE STANDARD TABLE OF GMAUTHGRPT, " | |||
| lv_object | TYPE GM_OBJECT, " | |||
| lv_no_entry_found | TYPE GM_OBJECT, " | |||
| lv_e_auth_group_desc | TYPE GMAUTHGRPT, " | |||
| lv_language | TYPE SY-LANGU. " SY-LANGU |
|   CALL FUNCTION 'GM_AUTH_GROUP_READ_TEXT' "GM: Read authority group description |
| EXPORTING | ||
| AUTH_GROUP | = lv_auth_group | |
| OBJECT | = lv_object | |
| LANGUAGE | = lv_language | |
| IMPORTING | ||
| E_DD07V | = lv_e_dd07v | |
| E_AUTH_GROUP_DESC | = lv_e_auth_group_desc | |
| TABLES | ||
| TAUTH_GROUP_DESC | = lt_tauth_group_desc | |
| EXCEPTIONS | ||
| WRONG_OBJECT = 1 | ||
| NO_ENTRY_FOUND = 2 | ||
| . " GM_AUTH_GROUP_READ_TEXT | ||
ABAP code using 7.40 inline data declarations to call FM GM_AUTH_GROUP_READ_TEXT
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single LANGU FROM SY INTO @DATA(ld_language). | ||||
| DATA(ld_language) | = SY-LANGU. | |||
Search for further information about these or an SAP related objects