SAP EXIT_FICUMR00_001 Function Module for Function Exit for Definition of Customer-defined Exchange Rates









EXIT_FICUMR00_001 is a standard exit ficumr00 001 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Function Exit for Definition of Customer-defined Exchange Rates processing and below is the pattern details for this FM, 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 exit ficumr00 001 FM, simply by entering the name EXIT_FICUMR00_001 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_FICUMR00_001 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 'EXIT_FICUMR00_001'"Function Exit for Definition of Customer-defined Exchange Rates
EXPORTING
IT_DATA = "Transaction Data
I_DIMEN = "Dimension
I_RLDNR = "Ledger
I_CONGR = "Consolidation Activity Group
I_BUNIT = "Consolidation Unit
I_RVERS = "Version
I_RYEAR = "Year
I_PERID = "Period
I_ITCLG = "Consolidation Chart of Accounts
* IS_DATA = "Data record to be translated
I_DATE = "
* IT_DATA_NOCTR = "Data Records for Document Types That Do Not Need Translation
I_FR_CURR = "
I_TO_CURR = "
IT_ENTRY = "Method Entries
IT_ENTRY_EXP = "Method Entries With Expanded Sets
I_SEQNR = "Number of Relevant Method Entries
I_UEXIT = "Exit
I_ITEM = "Financial statement item
I_SITYP = "Subitem category
I_SITEM = "Subitem

IMPORTING
E_RATE = "Exchange Rate
E_FR_FACTOR = "'From' Factor
E_TO_FACTOR = "'To' Factor
E_GC_VALUE = "Group Value
E_DATA_INDEP = "Result does not depend on a single data record

CHANGING
* CS_ENTRY_EXP = "Method Entry, per Range of Items
.



IMPORTING Parameters details for EXIT_FICUMR00_001

IT_DATA - Transaction Data

Data type: FC04_T_DATA
Optional: No
Call by Reference: No ( called with pass by value option)

I_DIMEN - Dimension

Data type: FC_DIMEN
Optional: No
Call by Reference: No ( called with pass by value option)

I_RLDNR - Ledger

Data type: FC_RLDNR
Optional: No
Call by Reference: No ( called with pass by value option)

I_CONGR - Consolidation Activity Group

Data type: FC_CONGR
Optional: No
Call by Reference: No ( called with pass by value option)

I_BUNIT - Consolidation Unit

Data type: FC_BUNIT
Optional: No
Call by Reference: No ( called with pass by value option)

I_RVERS - Version

Data type: FC_RVERS
Optional: No
Call by Reference: No ( called with pass by value option)

I_RYEAR - Year

Data type: FC_RYEAR
Optional: No
Call by Reference: No ( called with pass by value option)

I_PERID - Period

Data type: FC_PERID
Optional: No
Call by Reference: No ( called with pass by value option)

I_ITCLG - Consolidation Chart of Accounts

Data type: FC_ITCLG
Optional: No
Call by Reference: No ( called with pass by value option)

IS_DATA - Data record to be translated

Data type: FC04_S_DATA
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_DATE -

Data type: FC_DATUM
Optional: No
Call by Reference: No ( called with pass by value option)

IT_DATA_NOCTR - Data Records for Document Types That Do Not Need Translation

Data type: FC04_T_DATA
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FR_CURR -

Data type: FC_CURRENCY
Optional: No
Call by Reference: No ( called with pass by value option)

I_TO_CURR -

Data type: FC_CURRENCY
Optional: No
Call by Reference: No ( called with pass by value option)

IT_ENTRY - Method Entries

Data type: FC04_T_ENTRY
Optional: No
Call by Reference: No ( called with pass by value option)

IT_ENTRY_EXP - Method Entries With Expanded Sets

Data type: FC04_T_ENTRY_EXP
Optional: No
Call by Reference: No ( called with pass by value option)

I_SEQNR - Number of Relevant Method Entries

Data type: FC04_SEQNR
Optional: No
Call by Reference: No ( called with pass by value option)

I_UEXIT - Exit

Data type: FC04_UEXIT
Optional: No
Call by Reference: No ( called with pass by value option)

I_ITEM - Financial statement item

Data type: FC_ITEM
Optional: No
Call by Reference: No ( called with pass by value option)

I_SITYP - Subitem category

Data type: FC_SITYP
Optional: No
Call by Reference: No ( called with pass by value option)

I_SITEM - Subitem

Data type: FC_SITEM
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for EXIT_FICUMR00_001

