DBA Data[Home] [Help]

APPS.PER_ZA_ASS_SHD dependencies on FND_MESSAGE

Line 230: l_message := fnd_message.get_string('PAY','PER_74516_DATE_FROM_DATE_TO');

226: if p_date_from is not null and p_date_to is not null and
227: p_date_from > p_date_to
228: then
229: hr_utility.set_location(' Entering:'||l_proc, 20);
230: l_message := fnd_message.get_string('PAY','PER_74516_DATE_FROM_DATE_TO');
231: fnd_message.set_encoded(l_message);
232: -- l_message := substr(l_message, 1, 30);
233: hr_utility.set_message(801, 'PER_74516_DATE_FROM_DATE_TO');
234: -- hr_utility.set_message(801,l_message);

Line 231: fnd_message.set_encoded(l_message);

227: p_date_from > p_date_to
228: then
229: hr_utility.set_location(' Entering:'||l_proc, 20);
230: l_message := fnd_message.get_string('PAY','PER_74516_DATE_FROM_DATE_TO');
231: fnd_message.set_encoded(l_message);
232: -- l_message := substr(l_message, 1, 30);
233: hr_utility.set_message(801, 'PER_74516_DATE_FROM_DATE_TO');
234: -- hr_utility.set_message(801,l_message);
235: hr_utility.raise_error;

Line 243: l_message := fnd_message.get_string('PAY','PER_74517_DATE_FROM_DATE_ASS');

239: if p_date_from is not null and p_date_of_assessment is not null and
240: p_date_from > p_date_of_assessment
241: then
242: hr_utility.set_location(' Entering:'||l_proc, 30);
243: l_message := fnd_message.get_string('PAY','PER_74517_DATE_FROM_DATE_ASS');
244: hr_utility.set_message(801,l_message);
245: hr_utility.raise_error;
246: end if;
247:

Line 253: l_message := fnd_message.get_string('PAY','PER_74518_DATE_ASS_DATE_TO');

249: if p_date_of_assessment is not null and p_date_to is not null and
250: p_date_of_assessment > p_date_to
251: then
252: hr_utility.set_location(' Entering:'||l_proc, 40);
253: l_message := fnd_message.get_string('PAY','PER_74518_DATE_ASS_DATE_TO');
254: hr_utility.set_message(801,l_message);
255: hr_utility.raise_error;
256: end if;
257:

Line 263: l_message := fnd_message.get_string('PAY','PER_74519_DATE_CERT_DATE_ASS');

259: if p_certification_date is not null and p_date_of_assessment is not null and
260: p_certification_date < p_date_of_assessment
261: then
262: hr_utility.set_location(' Entering:'||l_proc, 50);
263: l_message := fnd_message.get_string('PAY','PER_74519_DATE_CERT_DATE_ASS');
264: hr_utility.set_message(801,l_message);
265: hr_utility.raise_error;
266: end if;
267:

Line 273: l_message := fnd_message.get_string('PAY','PER_74520_DATE_ACCR_DATE_CERT');

269: if p_date_of_accreditation is not null and p_certification_date is not null and
270: p_date_of_accreditation < p_certification_date
271: then
272: hr_utility.set_location(' Entering:'||l_proc, 60);
273: l_message := fnd_message.get_string('PAY','PER_74520_DATE_ACCR_DATE_CERT');
274: hr_utility.set_message(801,l_message);
275: hr_utility.raise_error;
276: end if;
277:

Line 283: l_message := fnd_message.get_string('PAY','PER_74521_EXP_DATE_CERT_DATE');

279: if p_certification_expiry_date is not null and p_certification_date is not null and
280: p_certification_expiry_date >= p_certification_date
281: then
282: hr_utility.set_location(' Entering:'||l_proc, 70);
283: l_message := fnd_message.get_string('PAY','PER_74521_EXP_DATE_CERT_DATE');
284: hr_utility.set_message(801,l_message);
285: hr_utility.raise_error;
286: end if;
287: