RKPRCTR00 is a standard Module pool for a dialog screen ABAP Program 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 RKPRCTR00 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: Interface for Profit Centers (RFC capable)
INCLUDE MPH5ATOP.
No SAP DATABASE tables are accessed within this REPORT code!
K_KOKRS_SET CALL FUNCTION 'K_KOKRS_SET'.
F4IF_DETERMINE_SEARCHHELP CALL FUNCTION 'F4IF_DETERMINE_SEARCHHELP' EXPORTING tabname = ld_tabname fieldname = ld_field IMPORTING shlp = ls_shlp.
F4IF_START_VALUE_REQUEST CALL FUNCTION 'F4IF_START_VALUE_REQUEST' EXPORTING shlp = ls_shlp IMPORTING rc = eoi_subrc TABLES return_values = lt_retval.
K_PROCESSES_SELECT_TAB * CALL FUNCTION 'K_PROCESSES_SELECT_TAB' * EXPORTING * kokrs = dbsel_kokrs-kokrs * date_from = low_date * date_to = high_date * tabname = 'PRCT1' * TABLES * prctr_tab = prctr_range * it_result = lt_pctab2 * EXCEPTIONS * no_record_found = 1 * OTHERS = 2.
K_EO_PRCTR_READ CALL FUNCTION 'K_EO_PRCTR_READ' EXPORTING icontrollingarea = profitcenter-kokrs iprofitcenter = profitcenter-prctr * idatefrom = low_date * idateto = high_date icomplete = 'X' itabname = 'PRCT2' IMPORTING edatatab = lt_prct2[] EXCEPTIONS invalid_input = 1 OTHERS = 2.
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = act_profitcenter-prctr IMPORTING output = act_profitcenter-prctr.
RH_SET_DATE CALL FUNCTION 'RH_SET_DATE' EXPORTING beg_dat = act_begda end_dat = act_endda IMPORTING ret_dat = read_date_text EXCEPTIONS intervall_negative = 1 OTHERS = 2.
RH_SET_DATE CALL FUNCTION 'RH_SET_DATE' EXPORTING beg_dat = act_begda end_dat = act_endda IMPORTING ret_dat = read_date EXCEPTIONS intervall_negative = 1 OTHERS = 2.
K_EO_PRCTR_READ CALL FUNCTION 'K_EO_PRCTR_READ' EXPORTING icontrollingarea = p_kokrs iprofitcenter = p_prctr ikeydate = p_read_date itabname = 'PRCT2' IMPORTING edatatab = lt_prct2[] EXCEPTIONS invalid_input = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.