DBA Data[Home] [Help]

APPS.HR_DE_EXTRA_API_CHECKS dependencies on HR_UTILITY

Line 154: hr_utility.set_message(800, p_message_name);

150: --
151: -- Format is invalid.
152: --
153: WHEN invalid_format THEN
154: hr_utility.set_message(800, p_message_name);
155: hr_utility.raise_error;
156: END validate_betriebsnummer;
157: --
158: --

Line 155: hr_utility.raise_error;

151: -- Format is invalid.
152: --
153: WHEN invalid_format THEN
154: hr_utility.set_message(800, p_message_name);
155: hr_utility.raise_error;
156: END validate_betriebsnummer;
157: --
158: --
159: -- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Line 195: hr_utility.set_message(800, 'HR_DE_INVALID_UNION_FLAG');

191: --
192: -- Check that the union member flag has not been set.
193: --
194: If p_labour_union_member_flag IS NOT NULL THEN
195: hr_utility.set_message(800, 'HR_DE_INVALID_UNION_FLAG');
196: hr_utility.raise_error;
197: END IF;
198: --
199: --

Line 196: hr_utility.raise_error;

192: -- Check that the union member flag has not been set.
193: --
194: If p_labour_union_member_flag IS NOT NULL THEN
195: hr_utility.set_message(800, 'HR_DE_INVALID_UNION_FLAG');
196: hr_utility.raise_error;
197: END IF;
198: --
199: --
200: -- Check that the SCL is valid.

Line 384: hr_utility.set_message(800, 'HR_DE_MILITARY_SERVICE_DATES');

380: --
381: -- Date From is not on or before Date To.
382: --
383: WHEN military_service_dates THEN
384: hr_utility.set_message(800, 'HR_DE_MILITARY_SERVICE_DATES');
385: hr_utility.raise_error;
386: --
387: --
388: -- Effective Date is not on or before Expiry Date.

Line 385: hr_utility.raise_error;

381: -- Date From is not on or before Date To.
382: --
383: WHEN military_service_dates THEN
384: hr_utility.set_message(800, 'HR_DE_MILITARY_SERVICE_DATES');
385: hr_utility.raise_error;
386: --
387: --
388: -- Effective Date is not on or before Expiry Date.
389: --

Line 391: hr_utility.set_message(800, 'HR_DE_PERMIT_DATES');

387: --
388: -- Effective Date is not on or before Expiry Date.
389: --
390: WHEN permit_dates THEN
391: hr_utility.set_message(800, 'HR_DE_PERMIT_DATES');
392: hr_utility.raise_error;
393: END person_information_checks;
394: --
395: --

Line 392: hr_utility.raise_error;

388: -- Effective Date is not on or before Expiry Date.
389: --
390: WHEN permit_dates THEN
391: hr_utility.set_message(800, 'HR_DE_PERMIT_DATES');
392: hr_utility.raise_error;
393: END person_information_checks;
394: --
395: --
396: -- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Line 482: hr_utility.set_message(800, 'HR_DE_STOP_DATE_TOO_EARLY');

478: --
479: -- Work stop date is before the work incident date.
480: --
481: WHEN work_stop_date_too_early THEN
482: hr_utility.set_message(800, 'HR_DE_STOP_DATE_TOO_EARLY');
483: hr_utility.raise_error;
484: --
485: --
486: -- Payment stop date is before the work incident date.

Line 483: hr_utility.raise_error;

479: -- Work stop date is before the work incident date.
480: --
481: WHEN work_stop_date_too_early THEN
482: hr_utility.set_message(800, 'HR_DE_STOP_DATE_TOO_EARLY');
483: hr_utility.raise_error;
484: --
485: --
486: -- Payment stop date is before the work incident date.
487: --

Line 489: hr_utility.set_message(800, 'HR_DE_PYMNT_DATE_TOO_EARLY');

485: --
486: -- Payment stop date is before the work incident date.
487: --
488: WHEN payment_end_date_too_early THEN
489: hr_utility.set_message(800, 'HR_DE_PYMNT_DATE_TOO_EARLY');
490: hr_utility.raise_error;
491: --
492: --
493: -- Work resumption date is before the work incident date.

Line 490: hr_utility.raise_error;

486: -- Payment stop date is before the work incident date.
487: --
488: WHEN payment_end_date_too_early THEN
489: hr_utility.set_message(800, 'HR_DE_PYMNT_DATE_TOO_EARLY');
490: hr_utility.raise_error;
491: --
492: --
493: -- Work resumption date is before the work incident date.
494: --

Line 496: hr_utility.set_message(800, 'HR_DE_RESUMP_DATE_TOO_EARLY');

492: --
493: -- Work resumption date is before the work incident date.
494: --
495: WHEN work_resump_date_too_early THEN
496: hr_utility.set_message(800, 'HR_DE_RESUMP_DATE_TOO_EARLY');
497: hr_utility.raise_error;
498: --
499: --
500: -- Job start date is after the work incident date.

Line 497: hr_utility.raise_error;

493: -- Work resumption date is before the work incident date.
494: --
495: WHEN work_resump_date_too_early THEN
496: hr_utility.set_message(800, 'HR_DE_RESUMP_DATE_TOO_EARLY');
497: hr_utility.raise_error;
498: --
499: --
500: -- Job start date is after the work incident date.
501: --

Line 503: hr_utility.set_message(800, 'HR_DE_JOB_START_DATE_TOO_LATE');

499: --
500: -- Job start date is after the work incident date.
501: --
502: WHEN job_start_date_too_late THEN
503: hr_utility.set_message(800, 'HR_DE_JOB_START_DATE_TOO_LATE');
504: hr_utility.raise_error;
505: --
506: --
507: -- Work Stop Date is after the Work Resumption Date.

Line 504: hr_utility.raise_error;

500: -- Job start date is after the work incident date.
501: --
502: WHEN job_start_date_too_late THEN
503: hr_utility.set_message(800, 'HR_DE_JOB_START_DATE_TOO_LATE');
504: hr_utility.raise_error;
505: --
506: --
507: -- Work Stop Date is after the Work Resumption Date.
508: --

Line 510: hr_utility.set_message(800, 'HR_DE_RESUMP_BEFORE_STOP_DATE');

506: --
507: -- Work Stop Date is after the Work Resumption Date.
508: --
509: WHEN resump_date_before_stop_date THEN
510: hr_utility.set_message(800, 'HR_DE_RESUMP_BEFORE_STOP_DATE');
511: hr_utility.raise_error;
512: END work_incident_checks;
513: END hr_de_extra_api_checks;

Line 511: hr_utility.raise_error;

507: -- Work Stop Date is after the Work Resumption Date.
508: --
509: WHEN resump_date_before_stop_date THEN
510: hr_utility.set_message(800, 'HR_DE_RESUMP_BEFORE_STOP_DATE');
511: hr_utility.raise_error;
512: END work_incident_checks;
513: END hr_de_extra_api_checks;