SAP Function Modules

L_WMPP_INTERFACE_RELEASE_PART SAP Function module







L_WMPP_INTERFACE_RELEASE_PART 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 L_WMPP_INTERFACE_RELEASE_PART into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: LCPP
Released Date: Not Released
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM L_WMPP_INTERFACE_RELEASE_PART - L WMPP INTERFACE RELEASE PART





CALL FUNCTION 'L_WMPP_INTERFACE_RELEASE_PART' "
* EXPORTING
*   view_ = CON_X               " rlcpp-view_
*   chnge = SPACE               " rlcpp-chnge
*   fcall = SPACE               " rlcpp-dcall
*   initt = SPACE               " rlcpp-initt
*   verbu = CON_X               " rlcpp-verbu
*   scall = CON_X               " rlcpp-dcall
*   dirta = SPACE               " rlcpp-dirta
  IMPORTING
    proto =                     " rlcpp-proto
  TABLES
    lres =                      " lresb
    .  "  L_WMPP_INTERFACE_RELEASE_PART

ABAP code example for Function Module L_WMPP_INTERFACE_RELEASE_PART





The ABAP code below is a full code listing to execute function module L_WMPP_INTERFACE_RELEASE_PART 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_proto  TYPE RLCPP-PROTO ,
it_lres  TYPE STANDARD TABLE OF LRESB,"TABLES PARAM
wa_lres  LIKE LINE OF it_lres .


DATA(ld_view_) = some text here

DATA(ld_chnge) = some text here

DATA(ld_fcall) = some text here

DATA(ld_initt) = some text here

DATA(ld_verbu) = some text here

DATA(ld_scall) = some text here

DATA(ld_dirta) = some text here

"populate fields of struture and append to itab
append wa_lres to it_lres. . CALL FUNCTION 'L_WMPP_INTERFACE_RELEASE_PART' * EXPORTING * view_ = ld_view_ * chnge = ld_chnge * fcall = ld_fcall * initt = ld_initt * verbu = ld_verbu * scall = ld_scall * dirta = ld_dirta IMPORTING proto = ld_proto TABLES lres = it_lres . " L_WMPP_INTERFACE_RELEASE_PART
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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_proto  TYPE RLCPP-PROTO ,
ld_view_  TYPE RLCPP-VIEW_ ,
it_lres  TYPE STANDARD TABLE OF LRESB ,
wa_lres  LIKE LINE OF it_lres,
ld_chnge  TYPE RLCPP-CHNGE ,
ld_fcall  TYPE RLCPP-DCALL ,
ld_initt  TYPE RLCPP-INITT ,
ld_verbu  TYPE RLCPP-VERBU ,
ld_scall  TYPE RLCPP-DCALL ,
ld_dirta  TYPE RLCPP-DIRTA .


ld_view_ = some text here

"populate fields of struture and append to itab
append wa_lres to it_lres.

ld_chnge = some text here

ld_fcall = some text here

ld_initt = some text here

ld_verbu = some text here

ld_scall = some text here

ld_dirta = some text here

SAP Documentation for FM L_WMPP_INTERFACE_RELEASE_PART


This function module controls the activation of WM staging from within the production order. ...See here for full SAP fm documentation

Contribute (Add Comments)

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 L_WMPP_INTERFACE_RELEASE_PART or its description.