RPCDSBB2 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 RPCDSBB2 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 RPCDSBB2: Social Balance - subroutines 2
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = $text EXCEPTIONS OTHERS = 0.
HR_99S_MONTHS_BETWEEN_DATES CALL FUNCTION 'HR_99S_MONTHS_BETWEEN_DATES' EXPORTING p_begda = l_begda p_endda = l_endda IMPORTING p_months = l_number_of_months EXCEPTIONS OTHERS = 1.
HR_GET_PAYROLL_RESULTS CALL FUNCTION 'HR_GET_PAYROLL_RESULTS' EXPORTING pernr = p_pernr permo = l_permo pabrj = p_pperiods-pabrj pabrp = p_pperiods-pabrp pabrj_end = p_pperiods-pabrj_end pabrp_end = p_pperiods-pabrp_end actual = 'X' * INPER_LST = inper_act = p_pperiods-inper_act "#EC DOM_EQUAL * ACTUAL = ... TYPE SRTZA
HR_PAYROLL_PERIODS_GET CALL FUNCTION 'HR_PAYROLL_PERIODS_GET' EXPORTING get_begda = p_date * get_endda = get_permo = p_permo IMPORTING get_pabrj = l_year get_pabrp = l_period TABLES get_periods = l_details_tab EXCEPTIONS no_period_found = 1 no_valid_permo = 2 OTHERS = 3 .
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = p_date foreign_amount = l_foreign_amount foreign_currency = p_waers local_currency = c_local_currency IMPORTING local_amount = p_amount EXCEPTIONS no_rate_found = 0.
BP_RETRIEVE_PRIPARS CALL FUNCTION 'BP_RETRIEVE_PRIPARS' IMPORTING form_pripars = l_s_options EXCEPTIONS no_runtime_info = 1 job_notex = 2 no_pripars = 3 OTHERS = 4.
OPEN_FORM CALL FUNCTION 'OPEN_FORM' EXPORTING * APPLICATION = 'TX' * ARCHIVE_INDEX = ' ' * ARCHIVE_PARAMS = ' ' device = 'PRINTER' dialog = ' ' form = form language = language options = l_s_options IMPORTING * LANGUAGE = * NEW_ARCHIVE_PARAMS = result = l_result EXCEPTIONS canceled = 1 device = 2 form = 3 options = 4 unclosed = 5 OTHERS = 6.
CLOSE_FORM CALL FUNCTION 'CLOSE_FORM' * IMPORTING * RESULT = TABLES otfdata = l_otf_table EXCEPTIONS unopened = 1 OTHERS = 2.
HR_IT_DISPLAY_WITH_PDF CALL FUNCTION 'HR_IT_DISPLAY_WITH_PDF' TABLES otf_table = l_otf_table.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.