SAP Function Modules

FCLP_LIST_BUFFER_STATUS_GET SAP Function module







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

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


Pattern for FM FCLP_LIST_BUFFER_STATUS_GET - FCLP LIST BUFFER STATUS GET





CALL FUNCTION 'FCLP_LIST_BUFFER_STATUS_GET' "
  EXPORTING
    e_testrun =                 " fc_testrun    Test Run
    e_dimen =                   " fc_dimen      Dimension
    e_itclg =                   " fc_itclg      Consolidation Chart of Accounts
    e_rldnr =                   " fc_rldnr
    e_rvers =                   " fc_rvers      Consolidation (End-Result) Version
    e_ryear =                   " fc_ryear      Fiscal Year
    e_perid =                   " fc_perid      Period
*   e_cacti = ' '               " fc_cacti      Task
    e_congr =                   " fc_congr      Consolidation Group
    e_cactt = ' '               " fc_cactt      Task Category
*   e_docty = ' '               " fc_docty
*   e_monflg = ' '              " fc_flg
*   e_use_et_status = 'X'       " fc_flg
*   et_status =                 " fc02_t_status
*   et_status_check =           " fc02_t_status_check
*   et_ra_bunit =               " fc00_t_ra_bunit  Table Range - Consolidation Unit
  IMPORTING
    cs_lp_mcdx =                " fclp_s_list_mcdx
  EXCEPTIONS
    EXC_FAILURE = 1             "               Cannot Save
    .  "  FCLP_LIST_BUFFER_STATUS_GET

ABAP code example for Function Module FCLP_LIST_BUFFER_STATUS_GET





The ABAP code below is a full code listing to execute function module FCLP_LIST_BUFFER_STATUS_GET 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_cs_lp_mcdx  TYPE FCLP_S_LIST_MCDX .

DATA(ld_e_testrun) = 'Check type of data required'.
DATA(ld_e_dimen) = 'Check type of data required'.
DATA(ld_e_itclg) = 'Check type of data required'.
DATA(ld_e_rldnr) = 'Check type of data required'.
DATA(ld_e_rvers) = 'Check type of data required'.
DATA(ld_e_ryear) = 'Check type of data required'.
DATA(ld_e_perid) = 'Check type of data required'.
DATA(ld_e_cacti) = 'Check type of data required'.
DATA(ld_e_congr) = 'Check type of data required'.
DATA(ld_e_cactt) = 'Check type of data required'.
DATA(ld_e_docty) = 'Check type of data required'.
DATA(ld_e_monflg) = 'Check type of data required'.
DATA(ld_e_use_et_status) = 'Check type of data required'.
DATA(ld_et_status) = 'Check type of data required'.
DATA(ld_et_status_check) = 'Check type of data required'.
DATA(ld_et_ra_bunit) = 'Check type of data required'. . CALL FUNCTION 'FCLP_LIST_BUFFER_STATUS_GET' EXPORTING e_testrun = ld_e_testrun e_dimen = ld_e_dimen e_itclg = ld_e_itclg e_rldnr = ld_e_rldnr e_rvers = ld_e_rvers e_ryear = ld_e_ryear e_perid = ld_e_perid * e_cacti = ld_e_cacti e_congr = ld_e_congr e_cactt = ld_e_cactt * e_docty = ld_e_docty * e_monflg = ld_e_monflg * e_use_et_status = ld_e_use_et_status * et_status = ld_et_status * et_status_check = ld_et_status_check * et_ra_bunit = ld_et_ra_bunit IMPORTING cs_lp_mcdx = ld_cs_lp_mcdx EXCEPTIONS EXC_FAILURE = 1 . " FCLP_LIST_BUFFER_STATUS_GET
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here 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_cs_lp_mcdx  TYPE FCLP_S_LIST_MCDX ,
ld_e_testrun  TYPE FC_TESTRUN ,
ld_e_dimen  TYPE FC_DIMEN ,
ld_e_itclg  TYPE FC_ITCLG ,
ld_e_rldnr  TYPE FC_RLDNR ,
ld_e_rvers  TYPE FC_RVERS ,
ld_e_ryear  TYPE FC_RYEAR ,
ld_e_perid  TYPE FC_PERID ,
ld_e_cacti  TYPE FC_CACTI ,
ld_e_congr  TYPE FC_CONGR ,
ld_e_cactt  TYPE FC_CACTT ,
ld_e_docty  TYPE FC_DOCTY ,
ld_e_monflg  TYPE FC_FLG ,
ld_e_use_et_status  TYPE FC_FLG ,
ld_et_status  TYPE FC02_T_STATUS ,
ld_et_status_check  TYPE FC02_T_STATUS_CHECK ,
ld_et_ra_bunit  TYPE FC00_T_RA_BUNIT .

ld_e_testrun = 'Check type of data required'.
ld_e_dimen = 'Check type of data required'.
ld_e_itclg = 'Check type of data required'.
ld_e_rldnr = 'Check type of data required'.
ld_e_rvers = 'Check type of data required'.
ld_e_ryear = 'Check type of data required'.
ld_e_perid = 'Check type of data required'.
ld_e_cacti = 'Check type of data required'.
ld_e_congr = 'Check type of data required'.
ld_e_cactt = 'Check type of data required'.
ld_e_docty = 'Check type of data required'.
ld_e_monflg = 'Check type of data required'.
ld_e_use_et_status = 'Check type of data required'.
ld_et_status = 'Check type of data required'.
ld_et_status_check = 'Check type of data required'.
ld_et_ra_bunit = '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 FCLP_LIST_BUFFER_STATUS_GET or its description.