FICO_COMPONENT_105010 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_105010 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FICOB3
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'FICO_COMPONENT_105010' "
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_105010
The ABAP code below is a full code listing to execute function module FICO_COMPONENT_105010 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).
| 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 . |
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 . |
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_105010 or its description.