DBA Data[Home] [Help]

PACKAGE: APPS.PAY_GROSSUP_BAL_EXCL_API

Source


1 Package pay_grossup_bal_excl_api AUTHID CURRENT_USER as
2 /* $Header: pygbeapi.pkh 115.1 2003/01/28 11:14:07 dsaxby noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |------------------------< create_grossup_bal >------------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:
10 --
11 -- Prerequisites:
12 --
13 --
14 -- In Parameters:
15 --   Name                           Reqd Type     Description
16 --
17 -- Post Success:
18 --
19 -- Out Parameters:
20 --   Name                                Type     Description
21 --
22 -- Post Failure:
23 --
24 -- Access Status:
25 --   Public.
26 --
27 -- {End Of Comments}
28 --
29 procedure create_grossup_bal
30 (
31    p_validate                       in            boolean default false
32   ,p_start_date                     in            date
33   ,p_end_date                       in            date
34   ,p_source_id                      in            number
35   ,p_source_type                    in            varchar2
36   ,p_balance_type_id                in            number
37   ,p_grossup_balances_id               out nocopy number
38   ,p_object_version_number             out nocopy number
39 );
40 -- ----------------------------------------------------------------------------
41 -- |------------------------< update_grossup_bal >------------------------|
42 -- ----------------------------------------------------------------------------
43 -- {Start Of Comments}
44 --
45 -- Description:
46 --
47 -- Prerequisites:
48 --
49 --
50 -- In Parameters:
51 --   Name                           Reqd Type     Description
52 --
53 -- Post Success:
54 --
55 -- Out Parameters:
56 --   Name                                Type     Description
57 --
58 -- Post Failure:
59 --
60 -- Access Status:
61 --   Public.
62 --
63 -- {End Of Comments}
64 --
65 procedure update_grossup_bal
66 (
67    p_validate                     in     boolean default false
68   ,p_grossup_balances_id          in     number
69   ,p_object_version_number        in out nocopy number
70   ,p_start_date                   in     date      default hr_api.g_date
71   ,p_end_date                     in     date      default hr_api.g_date
72   ,p_source_id                    in     number    default hr_api.g_number
73   ,p_source_type                  in     varchar2  default hr_api.g_varchar2
74   ,p_balance_type_id              in     number    default hr_api.g_number
75 );
76 --
77 -- ----------------------------------------------------------------------------
78 -- |------------------------< delete_grossup_bal >------------------------|
79 -- ----------------------------------------------------------------------------
80 -- {Start Of Comments}
81 --
82 -- Description:
83 --
84 -- Prerequisites:
85 --
86 --
87 -- In Parameters:
88 --   Name                           Reqd Type     Description
89 --
90 -- Post Success:
91 --
92 -- Out Parameters:
93 --   Name                                Type     Description
94 --
95 -- Post Failure:
96 --
97 -- Access Status:
98 --   Public.
99 --
100 -- {End Of Comments}
101 --
102 procedure delete_grossup_bal
103 (
104    p_validate                       in     boolean default false
105   ,p_grossup_balances_id                  in     number
106   ,p_object_version_number                in     number
107 );
108 --
109 -- ----------------------------------------------------------------------------
110 -- |------------------------< lck_grossup_bal >------------------------|
111 -- ----------------------------------------------------------------------------
112 -- {Start Of Comments}
113 --
114 -- Description:
115 --
116 -- Prerequisites:
117 --
118 --
119 -- In Parameters:
120 --   Name                           Reqd Type     Description
121 --
122 -- Post Success:
123 --
124 -- Out Parameters:
125 --   Name                                Type     Description
126 --
127 -- Post Failure:
128 --
129 -- Access Status:
130 --   Public.
131 --
132 -- {End Of Comments}
133 --
134 procedure lck_grossup_bal
135 (
136    p_grossup_balances_id                  in     number
137   ,p_object_version_number                in     number
138 );
139 --
140 end pay_grossup_bal_excl_api;