RHPMFC00 is a standard Executable ABAP Report 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 RHPMFC00 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.
Selection Text: PA_NADA = D Inadequate
Selection Text: PA_NDUR = D Interrupted
Selection Text: PA_NIED = D Lower Classification
Selection Text: PA_OTEXT = D Object Type Name
Selection Text: PA_OTYPE = D Object Type
Selection Text: PA_PERS = D Personal Data
Selection Text: PA_PLVAR = D Plan Variant
Selection Text: PA_PRSCR = D Print in SAPscript
Selection Text: PA_PRSTD = D Print (standard)
Selection Text: PA_SHORT = D Object Abbreviation
Selection Text: PA_STAG = D Key Date
Selection Text: PA_TARIF = D Pay Scale Info.
Selection Text: PA_UNBE = D Unlimited
Selection Text: PA_VINT = D Internal rules
Selection Text: PA_WORK = D Working Time
Selection Text: PERSG = D Employee Group
Selection Text: PERSK = D Employee Subgroup
Selection Text: SO_DESCR = D Subtype
Selection Text: SO_FIPEX = D Commitment Item
Selection Text: SO_FISTL = D Funds Center
Selection Text: SO_GEBER = D Fund
Selection Text: SO_OBJID = D Search Term
Selection Text: SO_PERIV = D Fiscal Year Variant
Selection Text: SUBTY1 = D Subtype
Selection Text: SUBTY2 = D Subtype
Selection Text: WERKS = D Personnel Area
Selection Text: PA_MEHR = D Sev.times
Selection Text: BTRTL = D Personnel Subarea
Selection Text: BUKRS = D Company Code
Selection Text: MOLGA = D Country Grouping
Selection Text: PA_2YEAR = D Comparison Year
Selection Text: PA_ABWE = D Different
Selection Text: PA_ADAQ = D Adequate
Selection Text: PA_ANAL = D Same
Selection Text: PA_ANSA = D Budget estimate
Selection Text: PA_BEFR = D Limited
Selection Text: PA_BEGDA = D Start Date
Selection Text: PA_DURC = D Continuous
INCLUDE RHPMRSEL.
No SAP DATABASE tables are accessed within this REPORT code!
RH_PM_READ_INFTY CALL FUNCTION 'RH_PM_READ_INFTY' EXPORTING act_plvar = objec_tab-plvar act_otype = objec_tab-otype act_objid = objec_tab-objid act_begda = pchbegda act_endda = pchendda act_istat = '1' act_infty = '1001' act_subty = 'B300' TABLES innnn = p1001_tab EXCEPTIONS OTHERS = 1.
RH_PM_ENQUEUE_TABLE CALL FUNCTION 'RH_PM_ENQUEUE_TABLE' EXPORTING error_type = 'S' TABLES enq_tab = enqueue_tab EXCEPTIONS error_in_enqueue = 1 OTHERS = 2.
RH_PM_FUNDING_CONDENSE CALL FUNCTION 'RH_PM_FUNDING_CONDENSE' TABLES fin_tab = p1001_tab.
RH_DELETE_INFTY CALL FUNCTION 'RH_DELETE_INFTY' EXPORTING vtask = 'B' TABLES innnn = p1001_delete EXCEPTIONS error_during_delete = 1 no_authorization = 2 delete_first_record = 3 corr_exit = 4 OTHERS = 5.
RH_INSERT_INFTY CALL FUNCTION 'RH_INSERT_INFTY' EXPORTING vtask = 'B' TABLES innnn = p1001_tab EXCEPTIONS no_authorization = 1 error_during_insert = 2 repid_form_initial = 3 corr_exit = 4 begda_greater_endda = 5 OTHERS = 6.
RH_UPDATE_DATABASE CALL FUNCTION 'RH_UPDATE_DATABASE' EXPORTING vtask = 'D' EXCEPTIONS OTHERS = 1.
RH_CLEAR_BUFFER CALL FUNCTION 'RH_CLEAR_BUFFER'.
RH_PM_DEQUEUE_TABLE CALL FUNCTION 'RH_PM_DEQUEUE_TABLE' TABLES enq_tab = enqueue_tab.
RH_PM_GET_BUDGET_TYPE CALL FUNCTION 'RH_PM_GET_BUDGET_TYPE' EXPORTING plvar = pa_plvar objid = ld_objid status = gd_istat begda = gd_begda endda = gd_endda IMPORTING return_1500 = ls_1500 EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.