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
Learn about the new Oracle AI Agent Studio for Fusion Applications: Watch Now

Progress with Redwood: Redwood Resources for Oracle Cloud HCM -  Go Here
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.

For more information, please refer to this announcement explaining best practices for getting answers to questions.

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!