DBA Data[Home] [Help]

APPS.HR_KI_TOPICS_API dependencies on HR_API

Line 14: ,p_language_code in varchar2 default hr_api.userenv_lang

10: -- ----------------------------------------------------------------------------
11: --
12: procedure create_topic
13: (p_validate in boolean default false
14: ,p_language_code in varchar2 default hr_api.userenv_lang
15: ,p_topic_key in varchar2
16: ,p_handler in varchar2
17: ,p_name in varchar2
18: ,p_topic_id out nocopy number

Line 41: hr_api.validate_language_code(p_language_code => l_language_code);

37: --
38: --l_in_out_parameter := p_in_out_parameter;
39: l_language_code:=p_language_code;
40:
41: hr_api.validate_language_code(p_language_code => l_language_code);
42:
43: --
44: -- Call Before Process User Hook
45: --

Line 54: when hr_api.cannot_find_prog_unit then

50: ,p_handler => p_handler
51: ,p_name => p_name
52: );
53: exception
54: when hr_api.cannot_find_prog_unit then
55: hr_api.cannot_find_prog_unit_error
56: (p_module_name => 'create_topic'
57: ,p_hook_type => 'BP'
58: );

Line 55: hr_api.cannot_find_prog_unit_error

51: ,p_name => p_name
52: );
53: exception
54: when hr_api.cannot_find_prog_unit then
55: hr_api.cannot_find_prog_unit_error
56: (p_module_name => 'create_topic'
57: ,p_hook_type => 'BP'
58: );
59: end;

Line 92: when hr_api.cannot_find_prog_unit then

88: ,p_topic_id => l_topic_id
89: ,p_object_version_number => l_object_version_number
90: );
91: exception
92: when hr_api.cannot_find_prog_unit then
93: hr_api.cannot_find_prog_unit_error
94: (p_module_name => 'create_topic'
95: ,p_hook_type => 'AP'
96: );

Line 93: hr_api.cannot_find_prog_unit_error

89: ,p_object_version_number => l_object_version_number
90: );
91: exception
92: when hr_api.cannot_find_prog_unit then
93: hr_api.cannot_find_prog_unit_error
94: (p_module_name => 'create_topic'
95: ,p_hook_type => 'AP'
96: );
97: end;

Line 102: raise hr_api.validate_enabled;

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

Line 113: when hr_api.validate_enabled then

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

Line 153: ,p_language_code in varchar2 default hr_api.userenv_lang

149: -- ----------------------------------------------------------------------------
150: --
151: procedure update_topic
152: (p_validate in boolean default false
153: ,p_language_code in varchar2 default hr_api.userenv_lang
154: ,p_handler in varchar2 default hr_api.g_varchar2
155: ,p_name in varchar2 default hr_api.g_varchar2
156: ,p_topic_id in number
157: ,p_object_version_number in out nocopy number

Line 154: ,p_handler in varchar2 default hr_api.g_varchar2

150: --
151: procedure update_topic
152: (p_validate in boolean default false
153: ,p_language_code in varchar2 default hr_api.userenv_lang
154: ,p_handler in varchar2 default hr_api.g_varchar2
155: ,p_name in varchar2 default hr_api.g_varchar2
156: ,p_topic_id in number
157: ,p_object_version_number in out nocopy number
158: ) is

Line 155: ,p_name in varchar2 default hr_api.g_varchar2

151: procedure update_topic
152: (p_validate in boolean default false
153: ,p_language_code in varchar2 default hr_api.userenv_lang
154: ,p_handler in varchar2 default hr_api.g_varchar2
155: ,p_name in varchar2 default hr_api.g_varchar2
156: ,p_topic_id in number
157: ,p_object_version_number in out nocopy number
158: ) is
159: --

Line 178: hr_api.validate_language_code(p_language_code => l_language_code);

174: --
175: --l_in_out_parameter := p_in_out_parameter;
176: l_language_code:=p_language_code;
177:
178: hr_api.validate_language_code(p_language_code => l_language_code);
179:
180: --
181: -- Call Before Process User Hook
182: --

Line 193: when hr_api.cannot_find_prog_unit then

189: ,p_object_version_number => p_object_version_number
190:
191: );
192: exception
193: when hr_api.cannot_find_prog_unit then
194: hr_api.cannot_find_prog_unit_error
195: (p_module_name => 'update_topic'
196: ,p_hook_type => 'BP'
197: );

Line 194: hr_api.cannot_find_prog_unit_error

190:
191: );
192: exception
193: when hr_api.cannot_find_prog_unit then
194: hr_api.cannot_find_prog_unit_error
195: (p_module_name => 'update_topic'
196: ,p_hook_type => 'BP'
197: );
198: end;

Line 230: when hr_api.cannot_find_prog_unit then

226: ,p_topic_id => p_topic_id
227: ,p_object_version_number => p_object_version_number
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_topic'
233: ,p_hook_type => 'AP'
234: );

Line 231: hr_api.cannot_find_prog_unit_error

227: ,p_object_version_number => p_object_version_number
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_topic'
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 248: when hr_api.validate_enabled then

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

Line 315: when hr_api.cannot_find_prog_unit then

311: ,p_object_version_number => p_object_version_number
312:
313: );
314: exception
315: when hr_api.cannot_find_prog_unit then
316: hr_api.cannot_find_prog_unit_error
317: (p_module_name => 'delete_topic'
318: ,p_hook_type => 'BP'
319: );

Line 316: hr_api.cannot_find_prog_unit_error

312:
313: );
314: exception
315: when hr_api.cannot_find_prog_unit then
316: hr_api.cannot_find_prog_unit_error
317: (p_module_name => 'delete_topic'
318: ,p_hook_type => 'BP'
319: );
320: end;

Line 350: when hr_api.cannot_find_prog_unit then

346: p_topic_id => p_topic_id
347: ,p_object_version_number => p_object_version_number
348: );
349: exception
350: when hr_api.cannot_find_prog_unit then
351: hr_api.cannot_find_prog_unit_error
352: (p_module_name => 'delete_topic'
353: ,p_hook_type => 'AP'
354: );

Line 351: hr_api.cannot_find_prog_unit_error

347: ,p_object_version_number => p_object_version_number
348: );
349: exception
350: when hr_api.cannot_find_prog_unit then
351: hr_api.cannot_find_prog_unit_error
352: (p_module_name => 'delete_topic'
353: ,p_hook_type => 'AP'
354: );
355: end;

Line 360: raise hr_api.validate_enabled;

356: --
357: -- When in validation only mode raise the Validate_Enabled exception
358: --
359: if p_validate then
360: raise hr_api.validate_enabled;
361: end if;
362: --
363: -- Set all IN OUT and OUT parameters with out values
364: --

Line 369: when hr_api.validate_enabled then

365:
366: --
367: hr_utility.set_location(' Leaving:'||l_proc, 70);
368: exception
369: when hr_api.validate_enabled then
370: --
371: -- As the Validate_Enabled exception has been raised
372: -- we must rollback to the savepoint
373: --