SAP FICO_MAP_STD_CONDGRP_CHANGE Function Module for









FICO_MAP_STD_CONDGRP_CHANGE is a standard fico map std condgrp change 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 map std condgrp change FM, simply by entering the name FICO_MAP_STD_CONDGRP_CHANGE into the relevant SAP transaction such as SE37 or SE38.

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



Function FICO_MAP_STD_CONDGRP_CHANGE 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_MAP_STD_CONDGRP_CHANGE'"
EXPORTING
I_APPL = "Application
I_TAB_COND = "API Conditions: Table of Header Data
* I_TAB_COND_T = "API Table of Condition Descriptions
* I_TAB_AMT = "API Conditions: Table of Period Components With Amount Categ
* I_TAB_AMTPOS = "API Conditions: Table of Positions With Amount Category
* I_TAB_AMTPOSEXP = "API Conditions - Table Amount Pos.: Int.Rates/Ref.Int.Rates
* I_TAB_AMTPOSREL = "
* I_TAB_DATE = "API Conditions:Table of Period Components With Date Category
* I_TAB_DATEPOS = "API Conditions: Table of Positions With Date Category
* I_TAS_API_RULE_VALPER = "
* I_TAS_API_RULE_FLDPROP = "
I_CONDGROUP = "Condition Group Maintenace (Key Object, API)
* IO_CALLBACKS = "
* I_TAB_CONDGR_T = "MAPI Condition Groups: Table of Descriptions
* I_BUSINESS_DAY = "(8-character) Date for SYST
* I_FLG_AUTH_CHECK = "Character Field Length 1
* I_FLG_TESTRUN = "Switch to Simulation Mode for Write BAPIs
* I_FLG_STOP_RELEASE = "Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
* I_FLG_UPDATETASK = G_CON_TRUE "Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
* I_FLG_DELETE = "Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')

IMPORTING
E_T_RETURN = "Return Table
E_RC = "Return Value, Return Value After ABAP Statements

CHANGING
* CO_LOGGER = "
.



IMPORTING Parameters details for FICO_MAP_STD_CONDGRP_CHANGE

I_APPL - Application

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

I_TAB_COND - API Conditions: Table of Header Data

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

I_TAB_COND_T - API Table of Condition Descriptions

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

I_TAB_AMT - API Conditions: Table of Period Components With Amount Categ

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

I_TAB_AMTPOS - API Conditions: Table of Positions With Amount Category

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

I_TAB_AMTPOSEXP - API Conditions - Table Amount Pos.: Int.Rates/Ref.Int.Rates

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

I_TAB_AMTPOSREL -

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

I_TAB_DATE - API Conditions:Table of Period Components With Date Category

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

I_TAB_DATEPOS - API Conditions: Table of Positions With Date Category

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

I_TAS_API_RULE_VALPER -

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

I_TAS_API_RULE_FLDPROP -

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

I_CONDGROUP - Condition Group Maintenace (Key Object, API)

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

IO_CALLBACKS -

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

I_TAB_CONDGR_T - MAPI Condition Groups: Table of Descriptions

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

I_BUSINESS_DAY - (8-character) Date for SYST

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

I_FLG_AUTH_CHECK - Character Field Length 1

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

I_FLG_TESTRUN - Switch to Simulation Mode for Write BAPIs

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

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

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

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

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

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

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

EXPORTING Parameters details for FICO_MAP_STD_CONDGRP_CHANGE

E_T_RETURN - Return Table

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

E_RC - Return Value, Return Value After ABAP Statements

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

CHANGING Parameters details for FICO_MAP_STD_CONDGRP_CHANGE

CO_LOGGER -

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

Copy and paste ABAP code example for FICO_MAP_STD_CONDGRP_CHANGE 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_co_logger  TYPE IF_FICO_LOGGER, "   
lv_e_t_return  TYPE BAPIRET2_T, "   
lv_i_tab_cond  TYPE FICO_TYP_TAS_API_COND, "   
lv_i_tab_cond_t  TYPE FICO_TYP_TAS_API_COND_T, "   
lv_i_tab_amt  TYPE FICO_TYP_TAS_API_AMT, "   
lv_i_tab_amtpos  TYPE FICO_TYP_TAS_API_AMTPOS, "   
lv_i_tab_amtposexp  TYPE FICO_TYP_TAS_API_AMTPOSEXP, "   
lv_i_tab_amtposrel  TYPE FICO_TYP_TAS_API_AMTPOSREL, "   
lv_i_tab_date  TYPE FICO_TYP_TAS_API_DATE, "   
lv_i_tab_datepos  TYPE FICO_TYP_TAS_API_DATEPOS, "   
lv_i_tas_api_rule_valper  TYPE FICO_TYP_TAS_API_RULE_VALPER, "   
lv_i_tas_api_rule_fldprop  TYPE FICO_TYP_TAS_API_RULE_FLDPROP, "   
lv_e_rc  TYPE SYSUBRC, "   
lv_i_condgroup  TYPE BCA_STR_CONDGROUP_KEY, "   
lv_io_callbacks  TYPE IF_FICO_CALLBACKS, "   
lv_i_tab_condgr_t  TYPE FICO_TYP_TAS_MAPI_CONDGRT, "   
lv_i_business_day  TYPE SYDATS, "   
lv_i_flg_auth_check  TYPE CHAR01, "   
lv_i_flg_testrun  TYPE TESTRUN, "   
lv_i_flg_stop_release  TYPE BOOLE_D, "   
lv_i_flg_updatetask  TYPE BOOLE_D, "   G_CON_TRUE
lv_i_flg_delete  TYPE BOOLE_D. "   

  CALL FUNCTION 'FICO_MAP_STD_CONDGRP_CHANGE'  "
    EXPORTING
         I_APPL = lv_i_appl
         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_AMTPOSEXP = lv_i_tab_amtposexp
         I_TAB_AMTPOSREL = lv_i_tab_amtposrel
         I_TAB_DATE = lv_i_tab_date
         I_TAB_DATEPOS = lv_i_tab_datepos
         I_TAS_API_RULE_VALPER = lv_i_tas_api_rule_valper
         I_TAS_API_RULE_FLDPROP = lv_i_tas_api_rule_fldprop
         I_CONDGROUP = lv_i_condgroup
         IO_CALLBACKS = lv_io_callbacks
         I_TAB_CONDGR_T = lv_i_tab_condgr_t
         I_BUSINESS_DAY = lv_i_business_day
         I_FLG_AUTH_CHECK = lv_i_flg_auth_check
         I_FLG_TESTRUN = lv_i_flg_testrun
         I_FLG_STOP_RELEASE = lv_i_flg_stop_release
         I_FLG_UPDATETASK = lv_i_flg_updatetask
         I_FLG_DELETE = lv_i_flg_delete
    IMPORTING
         E_T_RETURN = lv_e_t_return
         E_RC = lv_e_rc
    CHANGING
         CO_LOGGER = lv_co_logger
. " FICO_MAP_STD_CONDGRP_CHANGE




ABAP code using 7.40 inline data declarations to call FM FICO_MAP_STD_CONDGRP_CHANGE

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_flg_updatetask) = G_CON_TRUE.
 
 


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!