Need to display Pending Worker Details in Configurable Forms (PER_PERSON_ALLOCATED_TASKS_DFF)
Summary
Performer needs to see the Pending Worker detailsContent
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
20CCode 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}                
            Tagged:
            
        
0