DBA Data[Home] [Help]

APPS.HR_QUEST_ANSWER_API dependencies on HR_API

Line 56: when hr_api.cannot_find_prog_unit then

52: ,p_type_object_id => p_type_object_id
53: ,p_business_group_id => p_business_group_id
54: );
55: exception
56: when hr_api.cannot_find_prog_unit then
57: hr_api.cannot_find_prog_unit_error
58: (p_module_name => 'create_quest_answer'
59: ,p_hook_type => 'BP'
60: );

Line 57: hr_api.cannot_find_prog_unit_error

53: ,p_business_group_id => p_business_group_id
54: );
55: exception
56: when hr_api.cannot_find_prog_unit then
57: hr_api.cannot_find_prog_unit_error
58: (p_module_name => 'create_quest_answer'
59: ,p_hook_type => 'BP'
60: );
61: end;

Line 91: when hr_api.cannot_find_prog_unit then

87: ,p_business_group_id => p_business_group_id
88: ,p_questionnaire_answer_id => p_questionnaire_answer_id
89: );
90: exception
91: when hr_api.cannot_find_prog_unit then
92: hr_api.cannot_find_prog_unit_error
93: (p_module_name => 'create_quest_answer'
94: ,p_hook_type => 'AP'
95: );

Line 92: hr_api.cannot_find_prog_unit_error

88: ,p_questionnaire_answer_id => p_questionnaire_answer_id
89: );
90: exception
91: when hr_api.cannot_find_prog_unit then
92: hr_api.cannot_find_prog_unit_error
93: (p_module_name => 'create_quest_answer'
94: ,p_hook_type => 'AP'
95: );
96: end;

Line 101: raise hr_api.validate_enabled;

97: --
98: -- When in validation only mode raise the Validate_Enabled exception
99: --
100: if p_validate then
101: raise hr_api.validate_enabled;
102: end if;
103: --
104: -- Set all IN OUT and OUT parameters with out values
105: --

Line 111: when hr_api.validate_enabled then

107:
108: --
109: hr_utility.set_location(' Leaving:'||l_proc, 70);
110: exception
111: when hr_api.validate_enabled then
112: --
113: -- As the Validate_Enabled exception has been raised
114: -- we must rollback to the savepoint
115: --

Line 150: ,p_questionnaire_template_id in number default hr_api.g_number

146: (
147: p_validate in boolean default false
148: ,p_effective_date in date
149: ,p_questionnaire_answer_id in number
150: ,p_questionnaire_template_id in number default hr_api.g_number
151: ,p_type in varchar2 default hr_api.g_varchar2
152: ,p_type_object_id in number default hr_api.g_number
153: ,p_business_group_id in number default hr_api.g_number
154:

Line 151: ,p_type in varchar2 default hr_api.g_varchar2

147: p_validate in boolean default false
148: ,p_effective_date in date
149: ,p_questionnaire_answer_id in number
150: ,p_questionnaire_template_id in number default hr_api.g_number
151: ,p_type in varchar2 default hr_api.g_varchar2
152: ,p_type_object_id in number default hr_api.g_number
153: ,p_business_group_id in number default hr_api.g_number
154:
155: ) is

Line 152: ,p_type_object_id in number default hr_api.g_number

148: ,p_effective_date in date
149: ,p_questionnaire_answer_id in number
150: ,p_questionnaire_template_id in number default hr_api.g_number
151: ,p_type in varchar2 default hr_api.g_varchar2
152: ,p_type_object_id in number default hr_api.g_number
153: ,p_business_group_id in number default hr_api.g_number
154:
155: ) is
156: --

Line 153: ,p_business_group_id in number default hr_api.g_number

149: ,p_questionnaire_answer_id in number
150: ,p_questionnaire_template_id in number default hr_api.g_number
151: ,p_type in varchar2 default hr_api.g_varchar2
152: ,p_type_object_id in number default hr_api.g_number
153: ,p_business_group_id in number default hr_api.g_number
154:
155: ) is
156: --
157: -- Declare cursors and local variables

Line 191: when hr_api.cannot_find_prog_unit then

