RHPP25LI is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report outputs data from one or several
If you would like to execute this report or see the full code listing simply enter RHPP25LI 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: PLVAR = Plan version
Selection Text: PWD = Password
Selection Text: VERSN = Plan scenario
Selection Text: VNAME = Scenario group
Title: Display an Existing Scenario Group
Text Symbol: BER = The following scenario groups are included in the overall list:
Text Symbol: BEG = Planning periods
Text Symbol: ANZ = Number
Text Symbol: 062 = Currency
Text Symbol: 061 = Scenario groups (overall view)
Text Symbol: 060 = Scenario groups (individual view)
Text Symbol: 051 = Combined list
Text Symbol: 050 = Personnel costs
Text Symbol: CPR = Personnel Costs per Project
Text Symbol: KUR = ShortTxt
Text Symbol: KTN = Cost elem.
Text Symbol: JOB = Personnel costs per cost object
Text Symbol: GIN = Copied into total list
Text Symbol: END = To
Text Symbol: DSL = Data output
Text Symbol: DPT = Cost object
Text Symbol: DOT = Organizational unit
Text Symbol: DNR = No data found
Text Symbol: DKT = Account assignment object
Text Symbol: DIR = Directly valuated
Text Symbol: CSC = Personnel costs per cost center
Text Symbol: PJP = Cost objects per project
Text Symbol: PJO = Cost objects per organizational unit
Text Symbol: PJC = Cost objects per cost center
Text Symbol: ORG = Personnel costs per organizational unit
Text Symbol: NOA = No authorization.
Text Symbol: LBT = Cost items
Text Symbol: LBS = Cost Item
Text Symbol: LBR = Cost items per order
Text Symbol: LBP = Cost items per project
Text Symbol: LBO = Cost items per organizational unit
Text Symbol: LBJ = Cost items per cost object
Text Symbol: LBC = Cost Items per Cost Center
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_PC_VNAME_CHECK_AUTHORITY CALL FUNCTION 'HR_PC_VNAME_CHECK_AUTHORITY' EXPORTING fcode = c_auth_display EXCEPTIONS no_authorization = 1 no_fcode_auth = 2 wrong_password = 3 OTHERS = 4.
RH_PC_EXISTENCE_CHECK CALL FUNCTION 'RH_PC_EXISTENCE_CHECK' EXPORTING plvar = plvar versn = versn begda = begda endda = endda * VNAME = versn_check = 'X' * IMPORTING * I77KD = * FRFLG = TABLES i77kd_tab = i77kd EXCEPTIONS no_existence = 1 OTHERS = 2.
HR_READ_PC_VNAME CALL FUNCTION 'HR_READ_PC_VNAME' EXPORTING i77kd = i77kd IMPORTING pcl5_admin = pcl5_admin TABLES org_cost = org_cost org_ctype = org_ctype org_text = org_text pos_cost = pos_cost pos_text = pos_text cost_tab = cost_tab EXCEPTIONS no_data_found = 4.
HR_PC_VNAME_CHECK_AUTHORITY CALL FUNCTION 'HR_PC_VNAME_CHECK_AUTHORITY' EXPORTING i77kd = i77kd * PWD = ' ' * FCODE = ' ' TABLES org_text = org_text EXCEPTIONS no_authorization = 1 no_fcode_auth = 2 wrong_password = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.