DBA Data[Home] [Help]

APPS.HRSPINE dependencies on FND_MESSAGE

Line 413: fnd_message.set_name('PER', 'HR_289506_SPP_BR_NULL');

409: if p_br_date_from is not null
410: or p_br_date_to is not null
411: or p_dependant_date is not null then
412:
413: fnd_message.set_name('PER', 'HR_289506_SPP_BR_NULL');
414: hr_utility.raise_error;
415:
416: end if;
417:

Line 442: fnd_message.set_name('PER', 'HR_289507_SPP_BR_INVALID');

438: --
439:
440: if p_business_rule not IN ('AOJ','DOB','ASD','LHD') then
441:
442: fnd_message.set_name('PER', 'HR_289507_SPP_BR_INVALID');
443: hr_utility.raise_error;
444:
445: end if;
446:

Line 454: fnd_message.set_name('PER', 'HR_289510_SPP_BR_DATE_NULL');

450: --
451: if p_br_date_from is null
452: or p_br_date_to is null then
453:
454: fnd_message.set_name('PER', 'HR_289510_SPP_BR_DATE_NULL');
455: hr_utility.raise_error;
456:
457: elsif nvl(l_br_date_to,l_br_date_from) < nvl(l_br_date_from,l_br_date_to) then
458:

Line 462: fnd_message.set_name('PER', 'HR_289500_SPP_BR_DATE');

458:
459: -- The business rule date from is greater than the date to
460: -- so raise an error accordingly
461:
462: fnd_message.set_name('PER', 'HR_289500_SPP_BR_DATE');
463: hr_utility.raise_error;
464:
465: elsif nvl(l_br_date_to,l_br_date_from) >= nvl(l_br_date_from,l_br_date_to) then
466:

Line 474: fnd_message.set_name('PER', 'HR_289501_SPP_BR_YEAR_GREATER');

470: if months_between (l_br_date_to,l_br_date_from) >= 12 then
471:
472: -- Gap is greater than one year, so raise error
473:
474: fnd_message.set_name('PER', 'HR_289501_SPP_BR_YEAR_GREATER');
475: hr_utility.raise_error;
476:
477: end if;
478:

Line 488: fnd_message.set_name('PER', 'HR_289502_SPP_DEPEND_DATE');

484: if p_dependant_date is null then
485:
486: -- raise error as process doesn't know what date to increment assignments on
487:
488: fnd_message.set_name('PER', 'HR_289502_SPP_DEPEND_DATE');
489: hr_utility.raise_error;
490:
491: end if;
492:

Line 508: fnd_message.set_name('PER', 'HR_289503_SPP_EFF_BR_DATE');

504: --
505: -- Raise error due to effective date not being between business rule dates
506: --
507:
508: fnd_message.set_name('PER', 'HR_289503_SPP_EFF_BR_DATE');
509: hr_utility.raise_error;
510:
511: end if;
512:

Line 523: fnd_message.set_name('PER', 'HR_289504_SPP_BR_YEAR_FROM_TO');

519: --
520: -- Raise error due to year from being greater than the year to
521: --
522:
523: fnd_message.set_name('PER', 'HR_289504_SPP_BR_YEAR_FROM_TO');
524: hr_utility.raise_error;
525:
526: end if;
527:

Line 1193: fnd_message.set_name('PER', 'HR_289280_SPP_INC_ORG_STRUCT');

1189: if p_org_structure_top_node is null
1190: or p_org_structure_ver_id is null
1191: then
1192: -- Raise error
1193: fnd_message.set_name('PER', 'HR_289280_SPP_INC_ORG_STRUCT');
1194: hr_utility.raise_error;
1195: end if;
1196: end if;
1197: --

Line 1206: fnd_message.set_name('PER', 'HR_289290_SPP_INC_QUAL');

1202: then
1203: if p_qual_type is null
1204: then
1205: -- Raise error
1206: fnd_message.set_name('PER', 'HR_289290_SPP_INC_QUAL');
1207: hr_utility.raise_error;
1208: end if;
1209: end if;
1210: --

Line 1219: fnd_message.set_name('PER', 'HR_289291_SPP_INC_LEGAL_ENTITY');

1215: if p_legal_entity is not null then
1216: open csr_legal_entity;
1217: fetch csr_legal_entity into l_dummy;
1218: if csr_legal_entity%notfound then
1219: fnd_message.set_name('PER', 'HR_289291_SPP_INC_LEGAL_ENTITY');
1220: hr_utility.raise_error;
1221: end if;
1222: close csr_legal_entity;
1223: end if;

Line 2288: fnd_message.set_name('PER', 'HR_289507_SPP_BR_INVALID');

2284:
2285: -- Invalid Business Rule
2286: hr_utility.set_location('Invalid Business Rule',1);
2287:
2288: fnd_message.set_name('PER', 'HR_289507_SPP_BR_INVALID');
2289: hr_utility.raise_error;
2290:
2291: end if;
2292:

Line 2407: fnd_message.set_name('PER', 'HR_289508_SPP_BR_DEP_DATE');

2403: else
2404:
2405: -- Invalid Dependant Date
2406:
2407: fnd_message.set_name('PER', 'HR_289508_SPP_BR_DEP_DATE');
2408: hr_utility.raise_error;
2409:
2410: end if; -- End of dependant date set
2411: