DBA Data[Home] [Help]

APPS.PER_PL_PERSON_EXTRA_INFO dependencies on HR_GENERAL

Line 32: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_INFORMATION_TYPE||'_FLEX'));

28: open csr_chk_contact;
29: fetch csr_chk_contact into person_type;
30: if csr_chk_contact%NOTFOUND then
31: hr_utility.set_message(800,'HR_CON_INVALID_DETAILS_PL');
32: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_INFORMATION_TYPE||'_FLEX'));
33: hr_utility.set_message_token('STARTDATE',to_char(fnd_date.canonical_to_date(P_FLEX_START_DATE),'DD/MM/RRRR'));
34: hr_utility.set_message_token('ENDDATE',nvl(to_char(fnd_date.canonical_to_date(P_FLEX_END_DATE),'DD/MM/RRRR'),'31/12/4712'));
35: -- This message will be 'These details can be entered only for a Contact. Person type is not a Contact for the date range'
36: hr_utility.raise_error;

Line 85: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_INFORMATION_TYPE||'_FLEX'));

81: fetch cur_inherit into vInherit;
82:
83: if cur_inherit%notfound then
84: hr_utility.set_message(800,'HR_CONTACT_INSURED_FLEX_PL');
85: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_INFORMATION_TYPE||'_FLEX'));
86: hr_utility.set_message_token('STARTDATE',to_char(fnd_date.canonical_to_date(P_FLEX_START_DATE),'DD/MM/RRRR'));
87: hr_utility.set_message_token('ENDDATE',nvl(to_char(fnd_date.canonical_to_date(P_FLEX_END_DATE),'DD/MM/RRRR'),'31/12/4712'));
88: hr_utility.raise_error;
89: end if;

Line 97: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_INFORMATION_TYPE||'_FLEX'));

93: open csr_overlap_rec;
94: fetch csr_overlap_rec into overlap_found;
95: if csr_overlap_rec%found then
96: hr_utility.set_message(800,'HR_CONTACT_OVERLAP_REC_PL');
97: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_INFORMATION_TYPE||'_FLEX'));
98: hr_utility.set_message_token('STARTDATE',to_char(fnd_date.canonical_to_date(P_FLEX_START_DATE),'DD/MM/RRRR'));
99: hr_utility.set_message_token('ENDDATE',nvl(to_char(fnd_date.canonical_to_date(P_FLEX_END_DATE),'DD/MM/RRRR'),'31/12/4712'));
100: hr_utility.raise_error;
101: end if;

Line 173: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_PEI_INFORMATION_CATEGORY||'_FLEX'));

169: fetch cur_inherit into vInherit;
170:
171: if cur_inherit%notfound then
172: hr_utility.set_message(800,'HR_CONTACT_INSURED_FLEX_PL');
173: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_PEI_INFORMATION_CATEGORY||'_FLEX'));
174: hr_utility.set_message_token('STARTDATE',to_char(fnd_date.canonical_to_date(P_FLEX_START_DATE),'DD/MM/RRRR'));
175: hr_utility.set_message_token('ENDDATE',nvl(to_char(fnd_date.canonical_to_date(P_FLEX_END_DATE),'DD/MM/RRRR'),'31/12/4712'));
176: hr_utility.raise_error;
177: end if;

Line 185: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_PEI_INFORMATION_CATEGORY||'_FLEX'));

181: open csr_chk_contact_date;
182: fetch csr_chk_contact_date into valid_contact_dates;
183: if csr_chk_contact_date%NOTFOUND then
184: hr_utility.set_message(800,'HR_CON_INVALID_DETAILS_PL');
185: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_PEI_INFORMATION_CATEGORY||'_FLEX'));
186: hr_utility.set_message_token('STARTDATE',to_char(fnd_date.canonical_to_date(P_FLEX_START_DATE),'DD/MM/RRRR'));
187: hr_utility.set_message_token('ENDDATE',nvl(to_char(fnd_date.canonical_to_date(P_FLEX_END_DATE),'DD/MM/RRRR'),'31/12/4712'));
188: -- This message will be 'These details can be entered only for a Contact. Person type is not a Contact for the date range'
189: hr_utility.raise_error;

Line 198: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_PEI_INFORMATION_CATEGORY||'_FLEX'));

194: open csr_overlap_upd_rec;
195: fetch csr_overlap_upd_rec into overlap_upd_found;
196: if csr_overlap_upd_rec%found then
197: hr_utility.set_message(800,'HR_CONTACT_OVERLAP_REC_PL');
198: hr_utility.set_message_token('CONTACTFLEX',hr_general.decode_lookup('PL_FORM_LABELS',P_PEI_INFORMATION_CATEGORY||'_FLEX'));
199: hr_utility.set_message_token('STARTDATE',to_char(fnd_date.canonical_to_date(P_FLEX_START_DATE),'DD/MM/RRRR'));
200: hr_utility.set_message_token('ENDDATE',nvl(to_char(fnd_date.canonical_to_date(P_FLEX_END_DATE),'DD/MM/RRRR'),'31/12/4712'));
201: hr_utility.raise_error;
202: end if;