DBA Data[Home] [Help]

PACKAGE: APPS.HR_QUEST_FIELDS_SWI

Source


1 Package hr_quest_fields_swi As
2 /* $Header: hrqsfswi.pkh 120.0 2005/05/31 02:28:32 appldev noship $ */
3 -- ----------------------------------------------------------------------------
4 -- |--------------------------< insert_quest_fields >-------------------------|
5 -- ----------------------------------------------------------------------------
6 -- {Start of comments}
7 --
8 -- Description:
9 --  This procedure is the self-service wrapper procedure to the following
10 --  API: hr_quest_fields_api.insert_quest_fields
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 insert_quest_fields
27   (p_field_id                     in	 number
28   ,p_questionnaire_template_id    in     number
29   ,p_name                         in     varchar2
30   ,p_type                         in     varchar2
31   ,p_html_text                    in     varchar2
32   ,p_sql_required_flag            in     varchar2
33   ,p_sql_text                     in     varchar2  default hr_api.g_varchar2
34   ,p_object_version_number        out    nocopy number
35   ,p_effective_date               in     date
36   ,p_validate			  in	 number default hr_api.g_false_num
37   ,p_return_status                out	 nocopy varchar2
38   );
39 
40 -- ----------------------------------------------------------------------------
41 -- |---------------------------< update_quest_fields >------------------------|
42 -- ----------------------------------------------------------------------------
43 -- {Start of comments}
44 --
45 -- Description:
46 --  This procedure is the self-service wrapper procedure to the following
47 --  API: hr_quest_fields_api.update_quest_fields
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_quest_fields
64   (p_field_id                     in     number
65   ,p_sql_text                     in     varchar2  default hr_api.g_varchar2
66   ,p_object_version_number        in out nocopy number
67   ,p_effective_date               in     date
68   ,p_validate			  in	 number default hr_api.g_false_num
69   ,p_return_status                out	 nocopy varchar2
70   );
71 
72 -- ----------------------------------------------------------------------------
73 -- |-------------------------< delete_quest_fields >--------------------------|
74 -- ----------------------------------------------------------------------------
75 -- {Start of comments}
76 --
77 -- Description:
78 --  This procedure is the self-service wrapper procedure to the following
79 --  API: hr_quest_fields_api.delete_quest_fields
80 --
81 -- Pre-requisites
82 --  All 'IN' parameters to this procedure have been appropriately derived.
83 --
84 -- Post Success:
85 --  p_return_status will return value indicating success.
86 --
87 -- Post Failure:
88 --  p_return_status will return value indication failure.
89 --
90 -- Access Status:
91 --  Internal Development use only.
92 --
93 -- {End of comments}
94 -- ----------------------------------------------------------------------------
95 PROCEDURE delete_quest_fields
96   (p_field_id                     in     number
97   ,p_object_version_number        in     number
98   ,p_validate			  in	 number default hr_api.g_false_num
99   ,p_return_status                out	 nocopy varchar2
100   );
101 
102 PROCEDURE delete_quest_fields
103   (p_field_id                     in     number
104   ,p_validate			  in	 number default hr_api.g_false_num
105   ,p_return_status                out	 nocopy varchar2
106   );
107 
108 end hr_quest_fields_swi;