DBA Data[Home] [Help]

PACKAGE: APPS.PER_HRWF_SYNCH_COVER

Source


1 PACKAGE PER_HRWF_SYNCH_COVER AUTHID CURRENT_USER AS
2 /* $Header: perhrwfs.pkh 120.0.12020000.3 2013/05/10 12:58:38 pathota ship $ */
3 --
4   --
5   -- --------------------------------------------------------------------------
6   -- |-----------------------------< per_pds_wf >-----------------------------|
7   -- --------------------------------------------------------------------------
8   --
9   -- {Start Of Comments}
10   --
11   -- Description:
12   --
13   --   This procedure will act as a cover procedure for
14   --   PER_HRWF_SYNCH.PER_PDS_WF
15   --
16   -- Pre Conditions:
17   --   None.
18   --
19   -- In Arguments:
20   --   p_person_id
21   --   p_date
22   --   p_date_start Start date of the period of employment
23   --   p_action(TERMINATION, REVERSE TERMINATION)
24   --
25   -- Post Success:
26   --   Calls the actual procedure PER_HRWF_SYNCH.PER_PDS_WF
27   --
28   -- Post Failure:
29   --   None.
30   --
31   -- Access Status:
32   --   Internal Table Handler Use Only.
33   --
34   -- {End Of Comments}
35   -- ----------------------------------------------------------------------------
36      procedure per_pds_wf(
37                p_person_id            in number,
38                p_date                 in date default null,
39                p_date_start           in date,
40                p_action               in varchar2);
41   --
42   -- --------------------------------------------------------------------------
43   -- |-----------------------------< per_per_wf >-----------------------------|
44   -- --------------------------------------------------------------------------
45   --
46   -- {Start Of Comments}
47   --
48   -- Description:
49   --
50   --   This procedure will act as a cover procedure for
51   --   PER_HRWF_SYNCH.PER_PER_WF
52   --
53   -- Pre Conditions:
54   --   None.
55   --
56   -- In Arguments:
57   --   p_rec  per_per_shd.g_rec_type
58   --   p_action(INSERT, DELETE, UPDATE).
59   --
60   -- Post Success:
61   --   Calls the actual procedure PER_HRWF_SYNCH.PER_PER_WF
62   --
63   -- Post Failure:
64   --   None.
65   --
66   -- Access Status:
67   --   Internal Table Handler Use Only.
68   --
69   -- {End Of Comments}
70   -- ----------------------------------------------------------------------------
71      procedure per_per_wf(
72                p_rec                  in per_per_shd.g_rec_type,
73                p_action               in varchar2);
74 
75 --
76 
77 
78 END PER_HRWF_SYNCH_COVER;