DEQUEUE_E_OIFSPBL is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name DEQUEUE_E_OIFSPBL into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
DWBEN/SAPLOEN0003
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'DEQUEUE_E_OIFSPBL' "Release lock on object E_OIFSPBL
* EXPORTING
* mode_oifspbl = 'E' " enqmode Lock mode for table OIFSPBL
* mode_oifbbp1 = 'E' " enqmode Lock mode for table OIFBBP1
* mode_oifoanla = 'E' " enqmode Lock mode for table OIFOANLA
* mode_oifocoas = 'E' " enqmode Lock mode for table OIFOCOAS
* mode_oifocsks = 'E' " enqmode Lock mode for table OIFOCSKS
* mode_oifoiflo = 'E' " enqmode Lock mode for table OIFOIFLO
* mode_oifoproj = 'E' " enqmode Lock mode for table OIFOPROJ
* mode_oifot001l = 'E' " enqmode Lock mode for table OIFOT001L
* mode_oifot001w = 'E' " enqmode Lock mode for table OIFOT001W
* mode_oifocepc = 'E' " enqmode Lock mode for table OIFOCEPC
* mode_oirbbp1pf = 'E' " enqmode Lock mode for table OIRBBP1PF
* mode_oirbpblstat = 'E' " enqmode Lock mode for table OIRBPBLSTAT
* mode_oirbommt001l = 'E' " enqmode Lock mode for table OIRBOMMT001L
* mandt = SY-MANDT " oifspbl-mandt 01th enqueue argument
* pblnr = " oifspbl-pblnr 02th enqueue argument
* parfn = " oifbbp1-parfn 03th enqueue argument
* ftmstm = " oifbbp1-ftmstm 04th enqueue argument
* parpos = " oifbbp1-parpos 05th enqueue argument
* objposanla = " oifoanla-objpos 06th enqueue argument
* objposcoas = " oifocoas-objpos 07th enqueue argument
* objposcsks = " oifocsks-objpos 08th enqueue argument
* objpos = " oifoiflo-objpos 09th enqueue argument
* objposproj = " oifoproj-objpos 10th enqueue argument
* objpos001l = " oifot001l-objpos 11th enqueue argument
* objpos001w = " oifot001w-objpos 12th enqueue argument
* objposcepc = " oifocepc-objpos 13th enqueue argument
* parvw = " oirbbp1pf-parvw 14th enqueue argument
* rnbt = " oirbpblstat-rnbt 15th enqueue argument
* ftmstm_1 = " oirbpblstat-ftmstm 16th enqueue argument
* objposmmt001l = " oirbommt001l-objpos 17th enqueue argument
* x_pblnr = SPACE " Fill argument 02 with initial value?
* x_parfn = SPACE " Fill argument 03 with initial value?
* x_ftmstm = SPACE " Fill argument 04 with initial value?
* x_parpos = SPACE " Fill argument 05 with initial value?
* x_objposanla = SPACE " Fill argument 06 with initial value?
* x_objposcoas = SPACE " Fill argument 07 with initial value?
* x_objposcsks = SPACE " Fill argument 08 with initial value?
* x_objpos = SPACE " Fill argument 09 with initial value?
* x_objposproj = SPACE " Fill argument 10 with initial value?
* x_objpos001l = SPACE " Fill argument 11 with initial value?
* x_objpos001w = SPACE " Fill argument 12 with initial value?
* x_objposcepc = SPACE " Fill argument 13 with initial value?
* x_parvw = SPACE " Fill argument 14 with initial value?
* x_rnbt = SPACE " Fill argument 15 with initial value?
* x_ftmstm_1 = SPACE " Fill argument 16 with initial value?
* x_objposmmt001l = SPACE " Fill argument 17 with initial value?
* _scope = '3' "
* _synchron = SPACE " Synchonous unlock
* _collect = ' ' " ddenqcoll Initially only collect lock
. " DEQUEUE_E_OIFSPBL
The ABAP code below is a full code listing to execute function module DEQUEUE_E_OIFSPBL including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
DATA(ld_mode_oifspbl) = 'Check type of data required'.
DATA(ld_mode_oifbbp1) = 'Check type of data required'.
DATA(ld_mode_oifoanla) = 'Check type of data required'.
DATA(ld_mode_oifocoas) = 'Check type of data required'.
DATA(ld_mode_oifocsks) = 'Check type of data required'.
DATA(ld_mode_oifoiflo) = 'Check type of data required'.
DATA(ld_mode_oifoproj) = 'Check type of data required'.
DATA(ld_mode_oifot001l) = 'Check type of data required'.
DATA(ld_mode_oifot001w) = 'Check type of data required'.
DATA(ld_mode_oifocepc) = 'Check type of data required'.
DATA(ld_mode_oirbbp1pf) = 'Check type of data required'.
DATA(ld_mode_oirbpblstat) = 'Check type of data required'.
DATA(ld_mode_oirbommt001l) = 'Check type of data required'.
SELECT single MANDT
FROM OIFSPBL
INTO @DATA(ld_mandt).
SELECT single PBLNR
FROM OIFSPBL
INTO @DATA(ld_pblnr).
SELECT single PARFN
FROM OIFBBP1
INTO @DATA(ld_parfn).
SELECT single FTMSTM
FROM OIFBBP1
INTO @DATA(ld_ftmstm).
SELECT single PARPOS
FROM OIFBBP1
INTO @DATA(ld_parpos).
SELECT single OBJPOS
FROM OIFOANLA
INTO @DATA(ld_objposanla).
SELECT single OBJPOS
FROM OIFOCOAS
INTO @DATA(ld_objposcoas).
SELECT single OBJPOS
FROM OIFOCSKS
INTO @DATA(ld_objposcsks).
SELECT single OBJPOS
FROM OIFOIFLO
INTO @DATA(ld_objpos).
SELECT single OBJPOS
FROM OIFOPROJ
INTO @DATA(ld_objposproj).
SELECT single OBJPOS
FROM OIFOT001L
INTO @DATA(ld_objpos001l).
SELECT single OBJPOS
FROM OIFOT001W
INTO @DATA(ld_objpos001w).
SELECT single OBJPOS
FROM OIFOCEPC
INTO @DATA(ld_objposcepc).
SELECT single PARVW
FROM OIRBBP1PF
INTO @DATA(ld_parvw).
SELECT single RNBT
FROM OIRBPBLSTAT
INTO @DATA(ld_rnbt).
SELECT single FTMSTM
FROM OIRBPBLSTAT
INTO @DATA(ld_ftmstm_1).
SELECT single OBJPOS
FROM OIRBOMMT001L
INTO @DATA(ld_objposmmt001l).
DATA(ld_x_pblnr) = 'some text here'.
DATA(ld_x_parfn) = 'some text here'.
DATA(ld_x_ftmstm) = 'some text here'.
DATA(ld_x_parpos) = 'some text here'.
DATA(ld_x_objposanla) = 'some text here'.
DATA(ld_x_objposcoas) = 'some text here'.
DATA(ld_x_objposcsks) = 'some text here'.
DATA(ld_x_objpos) = 'some text here'.
DATA(ld_x_objposproj) = 'some text here'.
DATA(ld_x_objpos001l) = 'some text here'.
DATA(ld_x_objpos001w) = 'some text here'.
DATA(ld_x_objposcepc) = 'some text here'.
DATA(ld_x_parvw) = 'some text here'.
DATA(ld_x_rnbt) = 'some text here'.
DATA(ld_x_ftmstm_1) = 'some text here'.
DATA(ld_x_objposmmt001l) = 'some text here'.
DATA(ld__scope) = 'some text here'.
DATA(ld__synchron) = 'some text here'.
DATA(ld__collect) = 'Check type of data required'. . CALL FUNCTION 'DEQUEUE_E_OIFSPBL' * EXPORTING * mode_oifspbl = ld_mode_oifspbl * mode_oifbbp1 = ld_mode_oifbbp1 * mode_oifoanla = ld_mode_oifoanla * mode_oifocoas = ld_mode_oifocoas * mode_oifocsks = ld_mode_oifocsks * mode_oifoiflo = ld_mode_oifoiflo * mode_oifoproj = ld_mode_oifoproj * mode_oifot001l = ld_mode_oifot001l * mode_oifot001w = ld_mode_oifot001w * mode_oifocepc = ld_mode_oifocepc * mode_oirbbp1pf = ld_mode_oirbbp1pf * mode_oirbpblstat = ld_mode_oirbpblstat * mode_oirbommt001l = ld_mode_oirbommt001l * mandt = ld_mandt * pblnr = ld_pblnr * parfn = ld_parfn * ftmstm = ld_ftmstm * parpos = ld_parpos * objposanla = ld_objposanla * objposcoas = ld_objposcoas * objposcsks = ld_objposcsks * objpos = ld_objpos * objposproj = ld_objposproj * objpos001l = ld_objpos001l * objpos001w = ld_objpos001w * objposcepc = ld_objposcepc * parvw = ld_parvw * rnbt = ld_rnbt * ftmstm_1 = ld_ftmstm_1 * objposmmt001l = ld_objposmmt001l * x_pblnr = ld_x_pblnr * x_parfn = ld_x_parfn * x_ftmstm = ld_x_ftmstm * x_parpos = ld_x_parpos * x_objposanla = ld_x_objposanla * x_objposcoas = ld_x_objposcoas * x_objposcsks = ld_x_objposcsks * x_objpos = ld_x_objpos * x_objposproj = ld_x_objposproj * x_objpos001l = ld_x_objpos001l * x_objpos001w = ld_x_objpos001w * x_objposcepc = ld_x_objposcepc * x_parvw = ld_x_parvw * x_rnbt = ld_x_rnbt * x_ftmstm_1 = ld_x_ftmstm_1 * x_objposmmt001l = ld_x_objposmmt001l * _scope = ld__scope * _synchron = ld__synchron * _collect = ld__collect . " DEQUEUE_E_OIFSPBL
IF SY-SUBRC EQ 0. "All OK ENDIF.
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_mode_oifspbl | TYPE ENQMODE , |
| ld_mode_oifbbp1 | TYPE ENQMODE , |
| ld_mode_oifoanla | TYPE ENQMODE , |
| ld_mode_oifocoas | TYPE ENQMODE , |
| ld_mode_oifocsks | TYPE ENQMODE , |
| ld_mode_oifoiflo | TYPE ENQMODE , |
| ld_mode_oifoproj | TYPE ENQMODE , |
| ld_mode_oifot001l | TYPE ENQMODE , |
| ld_mode_oifot001w | TYPE ENQMODE , |
| ld_mode_oifocepc | TYPE ENQMODE , |
| ld_mode_oirbbp1pf | TYPE ENQMODE , |
| ld_mode_oirbpblstat | TYPE ENQMODE , |
| ld_mode_oirbommt001l | TYPE ENQMODE , |
| ld_mandt | TYPE OIFSPBL-MANDT , |
| ld_pblnr | TYPE OIFSPBL-PBLNR , |
| ld_parfn | TYPE OIFBBP1-PARFN , |
| ld_ftmstm | TYPE OIFBBP1-FTMSTM , |
| ld_parpos | TYPE OIFBBP1-PARPOS , |
| ld_objposanla | TYPE OIFOANLA-OBJPOS , |
| ld_objposcoas | TYPE OIFOCOAS-OBJPOS , |
| ld_objposcsks | TYPE OIFOCSKS-OBJPOS , |
| ld_objpos | TYPE OIFOIFLO-OBJPOS , |
| ld_objposproj | TYPE OIFOPROJ-OBJPOS , |
| ld_objpos001l | TYPE OIFOT001L-OBJPOS , |
| ld_objpos001w | TYPE OIFOT001W-OBJPOS , |
| ld_objposcepc | TYPE OIFOCEPC-OBJPOS , |
| ld_parvw | TYPE OIRBBP1PF-PARVW , |
| ld_rnbt | TYPE OIRBPBLSTAT-RNBT , |
| ld_ftmstm_1 | TYPE OIRBPBLSTAT-FTMSTM , |
| ld_objposmmt001l | TYPE OIRBOMMT001L-OBJPOS , |
| ld_x_pblnr | TYPE STRING , |
| ld_x_parfn | TYPE STRING , |
| ld_x_ftmstm | TYPE STRING , |
| ld_x_parpos | TYPE STRING , |
| ld_x_objposanla | TYPE STRING , |
| ld_x_objposcoas | TYPE STRING , |
| ld_x_objposcsks | TYPE STRING , |
| ld_x_objpos | TYPE STRING , |
| ld_x_objposproj | TYPE STRING , |
| ld_x_objpos001l | TYPE STRING , |
| ld_x_objpos001w | TYPE STRING , |
| ld_x_objposcepc | TYPE STRING , |
| ld_x_parvw | TYPE STRING , |
| ld_x_rnbt | TYPE STRING , |
| ld_x_ftmstm_1 | TYPE STRING , |
| ld_x_objposmmt001l | TYPE STRING , |
| ld__scope | TYPE STRING , |
| ld__synchron | TYPE STRING , |
| ld__collect | TYPE DDENQCOLL . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name DEQUEUE_E_OIFSPBL or its description.
DEQUEUE_E_OIFSPBL - Release lock on object E_OIFSPBL DEQUEUE_E_OIFKNA1 - Release lock on object E_OIFKNA1 DEQUEUE_E_OIB09 - Release lock on object E_OIB09 DEQUEUE_E_OIB08 - Release lock on object E_OIB08 DEQUEUE_E_OIB03 - Release lock on object E_OIB03 DEQUEUE_E_OIAQB - Release lock on object E_OIAQB