SAP DEQUEUE_E_OIUX4_BALANCE Function Module for Release lock on object E_OIUX4_BALANCE









DEQUEUE_E_OIUX4_BALANCE is a standard dequeue e oiux4 balance 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_OIUX4_BALANCE 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 oiux4 balance FM, simply by entering the name DEQUEUE_E_OIUX4_BALANCE into the relevant SAP transaction such as SE37 or SE38.

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



Function DEQUEUE_E_OIUX4_BALANCE 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_OIUX4_BALANCE'"Release lock on object E_OIUX4_BALANCE
EXPORTING
* MODE_ROIUX4_BALANCE = 'E' "Lock mode for table ROIUX4_BALANCE
* GL_ACCT_NO = "09th enqueue argument
* X_COMPANY = ' ' "Fill argument 02 with initial value?
* X_STATE_CD = ' ' "Fill argument 03 with initial value?
* X_SA_DT = ' ' "Fill argument 04 with initial value?
* X_PD_CD = ' ' "Fill argument 05 with initial value?
* X_PROPERTY = ' ' "Fill argument 06 with initial value?
* X_DOI = ' ' "Fill argument 07 with initial value?
* X_TAX_CD = ' ' "Fill argument 08 with initial value?
* X_GL_ACCT_NO = ' ' "Fill argument 09 with initial value?
* _SCOPE = '3' "
* MANDT = SY-MANDT "01th enqueue argument
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* COMPANY = "02th enqueue argument
* STATE_CD = "03th enqueue argument
* SA_DT = "04th enqueue argument
* PD_CD = "05th enqueue argument
* PROPERTY = "06th enqueue argument
* DOI = "07th enqueue argument
* TAX_CD = "08th enqueue argument
.



IMPORTING Parameters details for DEQUEUE_E_OIUX4_BALANCE

MODE_ROIUX4_BALANCE - Lock mode for table ROIUX4_BALANCE

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

GL_ACCT_NO - 09th enqueue argument

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

X_COMPANY - Fill argument 02 with initial value?

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

X_STATE_CD - Fill argument 03 with initial value?

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

X_SA_DT - Fill argument 04 with initial value?

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

X_PD_CD - Fill argument 05 with initial value?

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

X_PROPERTY - Fill argument 06 with initial value?

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

X_DOI - Fill argument 07 with initial value?

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

X_TAX_CD - Fill argument 08 with initial value?

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

X_GL_ACCT_NO - Fill argument 09 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)

MANDT - 01th enqueue argument

Data type: ROIUX4_BALANCE-MANDT
Default: SY-MANDT
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)

COMPANY - 02th enqueue argument

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

STATE_CD - 03th enqueue argument

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

SA_DT - 04th enqueue argument

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

PD_CD - 05th enqueue argument

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

PROPERTY - 06th enqueue argument

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

DOI - 07th enqueue argument

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

TAX_CD - 08th enqueue argument

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

Copy and paste ABAP code example for DEQUEUE_E_OIUX4_BALANCE 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_roiux4_balance  TYPE ENQMODE, "   'E'
lv_gl_acct_no  TYPE ROIUX4_BALANCE-GL_ACCT_NO, "   
lv_x_company  TYPE ROIUX4_BALANCE, "   SPACE
lv_x_state_cd  TYPE ROIUX4_BALANCE, "   SPACE
lv_x_sa_dt  TYPE ROIUX4_BALANCE, "   SPACE
lv_x_pd_cd  TYPE ROIUX4_BALANCE, "   SPACE
lv_x_property  TYPE ROIUX4_BALANCE, "   SPACE
lv_x_doi  TYPE ROIUX4_BALANCE, "   SPACE
lv_x_tax_cd  TYPE ROIUX4_BALANCE, "   SPACE
lv_x_gl_acct_no  TYPE ROIUX4_BALANCE, "   SPACE
lv__scope  TYPE ROIUX4_BALANCE, "   '3'
lv_mandt  TYPE ROIUX4_BALANCE-MANDT, "   SY-MANDT
lv__synchron  TYPE ROIUX4_BALANCE, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_company  TYPE ROIUX4_BALANCE-COMPANY, "   
lv_state_cd  TYPE ROIUX4_BALANCE-STATE_CD, "   
lv_sa_dt  TYPE ROIUX4_BALANCE-SA_DT, "   
lv_pd_cd  TYPE ROIUX4_BALANCE-PD_CD, "   
lv_property  TYPE ROIUX4_BALANCE-PROPERTY, "   
lv_doi  TYPE ROIUX4_BALANCE-DOI, "   
lv_tax_cd  TYPE ROIUX4_BALANCE-TAX_CD. "   

  CALL FUNCTION 'DEQUEUE_E_OIUX4_BALANCE'  "Release lock on object E_OIUX4_BALANCE
    EXPORTING
         MODE_ROIUX4_BALANCE = lv_mode_roiux4_balance
         GL_ACCT_NO = lv_gl_acct_no
         X_COMPANY = lv_x_company
         X_STATE_CD = lv_x_state_cd
         X_SA_DT = lv_x_sa_dt
         X_PD_CD = lv_x_pd_cd
         X_PROPERTY = lv_x_property
         X_DOI = lv_x_doi
         X_TAX_CD = lv_x_tax_cd
         X_GL_ACCT_NO = lv_x_gl_acct_no
         _SCOPE = lv__scope
         MANDT = lv_mandt
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         COMPANY = lv_company
         STATE_CD = lv_state_cd
         SA_DT = lv_sa_dt
         PD_CD = lv_pd_cd
         PROPERTY = lv_property
         DOI = lv_doi
         TAX_CD = lv_tax_cd
. " DEQUEUE_E_OIUX4_BALANCE




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_OIUX4_BALANCE

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_roiux4_balance) = 'E'.
 
"SELECT single GL_ACCT_NO FROM ROIUX4_BALANCE INTO @DATA(ld_gl_acct_no).
 
DATA(ld_x_company) = ' '.
 
DATA(ld_x_state_cd) = ' '.
 
DATA(ld_x_sa_dt) = ' '.
 
DATA(ld_x_pd_cd) = ' '.
 
DATA(ld_x_property) = ' '.
 
DATA(ld_x_doi) = ' '.
 
DATA(ld_x_tax_cd) = ' '.
 
DATA(ld_x_gl_acct_no) = ' '.
 
DATA(ld__scope) = '3'.
 
"SELECT single MANDT FROM ROIUX4_BALANCE INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
DATA(ld__synchron) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single COMPANY FROM ROIUX4_BALANCE INTO @DATA(ld_company).
 
"SELECT single STATE_CD FROM ROIUX4_BALANCE INTO @DATA(ld_state_cd).
 
"SELECT single SA_DT FROM ROIUX4_BALANCE INTO @DATA(ld_sa_dt).
 
"SELECT single PD_CD FROM ROIUX4_BALANCE INTO @DATA(ld_pd_cd).
 
"SELECT single PROPERTY FROM ROIUX4_BALANCE INTO @DATA(ld_property).
 
"SELECT single DOI FROM ROIUX4_BALANCE INTO @DATA(ld_doi).
 
"SELECT single TAX_CD FROM ROIUX4_BALANCE INTO @DATA(ld_tax_cd).
 


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!