SAP DEQUEUE_E_GRPC_ACCGROUP Function Module for Release lock on object E_GRPC_ACCGROUP









DEQUEUE_E_GRPC_ACCGROUP is a standard dequeue e grpc accgroup SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Release lock on object E_GRPC_ACCGROUP 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 dequeue e grpc accgroup FM, simply by entering the name DEQUEUE_E_GRPC_ACCGROUP into the relevant SAP transaction such as SE37 or SE38.

Function Group: /1BCDWBEN/GEN0001
Program Name: /1BCDWBEN/SAPLGEN0001
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function DEQUEUE_E_GRPC_ACCGROUP 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 'DEQUEUE_E_GRPC_ACCGROUP'"Release lock on object E_GRPC_ACCGROUP
EXPORTING
* MODE_GRPC_ACCOUNT_GRP = 'E' "Lock mode for table GRPC_ACCOUNT_GRP
* X_VERSION = ' ' "Fill argument 03 with initial value?
* X_ORGUNIT_ID = ' ' "Fill argument 04 with initial value?
* X_ACCGROUP_ID = ' ' "Fill argument 05 with initial value?
* X_TIMEFRAME = ' ' "Fill argument 06 with initial value?
* X_TF_YEAR = ' ' "Fill argument 07 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MANDT = SY-MANDT "01th enqueue argument
* REGULATION_ID = "02th enqueue argument
* VERSION = "03th enqueue argument
* ORGUNIT_ID = "04th enqueue argument
* ACCGROUP_ID = "05th enqueue argument
* TIMEFRAME = "06th enqueue argument
* TF_YEAR = "07th enqueue argument
* X_REGULATION_ID = ' ' "Fill argument 02 with initial value?
.



IMPORTING Parameters details for DEQUEUE_E_GRPC_ACCGROUP

MODE_GRPC_ACCOUNT_GRP - Lock mode for table GRPC_ACCOUNT_GRP

Data type: ENQMODE
Default: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_VERSION - Fill argument 03 with initial value?

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_ORGUNIT_ID - Fill argument 04 with initial value?

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_ACCGROUP_ID - Fill argument 05 with initial value?

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_TIMEFRAME - Fill argument 06 with initial value?

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_TF_YEAR - Fill argument 07 with initial value?

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

_SCOPE -

Data type:
Default: '3'
Optional: Yes
Call by Reference: No ( called with pass by value option)

_SYNCHRON - Synchonous unlock

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

_COLLECT - Initially only collect lock

Data type: DDENQCOLL
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

MANDT - 01th enqueue argument

Data type: GRPC_ACCOUNT_GRP-MANDT
Default: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)

REGULATION_ID - 02th enqueue argument

Data type: GRPC_ACCOUNT_GRP-REGULATION_ID
Optional: Yes
Call by Reference: No ( called with pass by value option)

VERSION - 03th enqueue argument

Data type: GRPC_ACCOUNT_GRP-VERSION
Optional: Yes
Call by Reference: No ( called with pass by value option)

ORGUNIT_ID - 04th enqueue argument

Data type: GRPC_ACCOUNT_GRP-ORGUNIT_ID
Optional: Yes
Call by Reference: No ( called with pass by value option)

ACCGROUP_ID - 05th enqueue argument

Data type: GRPC_ACCOUNT_GRP-ACCGROUP_ID
Optional: Yes
Call by Reference: No ( called with pass by value option)

TIMEFRAME - 06th enqueue argument

Data type: GRPC_ACCOUNT_GRP-TIMEFRAME
Optional: Yes
Call by Reference: No ( called with pass by value option)

TF_YEAR - 07th enqueue argument

Data type: GRPC_ACCOUNT_GRP-TF_YEAR
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_REGULATION_ID - Fill argument 02 with initial value?

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for DEQUEUE_E_GRPC_ACCGROUP 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_mode_grpc_account_grp  TYPE ENQMODE, "   'E'
lv_x_version  TYPE ENQMODE, "   SPACE
lv_x_orgunit_id  TYPE ENQMODE, "   SPACE
lv_x_accgroup_id  TYPE ENQMODE, "   SPACE
lv_x_timeframe  TYPE ENQMODE, "   SPACE
lv_x_tf_year  TYPE ENQMODE, "   SPACE
lv__scope  TYPE ENQMODE, "   '3'
lv__synchron  TYPE ENQMODE, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_mandt  TYPE GRPC_ACCOUNT_GRP-MANDT, "   SY-MANDT
lv_regulation_id  TYPE GRPC_ACCOUNT_GRP-REGULATION_ID, "   
lv_version  TYPE GRPC_ACCOUNT_GRP-VERSION, "   
lv_orgunit_id  TYPE GRPC_ACCOUNT_GRP-ORGUNIT_ID, "   
lv_accgroup_id  TYPE GRPC_ACCOUNT_GRP-ACCGROUP_ID, "   
lv_timeframe  TYPE GRPC_ACCOUNT_GRP-TIMEFRAME, "   
lv_tf_year  TYPE GRPC_ACCOUNT_GRP-TF_YEAR, "   
lv_x_regulation_id  TYPE GRPC_ACCOUNT_GRP. "   SPACE

  CALL FUNCTION 'DEQUEUE_E_GRPC_ACCGROUP'  "Release lock on object E_GRPC_ACCGROUP
    EXPORTING
         MODE_GRPC_ACCOUNT_GRP = lv_mode_grpc_account_grp
         X_VERSION = lv_x_version
         X_ORGUNIT_ID = lv_x_orgunit_id
         X_ACCGROUP_ID = lv_x_accgroup_id
         X_TIMEFRAME = lv_x_timeframe
         X_TF_YEAR = lv_x_tf_year
         _SCOPE = lv__scope
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         MANDT = lv_mandt
         REGULATION_ID = lv_regulation_id
         VERSION = lv_version
         ORGUNIT_ID = lv_orgunit_id
         ACCGROUP_ID = lv_accgroup_id
         TIMEFRAME = lv_timeframe
         TF_YEAR = lv_tf_year
         X_REGULATION_ID = lv_x_regulation_id
. " DEQUEUE_E_GRPC_ACCGROUP




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_GRPC_ACCGROUP

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.

DATA(ld_mode_grpc_account_grp) = 'E'.
 
DATA(ld_x_version) = ' '.
 
DATA(ld_x_orgunit_id) = ' '.
 
DATA(ld_x_accgroup_id) = ' '.
 
DATA(ld_x_timeframe) = ' '.
 
DATA(ld_x_tf_year) = ' '.
 
DATA(ld__scope) = '3'.
 
DATA(ld__synchron) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single MANDT FROM GRPC_ACCOUNT_GRP INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
"SELECT single REGULATION_ID FROM GRPC_ACCOUNT_GRP INTO @DATA(ld_regulation_id).
 
"SELECT single VERSION FROM GRPC_ACCOUNT_GRP INTO @DATA(ld_version).
 
"SELECT single ORGUNIT_ID FROM GRPC_ACCOUNT_GRP INTO @DATA(ld_orgunit_id).
 
"SELECT single ACCGROUP_ID FROM GRPC_ACCOUNT_GRP INTO @DATA(ld_accgroup_id).
 
"SELECT single TIMEFRAME FROM GRPC_ACCOUNT_GRP INTO @DATA(ld_timeframe).
 
"SELECT single TF_YEAR FROM GRPC_ACCOUNT_GRP INTO @DATA(ld_tf_year).
 
DATA(ld_x_regulation_id) = ' '.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!