SAP Function Modules

FMRPF_CALL_FMLIDW SAP Function module - Start TCode FMLIDW







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

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


Pattern for FM FMRPF_CALL_FMLIDW - FMRPF CALL FMLIDW





CALL FUNCTION 'FMRPF_CALL_FMLIDW' "Start TCode FMLIDW
* EXPORTING
*   i_fikrs =                   " fikrs         Financial Management Area
*   ir_budcat =                 " fmrpf_selopt_t  Budget Category
*   ir_ryear =                  " fmrpf_selopt_t  Table of Select Options
*   ir_perio =                  " fmrpf_selopt_t  Table of Select Options
*   ir_valtype =                " fmrpf_selopt_t  Table of Select Options
*   ir_rgrant_nbr =             " fmrpf_selopt_t  Table of Select Options
*   ir_rfund =                  " fmrpf_selopt_t  Table of Select Options
*   ir_budget_pd =              " fmrpf_selopt_t  Table of Select Options
*   ir_rfundsctr =              " fmrpf_selopt_t  Table of Select Options
*   ir_rcmmtitem =              " fmrpf_selopt_t  Table of Select Options
*   ir_rfuncarea =              " fmrpf_selopt_t  Table of Select Options
*   ir_rmeasure =               " fmrpf_selopt_t  Table of Select Options
*   ir_ruserdim =               " fmrpf_selopt_t  Table of Select Options
*   ir_version =                " fmrpf_selopt_t  Table of Select Options
*   ir_ceffyear =               " fmrpf_selopt_t  Table of Select Options
*   ir_process =                " fmrpf_selopt_t  Table of Select Options
*   ir_budtype =                " fmrpf_selopt_t  Table of Select Options
*   ir_wfstate =                " fmrpf_selopt_t  Table of Select Options
    .  "  FMRPF_CALL_FMLIDW

ABAP code example for Function Module FMRPF_CALL_FMLIDW





The ABAP code below is a full code listing to execute function module FMRPF_CALL_FMLIDW 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_i_fikrs) = 'Check type of data required'.
DATA(ld_ir_budcat) = 'Check type of data required'.
DATA(ld_ir_ryear) = 'Check type of data required'.
DATA(ld_ir_perio) = 'Check type of data required'.
DATA(ld_ir_valtype) = 'Check type of data required'.
DATA(ld_ir_rgrant_nbr) = 'Check type of data required'.
DATA(ld_ir_rfund) = 'Check type of data required'.
DATA(ld_ir_budget_pd) = 'Check type of data required'.
DATA(ld_ir_rfundsctr) = 'Check type of data required'.
DATA(ld_ir_rcmmtitem) = 'Check type of data required'.
DATA(ld_ir_rfuncarea) = 'Check type of data required'.
DATA(ld_ir_rmeasure) = 'Check type of data required'.
DATA(ld_ir_ruserdim) = 'Check type of data required'.
DATA(ld_ir_version) = 'Check type of data required'.
DATA(ld_ir_ceffyear) = 'Check type of data required'.
DATA(ld_ir_process) = 'Check type of data required'.
DATA(ld_ir_budtype) = 'Check type of data required'.
DATA(ld_ir_wfstate) = 'Check type of data required'. . CALL FUNCTION 'FMRPF_CALL_FMLIDW' * EXPORTING * i_fikrs = ld_i_fikrs * ir_budcat = ld_ir_budcat * ir_ryear = ld_ir_ryear * ir_perio = ld_ir_perio * ir_valtype = ld_ir_valtype * ir_rgrant_nbr = ld_ir_rgrant_nbr * ir_rfund = ld_ir_rfund * ir_budget_pd = ld_ir_budget_pd * ir_rfundsctr = ld_ir_rfundsctr * ir_rcmmtitem = ld_ir_rcmmtitem * ir_rfuncarea = ld_ir_rfuncarea * ir_rmeasure = ld_ir_rmeasure * ir_ruserdim = ld_ir_ruserdim * ir_version = ld_ir_version * ir_ceffyear = ld_ir_ceffyear * ir_process = ld_ir_process * ir_budtype = ld_ir_budtype * ir_wfstate = ld_ir_wfstate . " FMRPF_CALL_FMLIDW
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_i_fikrs  TYPE FIKRS ,
ld_ir_budcat  TYPE FMRPF_SELOPT_T ,
ld_ir_ryear  TYPE FMRPF_SELOPT_T ,
ld_ir_perio  TYPE FMRPF_SELOPT_T ,
ld_ir_valtype  TYPE FMRPF_SELOPT_T ,
ld_ir_rgrant_nbr  TYPE FMRPF_SELOPT_T ,
ld_ir_rfund  TYPE FMRPF_SELOPT_T ,
ld_ir_budget_pd  TYPE FMRPF_SELOPT_T ,
ld_ir_rfundsctr  TYPE FMRPF_SELOPT_T ,
ld_ir_rcmmtitem  TYPE FMRPF_SELOPT_T ,
ld_ir_rfuncarea  TYPE FMRPF_SELOPT_T ,
ld_ir_rmeasure  TYPE FMRPF_SELOPT_T ,
ld_ir_ruserdim  TYPE FMRPF_SELOPT_T ,
ld_ir_version  TYPE FMRPF_SELOPT_T ,
ld_ir_ceffyear  TYPE FMRPF_SELOPT_T ,
ld_ir_process  TYPE FMRPF_SELOPT_T ,
ld_ir_budtype  TYPE FMRPF_SELOPT_T ,
ld_ir_wfstate  TYPE FMRPF_SELOPT_T .

ld_i_fikrs = 'Check type of data required'.
ld_ir_budcat = 'Check type of data required'.
ld_ir_ryear = 'Check type of data required'.
ld_ir_perio = 'Check type of data required'.
ld_ir_valtype = 'Check type of data required'.
ld_ir_rgrant_nbr = 'Check type of data required'.
ld_ir_rfund = 'Check type of data required'.
ld_ir_budget_pd = 'Check type of data required'.
ld_ir_rfundsctr = 'Check type of data required'.
ld_ir_rcmmtitem = 'Check type of data required'.
ld_ir_rfuncarea = 'Check type of data required'.
ld_ir_rmeasure = 'Check type of data required'.
ld_ir_ruserdim = 'Check type of data required'.
ld_ir_version = 'Check type of data required'.
ld_ir_ceffyear = 'Check type of data required'.
ld_ir_process = 'Check type of data required'.
ld_ir_budtype = 'Check type of data required'.
ld_ir_wfstate = 'Check type of data required'.

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