SAP Function Modules

FICO_COMPONENT_110030 SAP Function module







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

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


Pattern for FM FICO_COMPONENT_110030 - FICO COMPONENT 110030





CALL FUNCTION 'FICO_COMPONENT_110030' "
  EXPORTING
    i_event =                   " num1          Numeric 1-character
*   i_pbo_pai_view =            " bus_sicht-sicht  View
*   i_fcode_function =          " tbz4-fcode    CUA Function Code
*   i_fcode_crsfield =          " bus000tbfl-tbfld  Table Field (Table Name Field Name)
*   i_fcode_crsline =           " sy-lilli      List Processing, Current List Line
*   i_pov_fldnm =               " dfies-fieldname  Field Name
  IMPORTING
    e_flg_fcode_done =          "
    e_fcode_next =              " tbz4-fcode    CUA Function Code
* TABLES
*   c_t_fcode_inc =             " bus000cuaf    CBP: GUI additional functions
*   c_t_fcode_exc =             " bus000cuas    CBP: GUI standard functions
*   c_t_pov_list =              " vrm_values
    .  "  FICO_COMPONENT_110030

ABAP code example for Function Module FICO_COMPONENT_110030





The ABAP code below is a full code listing to execute function module FICO_COMPONENT_110030 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_e_flg_fcode_done  TYPE STRING ,
ld_e_fcode_next  TYPE TBZ4-FCODE ,
it_c_t_fcode_inc  TYPE STANDARD TABLE OF BUS000CUAF,"TABLES PARAM
wa_c_t_fcode_inc  LIKE LINE OF it_c_t_fcode_inc ,
it_c_t_fcode_exc  TYPE STANDARD TABLE OF BUS000CUAS,"TABLES PARAM
wa_c_t_fcode_exc  LIKE LINE OF it_c_t_fcode_exc ,
it_c_t_pov_list  TYPE STANDARD TABLE OF VRM_VALUES,"TABLES PARAM
wa_c_t_pov_list  LIKE LINE OF it_c_t_pov_list .

DATA(ld_i_event) = 'Check type of data required'.

DATA(ld_i_pbo_pai_view) = some text here

SELECT single FCODE
FROM TBZ4
INTO @DATA(ld_i_fcode_function).


DATA(ld_i_fcode_crsfield) = some text here
DATA(ld_i_fcode_crsline) = '123 '.

DATA(ld_i_pov_fldnm) = some text here

"populate fields of struture and append to itab
append wa_c_t_fcode_inc to it_c_t_fcode_inc.

"populate fields of struture and append to itab
append wa_c_t_fcode_exc to it_c_t_fcode_exc.

"populate fields of struture and append to itab
append wa_c_t_pov_list to it_c_t_pov_list. . CALL FUNCTION 'FICO_COMPONENT_110030' EXPORTING i_event = ld_i_event * i_pbo_pai_view = ld_i_pbo_pai_view * i_fcode_function = ld_i_fcode_function * i_fcode_crsfield = ld_i_fcode_crsfield * i_fcode_crsline = ld_i_fcode_crsline * i_pov_fldnm = ld_i_pov_fldnm IMPORTING e_flg_fcode_done = ld_e_flg_fcode_done e_fcode_next = ld_e_fcode_next * TABLES * c_t_fcode_inc = it_c_t_fcode_inc * c_t_fcode_exc = it_c_t_fcode_exc * c_t_pov_list = it_c_t_pov_list . " FICO_COMPONENT_110030
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_e_flg_fcode_done  TYPE STRING ,
ld_i_event  TYPE NUM1 ,
it_c_t_fcode_inc  TYPE STANDARD TABLE OF BUS000CUAF ,
wa_c_t_fcode_inc  LIKE LINE OF it_c_t_fcode_inc,
ld_e_fcode_next  TYPE TBZ4-FCODE ,
ld_i_pbo_pai_view  TYPE BUS_SICHT-SICHT ,
it_c_t_fcode_exc  TYPE STANDARD TABLE OF BUS000CUAS ,
wa_c_t_fcode_exc  LIKE LINE OF it_c_t_fcode_exc,
ld_i_fcode_function  TYPE TBZ4-FCODE ,
it_c_t_pov_list  TYPE STANDARD TABLE OF VRM_VALUES ,
wa_c_t_pov_list  LIKE LINE OF it_c_t_pov_list,
ld_i_fcode_crsfield  TYPE BUS000TBFL-TBFLD ,
ld_i_fcode_crsline  TYPE SY-LILLI ,
ld_i_pov_fldnm  TYPE DFIES-FIELDNAME .

ld_i_event = '123 '.

"populate fields of struture and append to itab
append wa_c_t_fcode_inc to it_c_t_fcode_inc.

ld_i_pbo_pai_view = some text here

"populate fields of struture and append to itab
append wa_c_t_fcode_exc to it_c_t_fcode_exc.

SELECT single FCODE
FROM TBZ4
INTO ld_i_fcode_function.


"populate fields of struture and append to itab
append wa_c_t_pov_list to it_c_t_pov_list.

ld_i_fcode_crsfield = some text here
ld_i_fcode_crsline = '123 '.

ld_i_pov_fldnm = some text here

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