DBA Data[Home] [Help]

APPS.HR_KI_OPTIONS_API dependencies on HR_API

Line 60: when hr_api.cannot_find_prog_unit then

56: ,p_integration_id => p_integration_id
57: );
58:
59: exception
60: when hr_api.cannot_find_prog_unit then
61: hr_api.cannot_find_prog_unit_error
62: (p_module_name => 'create_option'
63: ,p_hook_type => 'BP'
64: );

Line 61: hr_api.cannot_find_prog_unit_error

57: );
58:
59: exception
60: when hr_api.cannot_find_prog_unit then
61: hr_api.cannot_find_prog_unit_error
62: (p_module_name => 'create_option'
63: ,p_hook_type => 'BP'
64: );
65: end;

Line 100: when hr_api.cannot_find_prog_unit then

96: ,p_option_id => l_option_id
97: ,p_object_version_number => l_object_version_number
98: );
99: exception
100: when hr_api.cannot_find_prog_unit then
101: hr_api.cannot_find_prog_unit_error
102: (p_module_name => 'create_option'
103: ,p_hook_type => 'AP'
104: );

Line 101: hr_api.cannot_find_prog_unit_error

97: ,p_object_version_number => l_object_version_number
98: );
99: exception
100: when hr_api.cannot_find_prog_unit then
101: hr_api.cannot_find_prog_unit_error
102: (p_module_name => 'create_option'
103: ,p_hook_type => 'AP'
104: );
105: end;

Line 110: raise hr_api.validate_enabled;

106: --
107: -- When in validation only mode raise the Validate_Enabled exception
108: --
109: if p_validate then
110: raise hr_api.validate_enabled;
111: end if;
112: --
113: -- Set all IN OUT and OUT parameters with out values
114: --

Line 121: when hr_api.validate_enabled then

117:
118: --
119: hr_utility.set_location(' Leaving:'||l_proc, 70);
120: exception
121: when hr_api.validate_enabled then
122: --
123: -- As the Validate_Enabled exception has been raised
124: -- we must rollback to the savepoint
125: --

Line 163: ,p_value in varchar2 default hr_api.g_varchar2

159: procedure update_option
160: (
161: p_validate in boolean default false
162: ,p_option_id in number
163: ,p_value in varchar2 default hr_api.g_varchar2
164: ,p_encrypted in varchar2 default hr_api.g_varchar2
165: ,p_object_version_number in out nocopy number
166: ) is
167: --

Line 164: ,p_encrypted in varchar2 default hr_api.g_varchar2

160: (
161: p_validate in boolean default false
162: ,p_option_id in number
163: ,p_value in varchar2 default hr_api.g_varchar2
164: ,p_encrypted in varchar2 default hr_api.g_varchar2
165: ,p_object_version_number in out nocopy number
166: ) is
167: --
168: -- Declare cursors and local variables

Line 196: when hr_api.cannot_find_prog_unit then

192: ,p_option_id => p_option_id
193: ,p_object_version_number => p_object_version_number
194: );
195: exception
196: when hr_api.cannot_find_prog_unit then
197: hr_api.cannot_find_prog_unit_error
198: (p_module_name => 'update_option'
199: ,p_hook_type => 'BP'
200: );

Line 197: hr_api.cannot_find_prog_unit_error

193: ,p_object_version_number => p_object_version_number
194: );
195: exception
196: when hr_api.cannot_find_prog_unit then
197: hr_api.cannot_find_prog_unit_error
198: (p_module_name => 'update_option'
199: ,p_hook_type => 'BP'
200: );
201: end;

Line 226: when hr_api.cannot_find_prog_unit then

222: ,p_option_id => p_option_id
223: ,p_object_version_number => p_object_version_number
224: );
225: exception
226: when hr_api.cannot_find_prog_unit then
227: hr_api.cannot_find_prog_unit_error
228: (p_module_name => 'update_option'
229: ,p_hook_type => 'AP'
230: );

Line 227: hr_api.cannot_find_prog_unit_error

223: ,p_object_version_number => p_object_version_number
224: );
225: exception
226: when hr_api.cannot_find_prog_unit then
227: hr_api.cannot_find_prog_unit_error
228: (p_module_name => 'update_option'
229: ,p_hook_type => 'AP'
230: );
231: end;

Line 236: raise hr_api.validate_enabled;

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

Line 247: when hr_api.validate_enabled then

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

Line 314: when hr_api.cannot_find_prog_unit then

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

Line 315: hr_api.cannot_find_prog_unit_error

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

Line 342: when hr_api.cannot_find_prog_unit then

338: p_option_id => p_option_id
339: ,p_object_version_number => p_object_version_number
340: );
341: exception
342: when hr_api.cannot_find_prog_unit then
343: hr_api.cannot_find_prog_unit_error
344: (p_module_name => 'delete_option'
345: ,p_hook_type => 'AP'
346: );

Line 343: hr_api.cannot_find_prog_unit_error

339: ,p_object_version_number => p_object_version_number
340: );
341: exception
342: when hr_api.cannot_find_prog_unit then
343: hr_api.cannot_find_prog_unit_error
344: (p_module_name => 'delete_option'
345: ,p_hook_type => 'AP'
346: );
347: end;

Line 352: raise hr_api.validate_enabled;

348: --
349: -- When in validation only mode raise the Validate_Enabled exception
350: --
351: if p_validate then
352: raise hr_api.validate_enabled;
353: end if;
354: --
355: -- Set all IN OUT and OUT parameters with out values
356: --

Line 361: when hr_api.validate_enabled then

357:
358: --
359: hr_utility.set_location(' Leaving:'||l_proc, 70);
360: exception
361: when hr_api.validate_enabled then
362: --
363: -- As the Validate_Enabled exception has been raised
364: -- we must rollback to the savepoint
365: --