SAP FICO_API_COND_RECONSTRUCT Function Module for
FICO_API_COND_RECONSTRUCT is a standard fico api cond reconstruct 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 cond reconstruct FM, simply by entering the name FICO_API_COND_RECONSTRUCT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FICO_API
Program Name: SAPLFICO_API
Main Program: SAPLFICO_API
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FICO_API_COND_RECONSTRUCT 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_COND_RECONSTRUCT'".
EXPORTING
I_T_COND = "
I_T_COND_T = "
I_T_POS = "
I_T_RULE = "
I_T_CHNG_DOC = "
IMPORTING
E_T_COND_HIST = "
E_T_COND_T_HIST = "
E_T_POS_HIST = "
E_T_RULE_HIST = "
IMPORTING Parameters details for FICO_API_COND_RECONSTRUCT
I_T_COND -
Data type: FICO_TYP_TAS_CONDI_BUFFOptional: No
Call by Reference: Yes
I_T_COND_T -
Data type: FICO_TYP_TAS_COND_TOptional: No
Call by Reference: Yes
I_T_POS -
Data type: FICO_TYP_TAS_POS_BUFFOptional: No
Call by Reference: Yes
I_T_RULE -
Data type: FICO_TYP_TAS_CONDIT_RULE_SHORTOptional: No
Call by Reference: Yes
I_T_CHNG_DOC -
Data type: FICOS_TAB_CD_CHDOCOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FICO_API_COND_RECONSTRUCT
E_T_COND_HIST -
Data type: FICO_TYP_TAS_CONDI_HISTOptional: No
Call by Reference: Yes
E_T_COND_T_HIST -
Data type: FICO_TYP_TAS_CONDI_T_HISTOptional: No
Call by Reference: Yes
E_T_POS_HIST -
Data type: FICO_TYP_TAS_POS_HISTOptional: No
Call by Reference: Yes
E_T_RULE_HIST -
Data type: FICO_TYP_TAS_RULE_HISTOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FICO_API_COND_RECONSTRUCT 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_t_cond | TYPE FICO_TYP_TAS_CONDI_BUFF, " | |||
| lv_e_t_cond_hist | TYPE FICO_TYP_TAS_CONDI_HIST, " | |||
| lv_i_t_cond_t | TYPE FICO_TYP_TAS_COND_T, " | |||
| lv_e_t_cond_t_hist | TYPE FICO_TYP_TAS_CONDI_T_HIST, " | |||
| lv_i_t_pos | TYPE FICO_TYP_TAS_POS_BUFF, " | |||
| lv_e_t_pos_hist | TYPE FICO_TYP_TAS_POS_HIST, " | |||
| lv_i_t_rule | TYPE FICO_TYP_TAS_CONDIT_RULE_SHORT, " | |||
| lv_e_t_rule_hist | TYPE FICO_TYP_TAS_RULE_HIST, " | |||
| lv_i_t_chng_doc | TYPE FICOS_TAB_CD_CHDOC. " |
|   CALL FUNCTION 'FICO_API_COND_RECONSTRUCT' " |
| EXPORTING | ||
| I_T_COND | = lv_i_t_cond | |
| I_T_COND_T | = lv_i_t_cond_t | |
| I_T_POS | = lv_i_t_pos | |
| I_T_RULE | = lv_i_t_rule | |
| I_T_CHNG_DOC | = lv_i_t_chng_doc | |
| IMPORTING | ||
| E_T_COND_HIST | = lv_e_t_cond_hist | |
| E_T_COND_T_HIST | = lv_e_t_cond_t_hist | |
| E_T_POS_HIST | = lv_e_t_pos_hist | |
| E_T_RULE_HIST | = lv_e_t_rule_hist | |
| . " FICO_API_COND_RECONSTRUCT | ||
ABAP code using 7.40 inline data declarations to call FM FICO_API_COND_RECONSTRUCT
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.Search for further information about these or an SAP related objects