SAP FICO_LIST_MAP_DB_TO_OLDTABS Function Module for









FICO_LIST_MAP_DB_TO_OLDTABS is a standard fico list map db to oldtabs SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for fico list map db to oldtabs FM, simply by entering the name FICO_LIST_MAP_DB_TO_OLDTABS into the relevant SAP transaction such as SE37 or SE38.

Function Group: FICOL0
Program Name: SAPLFICOL0
Main Program: SAPLFICOL0
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FICO_LIST_MAP_DB_TO_OLDTABS pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'FICO_LIST_MAP_DB_TO_OLDTABS'"
EXPORTING
I_T_CONDI = "Conditions with Buffer Flag
I_T_POS = "Table Type: Interest and Interest Ref. Rates for Amount Item
* I_FLAG_DIFFTEXT = ' ' "Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
* I_CMP_VALIDTO_IMPL = "

IMPORTING
E_T_AMT = "Table Type: Amount
E_T_AMTPOS = "Table Category: Amount Item
E_T_AMTPOSEXP = "Table Type: Interest and Interest Ref. Rates for Amount Item
E_T_CONDDIFF = "Table Type: Assignment Condition - Differentiation
E_T_CONDDIFF_T = "Differentiations of a Condition with Texts
E_T_COND = "Table Category: Condition Table
E_T_DATE = "Table Type: Deadline
E_T_DATEPOS = "Table Type: Deadline Item
.



IMPORTING Parameters details for FICO_LIST_MAP_DB_TO_OLDTABS

I_T_CONDI - Conditions with Buffer Flag

Data type: FICO_TYP_TAS_CONDI_BUFF
Optional: No
Call by Reference: Yes

I_T_POS - Table Type: Interest and Interest Ref. Rates for Amount Item

Data type: FICO_TYP_TAS_POS_BUFF
Optional: No
Call by Reference: Yes

I_FLAG_DIFFTEXT - Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')

Data type: BOOLE_D
Default: SPACE
Optional: No
Call by Reference: Yes

I_CMP_VALIDTO_IMPL -

Data type: BOOLE_D
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for FICO_LIST_MAP_DB_TO_OLDTABS

E_T_AMT - Table Type: Amount

Data type: FICO_TYP_TAS_AMT
Optional: No
Call by Reference: Yes

E_T_AMTPOS - Table Category: Amount Item

Data type: FICO_TYP_TAS_AMTPOS
Optional: No
Call by Reference: Yes

E_T_AMTPOSEXP - Table Type: Interest and Interest Ref. Rates for Amount Item

Data type: FICO_TYP_TAS_AMTPOSEXP
Optional: No
Call by Reference: Yes

E_T_CONDDIFF - Table Type: Assignment Condition - Differentiation

Data type: FICO_TYP_TAS_CONDDIFF
Optional: No
Call by Reference: Yes

E_T_CONDDIFF_T - Differentiations of a Condition with Texts

Data type: FICO_TYP_TAS_DIFF_DISPLAY
Optional: No
Call by Reference: Yes

E_T_COND - Table Category: Condition Table

Data type: FICO_TYP_TAS_COND
Optional: No
Call by Reference: Yes

E_T_DATE - Table Type: Deadline

Data type: FICO_TYP_TAS_DATE
Optional: No
Call by Reference: Yes

E_T_DATEPOS - Table Type: Deadline Item

Data type: FICO_TYP_TAS_DATEPOS
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FICO_LIST_MAP_DB_TO_OLDTABS Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.

DATA:
lv_e_t_amt  TYPE FICO_TYP_TAS_AMT, "   
lv_i_t_condi  TYPE FICO_TYP_TAS_CONDI_BUFF, "   
lv_i_t_pos  TYPE FICO_TYP_TAS_POS_BUFF, "   
lv_e_t_amtpos  TYPE FICO_TYP_TAS_AMTPOS, "   
lv_e_t_amtposexp  TYPE FICO_TYP_TAS_AMTPOSEXP, "   
lv_i_flag_difftext  TYPE BOOLE_D, "   SPACE
lv_e_t_conddiff  TYPE FICO_TYP_TAS_CONDDIFF, "   
lv_i_cmp_validto_impl  TYPE BOOLE_D, "   
lv_e_t_conddiff_t  TYPE FICO_TYP_TAS_DIFF_DISPLAY, "   
lv_e_t_cond  TYPE FICO_TYP_TAS_COND, "   
lv_e_t_date  TYPE FICO_TYP_TAS_DATE, "   
lv_e_t_datepos  TYPE FICO_TYP_TAS_DATEPOS. "   

  CALL FUNCTION 'FICO_LIST_MAP_DB_TO_OLDTABS'  "
    EXPORTING
         I_T_CONDI = lv_i_t_condi
         I_T_POS = lv_i_t_pos
         I_FLAG_DIFFTEXT = lv_i_flag_difftext
         I_CMP_VALIDTO_IMPL = lv_i_cmp_validto_impl
    IMPORTING
         E_T_AMT = lv_e_t_amt
         E_T_AMTPOS = lv_e_t_amtpos
         E_T_AMTPOSEXP = lv_e_t_amtposexp
         E_T_CONDDIFF = lv_e_t_conddiff
         E_T_CONDDIFF_T = lv_e_t_conddiff_t
         E_T_COND = lv_e_t_cond
         E_T_DATE = lv_e_t_date
         E_T_DATEPOS = lv_e_t_datepos
. " FICO_LIST_MAP_DB_TO_OLDTABS




ABAP code using 7.40 inline data declarations to call FM FICO_LIST_MAP_DB_TO_OLDTABS

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
DATA(ld_i_flag_difftext) = ' '.
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!