DBA Data[Home] [Help]

APPS.HRSPINE dependencies on FND_MESSAGE

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2291:
2292: -- Invalid Business Rule
2293: hr_utility.set_location('Invalid Business Rule',1);
2294:
2295: fnd_message.set_name('PER', 'HR_289507_SPP_BR_INVALID');
2296: hr_utility.raise_error;
2297:
2298: end if;
2299:

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

2410: else
2411:
2412: -- Invalid Dependant Date
2413:
2414: fnd_message.set_name('PER', 'HR_289508_SPP_BR_DEP_DATE');
2415: hr_utility.raise_error;
2416:
2417: end if; -- End of dependant date set
2418: