DBA Data[Home] [Help]

PACKAGE: APPS.PSP_TEMPLATE_DETAILS_SWI

Source


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