E_RATE - Exchange Rate

Data type: FC04_RATE
Optional: No
Call by Reference: No ( called with pass by value option)

E_FR_FACTOR - 'From' Factor

Data type: FC04_FR_FACTOR
Optional: No
Call by Reference: No ( called with pass by value option)

E_TO_FACTOR - 'To' Factor

Data type: FC04_TO_FACTOR
Optional: No
Call by Reference: No ( called with pass by value option)

E_GC_VALUE - Group Value

Data type: ECMCA-KSL
Optional: No
Call by Reference: No ( called with pass by value option)

E_DATA_INDEP - Result does not depend on a single data record

Data type: FC_FLG
Optional: No
Call by Reference: No ( called with pass by value option)

CHANGING Parameters details for EXIT_FICUMR00_001

CS_ENTRY_EXP - Method Entry, per Range of Items

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

Copy and paste ABAP code example for EXIT_FICUMR00_001 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_rate  TYPE FC04_RATE, "   
lv_it_data  TYPE FC04_T_DATA, "   
lv_cs_entry_exp  TYPE FC04_S_ENTRY_EXP, "   
lv_i_dimen  TYPE FC_DIMEN, "   
lv_i_rldnr  TYPE FC_RLDNR, "   
lv_i_congr  TYPE FC_CONGR, "   
lv_i_bunit  TYPE FC_BUNIT, "   
lv_i_rvers  TYPE FC_RVERS, "   
lv_i_ryear  TYPE FC_RYEAR, "   
lv_i_perid  TYPE FC_PERID, "   
lv_i_itclg  TYPE FC_ITCLG, "   
lv_is_data  TYPE FC04_S_DATA, "   
lv_i_date  TYPE FC_DATUM, "   
lv_e_fr_factor  TYPE FC04_FR_FACTOR, "   
lv_it_data_noctr  TYPE FC04_T_DATA, "   
lv_i_fr_curr  TYPE FC_CURRENCY, "   
lv_i_to_curr  TYPE FC_CURRENCY, "   
lv_it_entry  TYPE FC04_T_ENTRY, "   
lv_e_to_factor  TYPE FC04_TO_FACTOR, "   
lv_e_gc_value  TYPE ECMCA-KSL, "   
lv_it_entry_exp  TYPE FC04_T_ENTRY_EXP, "   
lv_i_seqnr  TYPE FC04_SEQNR, "   
lv_e_data_indep  TYPE FC_FLG, "   
lv_i_uexit  TYPE FC04_UEXIT, "   
lv_i_item  TYPE FC_ITEM, "   
lv_i_sityp  TYPE FC_SITYP, "   
lv_i_sitem  TYPE FC_SITEM. "   

  CALL FUNCTION 'EXIT_FICUMR00_001'  "Function Exit for Definition of Customer-defined Exchange Rates
    EXPORTING
         IT_DATA = lv_it_data
         I_DIMEN = lv_i_dimen
         I_RLDNR = lv_i_rldnr
         I_CONGR = lv_i_congr
         I_BUNIT = lv_i_bunit
         I_RVERS = lv_i_rvers
         I_RYEAR = lv_i_ryear
         I_PERID = lv_i_perid
         I_ITCLG = lv_i_itclg
         IS_DATA = lv_is_data
         I_DATE = lv_i_date
         IT_DATA_NOCTR = lv_it_data_noctr
         I_FR_CURR = lv_i_fr_curr
         I_TO_CURR = lv_i_to_curr
         IT_ENTRY = lv_it_entry
         IT_ENTRY_EXP = lv_it_entry_exp
         I_SEQNR = lv_i_seqnr
         I_UEXIT = lv_i_uexit
         I_ITEM = lv_i_item
         I_SITYP = lv_i_sityp
         I_SITEM = lv_i_sitem
    IMPORTING
         E_RATE = lv_e_rate
         E_FR_FACTOR = lv_e_fr_factor
         E_TO_FACTOR = lv_e_to_factor
         E_GC_VALUE = lv_e_gc_value
         E_DATA_INDEP = lv_e_data_indep
    CHANGING
         CS_ENTRY_EXP = lv_cs_entry_exp
. " EXIT_FICUMR00_001




ABAP code using 7.40 inline data declarations to call FM EXIT_FICUMR00_001

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 KSL FROM ECMCA INTO @DATA(ld_e_gc_value).
 
 
 
 
 
 
 
 


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!