DBA Data[Home] [Help]

PACKAGE: APPS.HR_QUEST_ANSWER_API

Source


1 Package hr_quest_answer_api AUTHID CURRENT_USER as
2 /* $Header: hrqsaapi.pkh 120.0 2005/05/31 02:25:38 appldev noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |--------------------------< create_quest_answer >--------------------------|
6 -- ----------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 -- Description:This procedure is the API wrapper procedure to the following
10 --
11 --  RHI: hr_qsa_ins.ins
12 --
13 -- Pre-requisites
14 --
15 --  All 'IN' parameters to this procedure have been appropriately derived.
16 --
17 -- Post Success:
18 --
19 --  p_questionnaire_answer_id  will have generated and surrogate value.
20 --
21 -- Post Failure:
22 --
23 --  p_questionnaire_answer_id  will have null.
24 --
25 -- Access Status:
26 --
27 --  Internal Development use only.
28 --
29 -- {End of comments}
30 --
31 procedure create_quest_answer
32   ( p_validate                       in     boolean  default false
33    ,p_effective_date                 in     date
34    ,p_questionnaire_template_id      in     number
35    ,p_type                           in     varchar2
36    ,p_type_object_id                 in     number
37    ,p_business_group_id              in     number
38    ,p_questionnaire_answer_id           out nocopy number
39   );
40 
41 --
42 -- ----------------------------------------------------------------------------
43 -- |--------------------------< update_quest_answer >--------------------------|
44 -- ----------------------------------------------------------------------------
45 -- {Start Of Comments}
46 --
47 -- Description:This procedure is the API wrapper procedure to the following
48 --
49 --  RHI: hr_qsa_upd.upd
50 --
51 -- Pre-requisites
52 --
53 --  All 'IN' parameters to this procedure have been appropriately derived.
54 --
55 -- Post Success:
56 --
57 --
58 -- Post Failure:
59 --
60 --
61 --
62 -- Access Status:
63 --
64 --  Internal Development use only.
65 --
66 -- {End of comments}
67 --
68 
69 procedure update_quest_answer
70   (
71     p_validate                     in     boolean  default false
72    ,p_effective_date               in     date
73    ,p_questionnaire_answer_id      in     number
74    ,p_questionnaire_template_id    in     number   default hr_api.g_number
75    ,p_type                         in     varchar2 default hr_api.g_varchar2
76    ,p_type_object_id               in     number   default hr_api.g_number
77    ,p_business_group_id            in     number   default hr_api.g_number
78   );
79 
80 --
81 -- ----------------------------------------------------------------------------
82 -- |--------------------------< delete_quest_answer >--------------------------|
83 -- ----------------------------------------------------------------------------
84 -- {Start Of Comments}
85 --
86 -- Description:This procedure is the API wrapper procedure to the following
87 --
88 --  RHI: hr_qsa_del.del
89 --
90 -- Pre-requisites
91 --
92 --  All 'IN' parameters to this procedure have been appropriately derived.
93 --
94 -- Post Success:
95 --
96 --
97 -- Post Failure:
98 --
99 --
100 --
101 -- Access Status:
102 --
103 --  Internal Development use only.
104 --
105 -- {End of comments}
106 --
107 
108  procedure delete_quest_answer
109   (
110    p_validate                      in     boolean  default false
111   ,p_questionnaire_answer_id       in     number
112   );
113 --
114 end hr_quest_answer_api;