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