You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register
Get Started: AI Resources for Oracle Cloud HCM – Go Here

Progress with Redwood: Redwood Resources for Oracle Cloud HCM -  Go Here
Note!! Please register for a free account to access the full content and also to participate in Q&A in the community

Need to display Pending Worker Details in Configurable Forms (PER_PERSON_ALLOCATED_TASKS_DFF)

edited Oct 23, 2020 4:37PM in Recruiting, Opportunity Marketplace 2 comments

Summary

Performer needs to see the Pending Worker details

Content

Hi Experts,

 

We have a requirement where we need to display the Pending Worker Details like Employee Name, Person Number, Grade Name, Date Of Joining, Manager Name, Department, Phone Number and display the data in the Checklist DFF (Configurable Forms).

 

I have tried to call the values using the below sql query but no data is displayed.

 
Appreciate your support/Guidance.
 
Regards,
Harish Vummidi

Version

20C

Code Snippet

select papf.person_number,
		PPNF.FULL_NAME
 from per_all_people_f papf,
 per_all_assignments_f paaf,
 PER_PERSON_NAMES_F    PPNF
where papf.person_id = paaf.person_id
AND papf.person_id = PPNF.PERSON_ID
AND PAAF.PERSON_ID = PPNF.PERSON_ID
AND sysdate between PPNF.EFFECTIVE_START_DATE AND PPNF.EFFECTIVE_END_DATE 
AND sysdate between PAPF.EFFECTIVE_START_DATE AND PAPF.EFFECTIVE_END_DATE 
AND sysdate between PAaF.EFFECTIVE_START_DATE AND PAaF.EFFECTIVE_END_DATE 
AND PAAF.WORK_TERMS_ASSIGNMENT_ID IS NOT NULL
AND PPNF.NAME_TYPE = 'GLOBAL'
AND PAAF.SYSTEM_PERSON_TYPE = 'PWK'
and papf.person_id = :{PARAMETER.PERSONID}

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!