SAP PRC_CNV_CURR_CONV_ISO Function Module for Convert ISO Currency Units
PRC_CNV_CURR_CONV_ISO is a standard prc cnv curr conv iso SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Convert ISO Currency Units 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 prc cnv curr conv iso FM, simply by entering the name PRC_CNV_CURR_CONV_ISO into the relevant SAP transaction such as SE37 or SE38.
Function Group: CNV_CURRENCY
Program Name: SAPLCNV_CURRENCY
Main Program: SAPLCNV_CURRENCY
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled JAVA Module
Update:

Function PRC_CNV_CURR_CONV_ISO 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 'PRC_CNV_CURR_CONV_ISO'"Convert ISO Currency Units.
EXPORTING
IT_ISO_CURRENCY_UNIT = "ISO Currency Unit
IMPORTING
ES_PROFILE = "Profile of the IPC call
ET_MAPPING = "Mapping Between ISO and Internal Currency Units
ET_MESSAGE = "Messages From Conversion
IMPORTING Parameters details for PRC_CNV_CURR_CONV_ISO
IT_ISO_CURRENCY_UNIT - ISO Currency Unit
Data type: CNVT_ISO_CURRENCY_UNIT_TOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for PRC_CNV_CURR_CONV_ISO
ES_PROFILE - Profile of the IPC call
Data type: CNVT_PROFILEOptional: No
Call by Reference: No ( called with pass by value option)
ET_MAPPING - Mapping Between ISO and Internal Currency Units
Data type: CNVT_ISO_CURR_MAPPING_TOptional: No
Call by Reference: No ( called with pass by value option)
ET_MESSAGE - Messages From Conversion
Data type: CNVT_CONVERSION_MESSAGE_TOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for PRC_CNV_CURR_CONV_ISO 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_es_profile | TYPE CNVT_PROFILE, " | |||
| lv_it_iso_currency_unit | TYPE CNVT_ISO_CURRENCY_UNIT_T, " | |||
| lv_et_mapping | TYPE CNVT_ISO_CURR_MAPPING_T, " | |||
| lv_et_message | TYPE CNVT_CONVERSION_MESSAGE_T. " |
|   CALL FUNCTION 'PRC_CNV_CURR_CONV_ISO' "Convert ISO Currency Units |
| EXPORTING | ||
| IT_ISO_CURRENCY_UNIT | = lv_it_iso_currency_unit | |
| IMPORTING | ||
| ES_PROFILE | = lv_es_profile | |
| ET_MAPPING | = lv_et_mapping | |
| ET_MESSAGE | = lv_et_message | |
| . " PRC_CNV_CURR_CONV_ISO | ||
ABAP code using 7.40 inline data declarations to call FM PRC_CNV_CURR_CONV_ISO
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