Get Started with Redwood for Oracle Cloud HCM Begin Now
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.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
Binding a Person id to table type value sets
Summary
we have a requirement where one of the attribute of Document of Record DFF has to show drop down of all dependent ,we are using Table type value Sets .Currently facing achallege in Binding Person IDContent
We wre using the below SQL. But it is throwing an error.Can any suggest how to bind a person id to a Table type value sets
select pcr.CONTACT_PERSON_ID
from per_contact_relationships pcr,per_all_people_f papf
where trunc(sysdate) between papf.effective_start_date and papf.effective_end_date
--and person_id='300000009478361'
and pcr.person_id =:{PARAMETER.PERSON_ID}
0