SAP FICO_API_MAP_OLDTABS_TO_API Function Module for









FICO_API_MAP_OLDTABS_TO_API is a standard fico api map oldtabs to api 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 api map oldtabs to api FM, simply by entering the name FICO_API_MAP_OLDTABS_TO_API into the relevant SAP transaction such as SE37 or SE38.

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



Function FICO_API_MAP_OLDTABS_TO_API 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_API_MAP_OLDTABS_TO_API'"
EXPORTING
* I_APPL = "
I_TAB_DATE = "
I_TAB_DATEPOS = "
I_T_CONDDIFF = "
* I_T_CONDDIFF_T = "
* IV_LISTTYPE = "
* IV_FLG_BUFFER = "
* I_LANGU = "
* I_LIST = "
I_TAB_COND = "
I_TAB_COND_T = "
I_TAB_AMT = "
I_TAB_AMTPOS = "
I_TAB_AMTPOSREL = "
I_TAB_AMTPOSEXP = "

IMPORTING
E_TAB_COND = "
E_RC = "
E_T_RETURN = "
E_TAB_COND_T = "
E_TAB_AMT = "
E_TAB_AMTPOS = "
E_TAB_AMTPOSREL = "
E_TAB_AMTPOSEXP = "
E_TAB_DATE = "
E_TAB_DATEPOS = "
E_TAB_INDIVLZ_FLDLST = "
.



IMPORTING Parameters details for FICO_API_MAP_OLDTABS_TO_API

I_APPL -

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

I_TAB_DATE -

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

I_TAB_DATEPOS -

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

I_T_CONDDIFF -

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

I_T_CONDDIFF_T -

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

IV_LISTTYPE -

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

IV_FLG_BUFFER -

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

I_LANGU -

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

I_LIST -

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

I_TAB_COND -

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

I_TAB_COND_T -

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

I_TAB_AMT -

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

I_TAB_AMTPOS -

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

I_TAB_AMTPOSREL -

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

I_TAB_AMTPOSEXP -

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

EXPORTING Parameters details for FICO_API_MAP_OLDTABS_TO_API

E_TAB_COND -

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

E_RC -

Data type: SY-SUBRC
Optional: No
Call by Reference: Yes

E_T_RETURN -

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

E_TAB_COND_T -

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

E_TAB_AMT -

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

E_TAB_AMTPOS -

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

E_TAB_AMTPOSREL -

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

E_TAB_AMTPOSEXP -

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

E_TAB_DATE -

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

E_TAB_DATEPOS -

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

E_TAB_INDIVLZ_FLDLST -

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

Copy and paste ABAP code example for FICO_API_MAP_OLDTABS_TO_API 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_i_appl  TYPE FICO_OAPPL, "   
lv_e_tab_cond  TYPE FICO_TYP_TAS_API_COND, "   
lv_e_rc  TYPE SY-SUBRC, "   
lv_i_tab_date  TYPE FICO_TYP_TAS_DATE, "   
lv_e_t_return  TYPE BAPIRET2_T, "   
lv_i_tab_datepos  TYPE FICO_TYP_TAS_DATEPOS, "   
lv_i_t_conddiff  TYPE FICO_TYP_TAS_CONDDIFF, "   
lv_i_t_conddiff_t  TYPE FICO_TYP_TAS_DIFF_DISPLAY, "   
lv_iv_listtype  TYPE FICO_OLISTTYP, "   
lv_iv_flg_buffer  TYPE FICO_FBUFFER, "   
lv_i_langu  TYPE SPRAS, "   
lv_e_tab_cond_t  TYPE FICO_TYP_TAS_API_COND_T, "   
lv_i_list  TYPE FICO_ILIST, "   
lv_e_tab_amt  TYPE FICO_TYP_TAS_API_AMT, "   
lv_i_tab_cond  TYPE FICO_TYP_TAS_COND, "   
lv_e_tab_amtpos  TYPE FICO_TYP_TAS_API_AMTPOS, "   
lv_i_tab_cond_t  TYPE FICO_TYP_TAS_COND_T, "   
lv_e_tab_amtposrel  TYPE FICO_TYP_TAS_API_AMTPOSREL, "   
lv_i_tab_amt  TYPE FICO_TYP_TAS_AMT, "   
lv_e_tab_amtposexp  TYPE FICO_TYP_TAS_API_AMTPOSEXP, "   
lv_e_tab_date  TYPE FICO_TYP_TAS_API_DATE, "   
lv_i_tab_amtpos  TYPE FICO_TYP_TAS_AMTPOS, "   
lv_e_tab_datepos  TYPE FICO_TYP_TAS_API_DATEPOS, "   
lv_i_tab_amtposrel  TYPE FICO_TYP_TAS_POS_REL, "   
lv_i_tab_amtposexp  TYPE FICO_TYP_TAS_AMTPOSEXP, "   
lv_e_tab_indivlz_fldlst  TYPE FICO_TYP_TAS_API_INDIVLZ_FLDLS. "   

  CALL FUNCTION 'FICO_API_MAP_OLDTABS_TO_API'  "
    EXPORTING
         I_APPL = lv_i_appl
         I_TAB_DATE = lv_i_tab_date
         I_TAB_DATEPOS = lv_i_tab_datepos
         I_T_CONDDIFF = lv_i_t_conddiff
         I_T_CONDDIFF_T = lv_i_t_conddiff_t
         IV_LISTTYPE = lv_iv_listtype
         IV_FLG_BUFFER = lv_iv_flg_buffer
         I_LANGU = lv_i_langu
         I_LIST = lv_i_list
         I_TAB_COND = lv_i_tab_cond
         I_TAB_COND_T = lv_i_tab_cond_t
         I_TAB_AMT = lv_i_tab_amt
         I_TAB_AMTPOS = lv_i_tab_amtpos
         I_TAB_AMTPOSREL = lv_i_tab_amtposrel
         I_TAB_AMTPOSEXP = lv_i_tab_amtposexp
    IMPORTING
         E_TAB_COND = lv_e_tab_cond
         E_RC = lv_e_rc
         E_T_RETURN = lv_e_t_return
         E_TAB_COND_T = lv_e_tab_cond_t
         E_TAB_AMT = lv_e_tab_amt
         E_TAB_AMTPOS = lv_e_tab_amtpos
         E_TAB_AMTPOSREL = lv_e_tab_amtposrel
         E_TAB_AMTPOSEXP = lv_e_tab_amtposexp
         E_TAB_DATE = lv_e_tab_date
         E_TAB_DATEPOS = lv_e_tab_datepos
         E_TAB_INDIVLZ_FLDLST = lv_e_tab_indivlz_fldlst
. " FICO_API_MAP_OLDTABS_TO_API




ABAP code using 7.40 inline data declarations to call FM FICO_API_MAP_OLDTABS_TO_API

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.

 
 
"SELECT single SUBRC FROM SY INTO @DATA(ld_e_rc).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!