SAP LXE_WRK_WORKLIST_SET_RESRVID_A Function Module for









LXE_WRK_WORKLIST_SET_RESRVID_A is a standard lxe wrk worklist set resrvid a SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 lxe wrk worklist set resrvid a FM, simply by entering the name LXE_WRK_WORKLIST_SET_RESRVID_A into the relevant SAP transaction such as SE37 or SE38.

Function Group: LXE_WRK
Program Name: SAPLLXE_WRK
Main Program: SAPLLXE_WRK
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function LXE_WRK_WORKLIST_SET_RESRVID_A 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 'LXE_WRK_WORKLIST_SET_RESRVID_A'"
EXPORTING
T_LANG = "
* LIKENAME = '*' "
S_LANG = "
WLISTID = "
NEW_FLAG = "
MOD_FLAG = "
TRA_FLAG = "
RESRVID = "
MAX_CNT = "
* REL_FLAG = '' "

IMPORTING
STATPRC = "

TABLES
IN_COLLS = "
IN_ATTOB = "
IN_DOMAT = "
EX_WRKOB = "
.



IMPORTING Parameters details for LXE_WRK_WORKLIST_SET_RESRVID_A

T_LANG -

Data type: LXEISOLANG
Optional: No
Call by Reference: Yes

LIKENAME -

Data type: LXEOBJNAME
Default: '*'
Optional: Yes
Call by Reference: Yes

S_LANG -

Data type: LXEISOLANG
Optional: No
Call by Reference: Yes

WLISTID -

Data type: LXEWLISTID
Optional: No
Call by Reference: Yes

NEW_FLAG -

Data type: CHAR1
Optional: No
Call by Reference: Yes

MOD_FLAG -

Data type: CHAR1
Optional: No
Call by Reference: Yes

TRA_FLAG -

Data type: CHAR1
Optional: No
Call by Reference: Yes

RESRVID -

Data type: LXERESRVID
Optional: No
Call by Reference: Yes

MAX_CNT -

Data type: NUM4
Optional: No
Call by Reference: Yes

REL_FLAG -

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

EXPORTING Parameters details for LXE_WRK_WORKLIST_SET_RESRVID_A

STATPRC -

Data type: LXESTATPRC
Optional: No
Call by Reference: Yes

TABLES Parameters details for LXE_WRK_WORKLIST_SET_RESRVID_A

IN_COLLS -

Data type: LXE_COLLS
Optional: No
Call by Reference: No ( called with pass by value option)

IN_ATTOB -

Data type: LXE_ATTOB
Optional: No
Call by Reference: No ( called with pass by value option)

IN_DOMAT -

Data type: LXE_DOMAT
Optional: No
Call by Reference: No ( called with pass by value option)

EX_WRKOB -

Data type: LXE_WRKOB
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for LXE_WRK_WORKLIST_SET_RESRVID_A 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_t_lang  TYPE LXEISOLANG, "   
lv_statprc  TYPE LXESTATPRC, "   
lt_in_colls  TYPE STANDARD TABLE OF LXE_COLLS, "   
lv_likename  TYPE LXEOBJNAME, "   '*'
lv_s_lang  TYPE LXEISOLANG, "   
lt_in_attob  TYPE STANDARD TABLE OF LXE_ATTOB, "   
lv_wlistid  TYPE LXEWLISTID, "   
lt_in_domat  TYPE STANDARD TABLE OF LXE_DOMAT, "   
lt_ex_wrkob  TYPE STANDARD TABLE OF LXE_WRKOB, "   
lv_new_flag  TYPE CHAR1, "   
lv_mod_flag  TYPE CHAR1, "   
lv_tra_flag  TYPE CHAR1, "   
lv_resrvid  TYPE LXERESRVID, "   
lv_max_cnt  TYPE NUM4, "   
lv_rel_flag  TYPE CHAR1. "   ''

  CALL FUNCTION 'LXE_WRK_WORKLIST_SET_RESRVID_A'  "
    EXPORTING
         T_LANG = lv_t_lang
         LIKENAME = lv_likename
         S_LANG = lv_s_lang
         WLISTID = lv_wlistid
         NEW_FLAG = lv_new_flag
         MOD_FLAG = lv_mod_flag
         TRA_FLAG = lv_tra_flag
         RESRVID = lv_resrvid
         MAX_CNT = lv_max_cnt
         REL_FLAG = lv_rel_flag
    IMPORTING
         STATPRC = lv_statprc
    TABLES
         IN_COLLS = lt_in_colls
         IN_ATTOB = lt_in_attob
         IN_DOMAT = lt_in_domat
         EX_WRKOB = lt_ex_wrkob
. " LXE_WRK_WORKLIST_SET_RESRVID_A




ABAP code using 7.40 inline data declarations to call FM LXE_WRK_WORKLIST_SET_RESRVID_A

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_likename) = '*'.
 
 
 
 
 
 
 
 
 
 
 
DATA(ld_rel_flag) = ''.
 


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!