SAP Function Modules

FRML545_CHECK_FIELDS_ONDROP SAP Function module







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

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


Pattern for FM FRML545_CHECK_FIELDS_ONDROP - FRML545 CHECK FIELDS ONDROP





CALL FUNCTION 'FRML545_CHECK_FIELDS_ONDROP' "
  EXPORTING
    i_act_rowno =               " int4          Natural Number
    is_addinf =                 " frmls_addinf  RMS-FRM: Additional Information for Function Module Calls
    is_keypath =                " frmls_keypath  RMS-FRM: Formula "Key" Path for Function Module Call
    i_default_unit =            " frmle_unit    Unit of Measure
    it_outtab =                 " frmlty_iot_scr  RMS-FRM: Screen Structure for LoM - LoRS
    is_outtab_old =             " frmls_iot_scr
    it_hidden =                 " frmlty_iot_scr  RMS-FRM: Screen Structure for LoM - LoRS
  IMPORTING
    eflg_error =                " frmle_flag    Indicator of Whether an Error Occurred
  CHANGING
    xs_outtab =                 " frmls_iot_scr  RMS-FRM: Screen Structure for LoM - LoRS
    .  "  FRML545_CHECK_FIELDS_ONDROP

ABAP code example for Function Module FRML545_CHECK_FIELDS_ONDROP





The ABAP code below is a full code listing to execute function module FRML545_CHECK_FIELDS_ONDROP 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_eflg_error  TYPE FRMLE_FLAG .

DATA(ld_xs_outtab) = 'Check type of data required'.
DATA(ld_i_act_rowno) = 'Check type of data required'.
DATA(ld_is_addinf) = 'Check type of data required'.
DATA(ld_is_keypath) = 'Check type of data required'.
DATA(ld_i_default_unit) = 'Check type of data required'.
DATA(ld_it_outtab) = 'Check type of data required'.
DATA(ld_is_outtab_old) = 'Check type of data required'.
DATA(ld_it_hidden) = 'Check type of data required'. . CALL FUNCTION 'FRML545_CHECK_FIELDS_ONDROP' EXPORTING i_act_rowno = ld_i_act_rowno is_addinf = ld_is_addinf is_keypath = ld_is_keypath i_default_unit = ld_i_default_unit it_outtab = ld_it_outtab is_outtab_old = ld_is_outtab_old it_hidden = ld_it_hidden IMPORTING eflg_error = ld_eflg_error CHANGING xs_outtab = ld_xs_outtab . " FRML545_CHECK_FIELDS_ONDROP
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_xs_outtab  TYPE FRMLS_IOT_SCR ,
ld_eflg_error  TYPE FRMLE_FLAG ,
ld_i_act_rowno  TYPE INT4 ,
ld_is_addinf  TYPE FRMLS_ADDINF ,
ld_is_keypath  TYPE FRMLS_KEYPATH ,
ld_i_default_unit  TYPE FRMLE_UNIT ,
ld_it_outtab  TYPE FRMLTY_IOT_SCR ,
ld_is_outtab_old  TYPE FRMLS_IOT_SCR ,
ld_it_hidden  TYPE FRMLTY_IOT_SCR .

ld_xs_outtab = 'Check type of data required'.
ld_i_act_rowno = 'Check type of data required'.
ld_is_addinf = 'Check type of data required'.
ld_is_keypath = 'Check type of data required'.
ld_i_default_unit = 'Check type of data required'.
ld_it_outtab = 'Check type of data required'.
ld_is_outtab_old = 'Check type of data required'.
ld_it_hidden = '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 FRML545_CHECK_FIELDS_ONDROP or its description.