cancel
Showing results for 
Search instead for 
Did you mean: 

PERNR of internal candidates in the e-Recruiting system

Former Member
0 Kudos

Hi Experts,

We are implementing e-Recruiting 6.0 and have e-Recruiting system integrated in a separate instance and we do data transfer from the HR system to the e-Recruiting system through ALE. Does anyone know where the personnel number of internal candidates get stored in the e-Recruiting system? I can see that the sytem brings up PERNR in the portal for all internal candidates, but unable to find out the table in which it is stored. I have checked in the infotype tables and business partner table (BUT000) with no luck. Can someone help?

Thanks,

Uthra KJ

Edited by: Uthra Karthikeyan on Sep 19, 2008 3:12 PM

Accepted Solutions (0)

Answers (2)

Answers (2)

Koen_VL
Participant
0 Kudos

Hello,

the personnel number is stored in the table HRP1001 with key objecttype P.

You will see that the datamodel for e-recruiting is build around the CP (central person) object

CP -- P

CP -- BP

CP -- US

Hope it helps

Koen Van Loocke

rpalotai
Participant
0 Kudos

You will find it in table HRP5580 - HR Master Data (0000)

former_member181966
Active Contributor
0 Kudos

Explore following tables :

Table Name Short text

EREC_MGR_GRP Grouping of Managers for E-Recruiting s

EREC_MGR_GRP_T Text table for manager grouping in E-Re

T77RCF_AGENCY Agencies in E-Recruiting

T77RCF_APPLSRC Application Source in SAP E-Recruiting

T77RCF_EREC_UGR User Groups That Are To Appear in E-Rec

T77RCF_LOG_APPL Applications in E-Recruiting

T77RCF_LOG_APPLT Applications in E-Recruiting

T77RCF_PROC2SUB Assignment of Processes to Subarea of E

T77RCF_ROLE Roles in E-Recruiting

T77RCF_ROLE2SUB Assignment of Roles in E-Recruiting to

T77RCF_ROLE_T Roles in E-Recruiting

T77RCF_WI_FILTER Workflow Task Filter for E-Recruiting

I think , this is how it is getting the pernr based of user name .

FYI

 
Package :PAOC_MSS_E_RECRUITING ~ Interface for MSS e-Recruiting
class:CL_HRWPC_CA_NAME ( Retrieves Candidate Data from the E-Recruiting System ) 
method :GET_CANDIDATE_NAME_LINK
   get pernr that user is attached to
    CALL FUNCTION 'BAPI_USR01DOHR_GETEMPLOYEE'
      EXPORTING
        id             = sy-uname
        begindate      = sy-datum
        enddate        = sy-datum
      IMPORTING
        return         = return
        employeenumber = employeeid.

IT0105

Table :Pa0105

Good Luck

^Saquib

.

.