DBA Data[Home] [Help]

PACKAGE: APPS.PAY_USER_ROW_SWI

Source


1 Package pay_user_row_swi AUTHID CURRENT_USER As
2 /* $Header: pypurswi.pkh 120.0 2005/05/29 08:02 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |----------------------------< create_user_row >---------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: pay_user_row_api.create_user_row
11 --
12 -- Pre-requisites
13 --  All 'IN' parameters to this procedure have been appropriately derived.
14 --
15 -- Post Success:
16 --  p_return_status will return value indicating success.
17 --
18 -- Post Failure:
19 --  p_return_status will return value indication failure.
20 --
21 -- Access Status:
22 --  Internal Development use only.
23 --
24 -- {End of comments}
25 -- ----------------------------------------------------------------------------
26 PROCEDURE create_user_row
27  (p_validate                     in     number    default hr_api.g_false_num
28   ,p_effective_date               in     date
29   ,p_user_table_id                in     number
30   ,p_row_low_range_or_name        in     varchar2
31   ,p_display_sequence             in out nocopy number
32   ,p_business_group_id            in     number    default null
33   ,p_legislation_code             in     varchar2  default null
34   ,p_disable_range_overlap_check  in     number    default null
35   ,p_disable_units_check          in     number    default null
36   ,p_row_high_range               in     varchar2  default null
37   ,p_user_row_id                     out nocopy number
38   ,p_object_version_number           out nocopy number
39   ,p_effective_start_date            out nocopy date
40   ,p_effective_end_date              out nocopy date
41    ,p_return_status                   out nocopy varchar2
42   );
43 -- ----------------------------------------------------------------------------
44 -- |----------------------------< update_user_row >---------------------------|
45 -- ----------------------------------------------------------------------------
46 -- {Start of comments}
47 --
48 -- Description:
49 --  This procedure is the self-service wrapper procedure to the following
50 --  API: pay_user_row_api.update_user_row
51 --
52 -- Pre-requisites
53 --  All 'IN' parameters to this procedure have been appropriately derived.
54 --
55 -- Post Success:
56 --  p_return_status will return value indicating success.
57 --
58 -- Post Failure:
59 --  p_return_status will return value indication failure.
60 --
61 -- Access Status:
62 --  Internal Development use only.
63 --
64 -- {End of comments}
65 -- ----------------------------------------------------------------------------
66 PROCEDURE update_user_row
67  (p_validate                     in     number    default hr_api.g_false_num
68   ,p_effective_date               in     date
69   ,p_datetrack_update_mode        in     varchar2
70   ,p_user_row_id                  in     number
71   ,p_display_sequence             in out nocopy number
72   ,p_object_version_number        in out nocopy number
73   ,p_row_low_range_or_name        in     varchar2  default hr_api.g_varchar2
74   ,p_disable_range_overlap_check  in     number    default null
75   ,p_disable_units_check          in     number    default null
76   ,p_row_high_range               in     varchar2  default hr_api.g_varchar2
77   ,p_effective_start_date            out nocopy date
78   ,p_effective_end_date              out nocopy date
79   ,p_return_status                   out nocopy varchar2
80 
81   );
82 -- ----------------------------------------------------------------------------
83 -- |----------------------------< delete_user_row >---------------------------|
84 -- ----------------------------------------------------------------------------
85 -- {Start of comments}
86 --
87 -- Description:
88 --  This procedure is the self-service wrapper procedure to the following
89 --  API: pay_user_row_api.delete_user_row
90 --
91 -- Pre-requisites
92 --  All 'IN' parameters to this procedure have been appropriately derived.
93 --
94 -- Post Success:
95 --  p_return_status will return value indicating success.
96 --
97 -- Post Failure:
98 --  p_return_status will return value indication failure.
99 --
100 -- Access Status:
101 --  Internal Development use only.
102 --
103 -- {End of comments}
104 -- ----------------------------------------------------------------------------
105 PROCEDURE delete_user_row
106   (p_validate                     in     number    default hr_api.g_false_num
107   ,p_effective_date               in     date
108   ,p_datetrack_update_mode        in     varchar2
109   ,p_user_row_id                  in     number
110   ,p_object_version_number        in out nocopy number
111   ,p_disable_range_overlap_check  in     number    default null
112   ,p_effective_start_date            out nocopy date
113   ,p_effective_end_date              out nocopy date
114   ,p_return_status                   out nocopy varchar2
115 
116   );
117  end pay_user_row_swi;