DBA Data[Home] [Help]

PACKAGE: APPS.PER_IREC_ICD_ENRLL_PROCESS

Source


1 Package PER_IREC_ICD_ENRLL_PROCESS AUTHID CURRENT_USER as
2 /* $Header: periricd.pkh 120.3.12000000.1 2007/07/25 11:08:45 gaukumar noship $ */
3 
4 
5 --
6 --
7 -- ----------------------------------------------------------------------------
8 --  populate_Pay_Elements
9 --     called from concurrent process to populate Pay Elements :
10 --
11 -- ----------------------------------------------------------------------------
12 --
13 PROCEDURE populate_Pay_Elements
14             (  errbuf    out nocopy varchar2
15              , retcode   out nocopy number
16              , pBgId      in         number
17              , pVacancyid in         number   default null
18              , pPersonId  in         number   default null);
19 --
20 
21 --
22 --
23 -- ----------------------------------------------------------------------------
24 --  populate_for_bg
25 --
26 --
27 -- ----------------------------------------------------------------------------
28 --
29 PROCEDURE populate_for_bg
30             (  errbuf    out nocopy varchar2
31              , retcode   out nocopy number
32              , pBgId      in         number);
33 --
34 
35 --
36 --
37 -- ----------------------------------------------------------------------------
38 --  populate_for_vacancy
39 --
40 --
41 -- ----------------------------------------------------------------------------
42 --
43 PROCEDURE populate_for_vacancy
44             (  errbuf    out nocopy varchar2
45              , retcode   out nocopy number
46              , pVacancyId      in         number);
47 --
48 
49 --
50 --
51 -- ----------------------------------------------------------------------------
52 --  populate_Pay_Elements_for_vacancy
53 --
54 --
55 -- ----------------------------------------------------------------------------
56 --
57 PROCEDURE populate_for_person
58             (  errbuf    out nocopy varchar2
59              , retcode   out nocopy number
60              , pPersonId in         number);
61 --
62 
63 --
64 --
65 -- ----------------------------------------------------------------------------
66 --  is_offer_accepted_or_extended
67 --
68 --
69 -- ----------------------------------------------------------------------------
70 --
71 function is_offer_accepted_or_extended
72             (  pPersonId     in     number
73              , pAssignmentId in     number) RETURN boolean;
74 
75 --
76 --
77 -- ----------------------------------------------------------------------------
78 --  run_enrollment
79 --
80 --
81 -- ----------------------------------------------------------------------------
82 --
83 PROCEDURE run_enrollment
84             (  errbuf    out nocopy varchar2
85              , retcode   out nocopy number
86              , pPersonId     in     number
87              , pAssignmentId in     number
88              , pPerInLerId   in     number
89              , pBgId         in     number);
90 
91 END PER_IREC_ICD_ENRLL_PROCESS;