SAP Function Modules

LMBP_STEP_UPDATE SAP Function module - Update transaction step state in the presentation flow stack







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

Associated Function Group: LMBP_A
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM LMBP_STEP_UPDATE - LMBP STEP UPDATE





CALL FUNCTION 'LMBP_STEP_UPDATE' "Update transaction step state in the presentation flow stack
  EXPORTING
*   i_update_flag =             " flag          Flag of fully updated element
    is_rlmbp =                  " rlmbp         Additional fields in Mobile Presentation
    is_trprp =                  " lmbpt_trprp   Transaction properties
*   it_move =                   " lmbpt_it_move  Move
*   it_actual =                 " lmbpt_it_actual  Tasks actual data
*   it_do =                     " lmbpt_it_do   Operation
*   it_step_verif =             " lmbpt_it_verif_profile  Verification profile
    it_param =                  " lmbpt_it_param  Parameters
*   it_data =                   " abap_func_parmbind_tab
  CHANGING
    ct_step =                   " lmbpt_it_scrstack  Steps stack
    .  "  LMBP_STEP_UPDATE

ABAP code example for Function Module LMBP_STEP_UPDATE





The ABAP code below is a full code listing to execute function module LMBP_STEP_UPDATE 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_ct_step) = 'Check type of data required'.
DATA(ld_i_update_flag) = 'Check type of data required'.
DATA(ld_is_rlmbp) = 'Check type of data required'.
DATA(ld_is_trprp) = 'Check type of data required'.
DATA(ld_it_move) = 'Check type of data required'.
DATA(ld_it_actual) = 'Check type of data required'.
DATA(ld_it_do) = 'Check type of data required'.
DATA(ld_it_step_verif) = 'Check type of data required'.
DATA(ld_it_param) = 'Check type of data required'.
DATA(ld_it_data) = 'Check type of data required'. . CALL FUNCTION 'LMBP_STEP_UPDATE' EXPORTING * i_update_flag = ld_i_update_flag is_rlmbp = ld_is_rlmbp is_trprp = ld_is_trprp * it_move = ld_it_move * it_actual = ld_it_actual * it_do = ld_it_do * it_step_verif = ld_it_step_verif it_param = ld_it_param * it_data = ld_it_data CHANGING ct_step = ld_ct_step . " LMBP_STEP_UPDATE
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_ct_step  TYPE LMBPT_IT_SCRSTACK ,
ld_i_update_flag  TYPE FLAG ,
ld_is_rlmbp  TYPE RLMBP ,
ld_is_trprp  TYPE LMBPT_TRPRP ,
ld_it_move  TYPE LMBPT_IT_MOVE ,
ld_it_actual  TYPE LMBPT_IT_ACTUAL ,
ld_it_do  TYPE LMBPT_IT_DO ,
ld_it_step_verif  TYPE LMBPT_IT_VERIF_PROFILE ,
ld_it_param  TYPE LMBPT_IT_PARAM ,
ld_it_data  TYPE ABAP_FUNC_PARMBIND_TAB .

ld_ct_step = 'Check type of data required'.
ld_i_update_flag = 'Check type of data required'.
ld_is_rlmbp = 'Check type of data required'.
ld_is_trprp = 'Check type of data required'.
ld_it_move = 'Check type of data required'.
ld_it_actual = 'Check type of data required'.
ld_it_do = 'Check type of data required'.
ld_it_step_verif = 'Check type of data required'.
ld_it_param = 'Check type of data required'.
ld_it_data = 'Check type of data required'.

SAP Documentation for FM LMBP_STEP_UPDATE


This function refreshes the data of the upper element of the presentation flow stack. ...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 LMBP_STEP_UPDATE or its description.