DBA Data[Home] [Help]

PACKAGE: APPS.HR_DE_EXTRA_WORK_INC_CHECKS

Source


1 PACKAGE hr_de_extra_work_inc_checks AS
2   /* $Header: pedeincv.pkh 120.0.12000000.1 2007/01/21 21:49:28 appldev ship $ */
3   --
4   --
5   -- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
6   -- Work Incident checks.
7   --
8   -- 1. The Work Stop Date (p_inc_information10) must be on or after Work Incident Date
9   --    (p_incident_date).
10   --
11   -- 2. The Payment End Date (p_inc_information9) must be on or after Work Incident Date
12   --    (p_incident_date).
13   --
14   -- 3. The Work Resumption Date (p_inc_information11) must be on or after Work Incident Date
15   --    (p_incident_date).
16   --
17   -- 4. The Job Start Date (p_inc_information3) must be on or before Work Incident Date
18   --    (p_incident_date).
19   --
20   -- 5. The Work Stop Date (p_inc_information10) must be on or before Work Resumption Date
21   --    (p_inc_information11).
22   -- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
23   --
24   PROCEDURE work_incident_checks
25   (p_incident_date     IN DATE
26   ,p_inc_information3  IN VARCHAR2
27   ,p_inc_information9  IN VARCHAR2
28   ,p_inc_information10 IN VARCHAR2
29   ,p_inc_information11 IN VARCHAR2);
30 END hr_de_extra_work_inc_checks;