PCBURSK0 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 PCBURSK0 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.
INCLUDE PCBURSK0_SKIF.
INCLUDE PCBURSK0_SKWYR.
INCLUDE PCBURSK0_SKRZ2. "XII/07
No SAP DATABASE tables are accessed within this REPORT code!
HR_SK_HIRE_FIRE CALL FUNCTION 'HR_SK_HIRE_FIRE' IMPORTING fire_date = lv_fire hire_date = lv_hire TABLES pphifi = lt_ehifi pp0000 = p0000 pp0001 = p0001 EXCEPTIONS OTHERS = 1.
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = lv_conv_date * foreign_amount = ot-betpe "X/08 foreign_amount = lv_betpe "X/08 foreign_currency = c_skk "X/08 local_currency = calc_currency "X/08 * foreign_currency = calc_currency "X/08 * local_currency = c_eur "X/08 IMPORTING local_amount = lv_betpe EXCEPTIONS no_rate_found = 1 overflow = 2 no_factors_found = 3 no_spread_found = 4 derived_2_times = 5 OTHERS = 6.
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = lv_conv_date * foreign_amount = ot-betrg "X/08 foreign_amount = lv_betrg "X/08 foreign_currency = c_skk "X/08 local_currency = calc_currency "X/08 * foreign_currency = calc_currency "X/08 * local_currency = c_eur "X/08 IMPORTING local_amount = lv_betrg EXCEPTIONS no_rate_found = 1 overflow = 2 no_factors_found = 3 no_spread_found = 4 derived_2_times = 5 OTHERS = 6.
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = lv_conv_date foreign_amount = ot-anzhl foreign_currency = c_skk "X/08 local_currency = calc_currency "X/08 * foreign_currency = calc_currency "X/08 * local_currency = c_eur "X/08 IMPORTING local_amount = lv_anzhl EXCEPTIONS no_rate_found = 1 overflow = 2 no_factors_found = 3 no_spread_found = 4 derived_2_times = 5 OTHERS = 6.
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = lv_conv_date foreign_amount = lv_betpe foreign_currency = c_skk "X/08 local_currency = calc_currency "X/08 * foreign_currency = calc_currency "X/08 * local_currency = c_eur "X/08 IMPORTING local_amount = lv_betpe EXCEPTIONS no_rate_found = 1 overflow = 2 no_factors_found = 3 no_spread_found = 4 derived_2_times = 5 OTHERS = 6.
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = lv_conv_date foreign_amount = lv_betrg foreign_currency = c_skk "X/08 local_currency = calc_currency "X/08 * foreign_currency = calc_currency "X/08 * local_currency = c_eur "X/08 IMPORTING local_amount = lv_betrg EXCEPTIONS no_rate_found = 1 overflow = 2 no_factors_found = 3 no_spread_found = 4 derived_2_times = 5 OTHERS = 6.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.