DBA Data[Home] [Help]

PACKAGE: APPS.PSP_PERIOD_FREQUENCY_SWI

Source


1 Package psp_period_frequency_swi As
2 /* $Header: PSPFBSWS.pls 120.0 2005/06/02 15:55 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |------------------------< create_period_frequency >-----------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: psp_period_frequency_api.create_period_frequency
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_period_frequency
27   ( p_validate                      in     number    default hr_api.g_false_num
28     ,p_start_date                   in     date
29     ,p_unit_of_measure              in     varchar2
30     ,p_period_duration              in     number
31     ,p_report_type                  in     varchar2  default null
32     ,p_period_frequency             in     varchar2
33     ,p_language_code                in     varchar2  default hr_api.userenv_lang
34     ,p_period_frequency_id          in     number
35     ,p_object_version_number           out nocopy number
36     ,p_api_warning                     out nocopy varchar2
37     ,p_return_status                   out nocopy varchar2
38   );
39 -- ----------------------------------------------------------------------------
40 -- |------------------------< update_period_frequency >-----------------------|
41 -- ----------------------------------------------------------------------------
42 -- {Start of comments}
43 --
44 -- Description:
45 --  This procedure is the self-service wrapper procedure to the following
46 --  API: psp_period_frequency_api.update_period_frequency
47 --
48 -- Pre-requisites
49 --  All 'IN' parameters to this procedure have been appropriately derived.
50 --
51 -- Post Success:
52 --  p_return_status will return value indicating success.
53 --
54 -- Post Failure:
55 --  p_return_status will return value indication failure.
56 --
57 -- Access Status:
58 --  Internal Development use only.
59 --
60 -- {End of comments}
61 -- ----------------------------------------------------------------------------
62 PROCEDURE update_period_frequency
63   ( p_validate                     in     number default hr_api.g_false_num
64    ,p_start_date                   in     date
65    ,p_unit_of_measure              in     varchar2
66    ,p_period_duration              in     number
67    ,p_report_type                  in     varchar2  default hr_api.g_varchar2
68    ,p_period_frequency             in     varchar2
69    ,p_period_frequency_id          in     number
70    ,p_object_version_number        in out nocopy number
71    ,p_api_warning                     out nocopy varchar2
72    ,p_return_status                   out nocopy varchar2
73   );
74 -- ----------------------------------------------------------------------------
75 -- |------------------------< delete_period_frequency >-----------------------|
76 -- ----------------------------------------------------------------------------
77 -- {Start of comments}
78 --
79 -- Description:
80 --  This procedure is the self-service wrapper procedure to the following
81 --  API: psp_period_frequency_api.delete_period_frequency
82 --
83 -- Pre-requisites
84 --  All 'IN' parameters to this procedure have been appropriately derived.
85 --
86 -- Post Success:
87 --  p_return_status will return value indicating success.
88 --
89 -- Post Failure:
90 --  p_return_status will return value indication failure.
91 --
92 -- Access Status:
93 --  Internal Development use only.
94 --
95 -- {End of comments}
96 -- ----------------------------------------------------------------------------
97 PROCEDURE delete_period_frequency
98   ( p_validate                     in     number   default hr_api.g_false_num
99    ,p_period_frequency_id          in     number
100    ,p_object_version_number        in out nocopy number
101    ,p_api_warning                     out nocopy varchar2
102    ,p_return_status                   out nocopy varchar2
103   );
104  end psp_period_frequency_swi;