FHPINFPH 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 FHPINFPH 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: FHPINFPH
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
UPDATE_ORG_STRUCTURE CALL FUNCTION 'UPDATE_ORG_STRUCTURE' EXPORTING RHI_INDEX = RHI_INDEX PSPAR_SUPDG = PSPAR-SUPDG IMPORTING RHI_SUBRC = RHI_SUBRC TABLES RHI_SELTAB = RHI_SELTAB XPLOG_TAB = PLOG_TAB.
DELIMIT_ORG_ASSIGNMENT CALL FUNCTION 'DELIMIT_ORG_ASSIGNMENT' EXPORTING PERSNR = RD1_PERNR GDATE = RD1_DATE.
UPDATE_ORG_STRUCTURE CALL FUNCTION 'UPDATE_ORG_STRUCTURE' EXPORTING RHI_INDEX = SY-INDEX DIALOG_CHECK = RP_DIALOG_CHECK IMPORTING RHI_SUBRC = RC_SUBRC TABLES RHI_SELTAB = RC_SELTAB.
CHECK_POSITIONS_PER_PERSON CALL FUNCTION 'CHECK_POSITIONS_PER_PERSON' EXPORTING PERSNR = PSC_PERNR BEGDA = PSC_BEGDA ENDDA = PSC_ENDDA PLVAR = PLVAR IMPORTING MORE_POSITIONS = MORE_POSITIONS LOW_PERCENTAGE = LOW_PERCENTAGE.
RH_GET_PLOG_TAB CALL FUNCTION 'RH_GET_PLOG_TAB' IMPORTING PLOG_TAB_COUNT_EXP = PLOG_TAB_COUNT TABLES PLOG_TAB_TAB = PLOG_TAB.
RP_APPLICANT_ASSIGNMENT CALL FUNCTION 'RP_APPLICANT_ASSIGNMENT' TABLES * INTPAPL = PSOPER INTPAPL = l_prelo_tab "note702290 INTPLOG = PLOG_TAB EXCEPTIONS BOTH_TABLES_EMPTY = 01 BOTH_TABLES_FILLED = 02.
DELIMIT_ORG_STRUCTURE CALL FUNCTION 'DELIMIT_ORG_STRUCTURE' EXPORTING PERSNR = RD1_PERNR GDATE = RD1_DATE TABLES DOS_SELTAB = RD1_SELTAB DOS_PLOGTAB = PLOG_TAB EXCEPTIONS AUTHORITY_ERROR = 4 PD_ERROR = 12 OTHERS = 12.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING TCLAS = 'A' PERNR = L_PERNR INFTY = '0003' BEGDA = '18000101' ENDDA = '99991231' TABLES INFTY_TAB = I0003 EXCEPTIONS INFTY_NOT_FOUND = 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.