187: ,p_type_object_id => p_type_object_id
188: ,p_business_group_id => p_business_group_id
189: );
190: exception
191: when hr_api.cannot_find_prog_unit then
192: hr_api.cannot_find_prog_unit_error
193: (p_module_name => 'update_quest_answer'
194: ,p_hook_type => 'BP'
195: );

Line 192: hr_api.cannot_find_prog_unit_error

188: ,p_business_group_id => p_business_group_id
189: );
190: exception
191: when hr_api.cannot_find_prog_unit then
192: hr_api.cannot_find_prog_unit_error
193: (p_module_name => 'update_quest_answer'
194: ,p_hook_type => 'BP'
195: );
196: end;

Line 230: when hr_api.cannot_find_prog_unit then

226: ,p_type_object_id => p_type_object_id
227: ,p_business_group_id => p_business_group_id
228: );
229: exception
230: when hr_api.cannot_find_prog_unit then
231: hr_api.cannot_find_prog_unit_error
232: (p_module_name => 'update_quest_answer'
233: ,p_hook_type => 'AP'
234: );

Line 231: hr_api.cannot_find_prog_unit_error

227: ,p_business_group_id => p_business_group_id
228: );
229: exception
230: when hr_api.cannot_find_prog_unit then
231: hr_api.cannot_find_prog_unit_error
232: (p_module_name => 'update_quest_answer'
233: ,p_hook_type => 'AP'
234: );
235: end;

Line 240: raise hr_api.validate_enabled;

236: --
237: -- When in validation only mode raise the Validate_Enabled exception
238: --
239: if p_validate then
240: raise hr_api.validate_enabled;
241: end if;
242: --
243: -- Set all IN OUT and OUT parameters with out values
244: --

Line 250: when hr_api.validate_enabled then

246:
247: --
248: hr_utility.set_location(' Leaving:'||l_proc, 70);
249: exception
250: when hr_api.validate_enabled then
251: --
252: -- As the Validate_Enabled exception has been raised
253: -- we must rollback to the savepoint
254: --

Line 322: when hr_api.cannot_find_prog_unit then

318: (
319: p_questionnaire_answer_id => p_questionnaire_answer_id
320: );
321: exception
322: when hr_api.cannot_find_prog_unit then
323: hr_api.cannot_find_prog_unit_error
324: (p_module_name => 'delete_quest_answer'
325: ,p_hook_type => 'BP'
326: );

Line 323: hr_api.cannot_find_prog_unit_error

319: p_questionnaire_answer_id => p_questionnaire_answer_id
320: );
321: exception
322: when hr_api.cannot_find_prog_unit then
323: hr_api.cannot_find_prog_unit_error
324: (p_module_name => 'delete_quest_answer'
325: ,p_hook_type => 'BP'
326: );
327: end;

Line 365: when hr_api.cannot_find_prog_unit then

361: (
362: p_questionnaire_answer_id => p_questionnaire_answer_id
363: );
364: exception
365: when hr_api.cannot_find_prog_unit then
366: hr_api.cannot_find_prog_unit_error
367: (p_module_name => 'delete_quest_answer'
368: ,p_hook_type => 'AP'
369: );

Line 366: hr_api.cannot_find_prog_unit_error

362: p_questionnaire_answer_id => p_questionnaire_answer_id
363: );
364: exception
365: when hr_api.cannot_find_prog_unit then
366: hr_api.cannot_find_prog_unit_error
367: (p_module_name => 'delete_quest_answer'
368: ,p_hook_type => 'AP'
369: );
370: end;

Line 375: raise hr_api.validate_enabled;

371: --
372: -- When in validation only mode raise the Validate_Enabled exception
373: --
374: if p_validate then
375: raise hr_api.validate_enabled;
376: end if;
377: --
378: -- Set all IN OUT and OUT parameters with out values
379: --

Line 385: when hr_api.validate_enabled then

381:
382: --
383: hr_utility.set_location(' Leaving:'||l_proc, 70);
384: exception
385: when hr_api.validate_enabled then
386: --
387: -- As the Validate_Enabled exception has been raised
388: -- we must rollback to the savepoint
389: --