RPRSR4SK is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RPRSR4SK into the relevant SAP transactions such as SE38 or SE80
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.
Title: Include RPRSR4SK
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FI_TRV_ROUND_AMOUNT CALL FUNCTION 'FI_TRV_ROUND_AMOUNT' EXPORTING amount_in = lv_sum_amount_fz molga = wa_head-molga currency = lv_waers IMPORTING amount_out = lv_sum_amount_fz rest = lv_value no_round = lv_no_round.
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = sy-datum foreign_amount = lv_sum_amount_fz foreign_currency = lv_waers local_currency = wa_perio-waers rate = 0 type_of_rate = t706d-kurst IMPORTING exchange_rate = lv_rate local_amount = lv_sum_amount_fz.
FI_TRV_ROUND_AMOUNT CALL FUNCTION 'FI_TRV_ROUND_AMOUNT' EXPORTING amount_in = lv_sum_amount_fa molga = wa_head-molga currency = lv_waers IMPORTING amount_out = lv_sum_amount_fa rest = lv_value no_round = lv_no_round.
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = sy-datum foreign_amount = lv_sum_amount_fa foreign_currency = lv_waers local_currency = wa_perio-waers rate = 0 type_of_rate = t706d-kurst IMPORTING exchange_rate = lv_rate local_amount = lv_sum_amount_fa.
FI_TRV_ROUND_AMOUNT CALL FUNCTION 'FI_TRV_ROUND_AMOUNT' EXPORTING amount_in = lv_sum_amount_ku molga = wa_head-molga currency = lv_waers IMPORTING amount_out = lv_sum_amount_ku rest = lv_value no_round = lv_no_round.
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = sy-datum foreign_amount = lv_sum_amount_ku foreign_currency = lv_waers local_currency = wa_perio-waers rate = 0 type_of_rate = t706d-kurst IMPORTING exchange_rate = lv_rate local_amount = lv_sum_amount_ku.
FI_TRV_ROUND_AMOUNT CALL FUNCTION 'FI_TRV_ROUND_AMOUNT' EXPORTING amount_in = lv_sum_amount_fz molga = wa_head-molga currency = lv_waers_help IMPORTING amount_out = lv_sum_amount_fz rest = lv_value no_round = lv_no_round.
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = sy-datum foreign_amount = lv_sum_amount_fz foreign_currency = lv_waers_help local_currency = wa_perio-waers rate = 0 type_of_rate = t706d-kurst IMPORTING exchange_rate = lv_rate local_amount = lv_sum_amount_fz.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.