DBA Data[Home] [Help]

APPS.HR_RO_CONTACT_REL_VAL dependencies on HR_GENERAL

Line 62: p_argument => hr_general.decode_lookup('RO_FORM_LABELS','NATIONAL_IDENTIFIER'),

58: );
59: -- NPC/FRN mandatory
60: hr_api.mandatory_arg_error
61: (p_api_name => l_proc,
62: p_argument => hr_general.decode_lookup('RO_FORM_LABELS','NATIONAL_IDENTIFIER'),
63: p_argument_value => p_national_identifier
64: );
65:
66: IF nvl(p_national_identifier,hr_api.g_varchar2) <> hr_api.g_varchar2 THEN

Line 172: OR nvl(date_end,hr_general.end_of_time) <= nvl(p_date_end,hr_general.end_of_time));

168: and person_id = p_person_id
169: and contact_type in ('EC','ES','PR1','PR2','OTH')
170: and P_CONTACT_TYPE in ('EC','ES','PR1','PR2','OTH')
171: and (date_start >= p_date_start
172: OR nvl(date_end,hr_general.end_of_time) <= nvl(p_date_end,hr_general.end_of_time));
173:
174: cursor csr_dob_contact is
175: select date_of_birth from per_all_people_f where person_id = P_CONTACT_PERSON_ID;
176:

Line 251: OR nvl(date_end,hr_general.end_of_time) <= nvl(p_date_end,hr_general.end_of_time));

247: and contact_relationship_id <> p_contact_relationship_id
248: and contact_type in ('EC','ES','PR1','PR2','OTH')
249: and P_CONTACT_TYPE in ('EC','ES','PR1','PR2','OTH')
250: and (date_start >= p_date_start
251: OR nvl(date_end,hr_general.end_of_time) <= nvl(p_date_end,hr_general.end_of_time));
252:
253: cursor csr_dob_contact is
254: select date_of_birth from per_all_people_f where person_id in (select contact_person_id from
255: per_contact_relationships where contact_relationship_id = P_CONTACT_RELATIONSHIP_ID);