SAP Reports / Programs

RPUCNV00 SAP ABAP Report - Check Exchange Rates







RPUCNV00 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Check Exchange Rates This report enables you to display the exchange rates set in the system when amounts are translated from one currency to another...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter RPUCNV00 into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT RPUCNV00. "Basic submit
SUBMIT RPUCNV00 AND RETURN. "Return to original report after report execution complete
SUBMIT RPUCNV00 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: DATUM = Key Date
Selection Text: WAE_IN = Incoming Currency
Selection Text: WAE_OUT = Outgoing Currency
Title: Check Exchange Rates
Text Symbol: 001 = Maintain Exch.Rates


INCLUDES used within this REPORT RPUCNV00

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

HR_CHECK_EURO_PAYROLL CALL FUNCTION 'HR_CHECK_EURO_PAYROLL' EXPORTING molga = molga IMPORTING euro_currency = wae_out "#EC DOM_EQUAL old_currency = wae_in "#EC DOM_EQUAL EXCEPTIONS land_not_found = 1 not_converted = 2 currencies_not_determined = 3 OTHERS = 4.

CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = datum "#EC DOM_EQUAL foreign_amount = bet_in foreign_currency = wae_in local_currency = wae_out IMPORTING exchange_rate = rate local_amount = bet_out EXCEPTIONS OTHERS = 4.

CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = datum "#EC DOM_EQUAL foreign_amount = bet_in foreign_currency = wae_out local_currency = wae_in IMPORTING exchange_rate = rate local_amount = bet_out EXCEPTIONS OTHERS = 4.

HR_GET_ERROR_LIST CALL FUNCTION 'HR_GET_ERROR_LIST' EXCEPTIONS no_errors = 1 OTHERS = 2.

HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' EXPORTING no_popup = 'X' "Ausgabe mit WRITE no_print = ' ' no_img = ' ' no_msgno = ' ' linesize = sy-linsz listheader = ' ' colheader = ' ' hidemsg = 'X' "mit HIDE-Option für * TABLES "Langtexte bei Doppelklick * error = EXCEPTIONS invalid_linesize = 1 OTHERS = 2.

HR_DISPLAY_ERROR_LONGTEXT CALL FUNCTION 'HR_DISPLAY_ERROR_LONGTEXT'.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RPUCNV00 or its description.