DBA Data[Home] [Help]

APPS.PQH_COPY_ENTITY_FUNCTIONS_API dependencies on HR_API

Line 58: when hr_api.cannot_find_prog_unit then

54: ,p_context => p_context
55: ,p_effective_date => trunc(p_effective_date)
56: );
57: exception
58: when hr_api.cannot_find_prog_unit then
59: hr_api.cannot_find_prog_unit_error
60: (
61: p_module_name => 'create_copy_entity_function'
62: ,p_hook_type => 'BP'

Line 59: hr_api.cannot_find_prog_unit_error

55: ,p_effective_date => trunc(p_effective_date)
56: );
57: exception
58: when hr_api.cannot_find_prog_unit then
59: hr_api.cannot_find_prog_unit_error
60: (
61: p_module_name => 'create_copy_entity_function'
62: ,p_hook_type => 'BP'
63: );

Line 99: when hr_api.cannot_find_prog_unit then

95: ,p_context => p_context
96: ,p_effective_date => trunc(p_effective_date)
97: );
98: exception
99: when hr_api.cannot_find_prog_unit then
100: hr_api.cannot_find_prog_unit_error
101: (p_module_name => 'create_copy_entity_function'
102: ,p_hook_type => 'AP'
103: );

Line 100: hr_api.cannot_find_prog_unit_error

96: ,p_effective_date => trunc(p_effective_date)
97: );
98: exception
99: when hr_api.cannot_find_prog_unit then
100: hr_api.cannot_find_prog_unit_error
101: (p_module_name => 'create_copy_entity_function'
102: ,p_hook_type => 'AP'
103: );
104: --

Line 114: raise hr_api.validate_enabled;

110: --
111: -- When in validation only mode raise the Validate_Enabled exception
112: --
113: if p_validate then
114: raise hr_api.validate_enabled;
115: end if;
116: --
117: -- Set all output arguments
118: --

Line 126: when hr_api.validate_enabled then

122: hr_utility.set_location(' Leaving:'||l_proc, 70);
123: --
124: exception
125: --
126: when hr_api.validate_enabled then
127: --
128: -- As the Validate_Enabled exception has been raised
129: -- we must rollback to the savepoint
130: --

Line 158: ,p_table_route_id in number default hr_api.g_number

154: --
155: procedure update_copy_entity_function
156: (p_validate in boolean default false
157: ,p_copy_entity_function_id in number
158: ,p_table_route_id in number default hr_api.g_number
159: ,p_function_type_cd in varchar2 default hr_api.g_varchar2
160: ,p_pre_copy_function_name in varchar2 default hr_api.g_varchar2
161: ,p_copy_function_name in varchar2 default hr_api.g_varchar2
162: ,p_post_copy_function_name in varchar2 default hr_api.g_varchar2

Line 159: ,p_function_type_cd in varchar2 default hr_api.g_varchar2

155: procedure update_copy_entity_function
156: (p_validate in boolean default false
157: ,p_copy_entity_function_id in number
158: ,p_table_route_id in number default hr_api.g_number
159: ,p_function_type_cd in varchar2 default hr_api.g_varchar2
160: ,p_pre_copy_function_name in varchar2 default hr_api.g_varchar2
161: ,p_copy_function_name in varchar2 default hr_api.g_varchar2
162: ,p_post_copy_function_name in varchar2 default hr_api.g_varchar2
163: ,p_object_version_number in out nocopy number

Line 160: ,p_pre_copy_function_name in varchar2 default hr_api.g_varchar2

156: (p_validate in boolean default false
157: ,p_copy_entity_function_id in number
158: ,p_table_route_id in number default hr_api.g_number
159: ,p_function_type_cd in varchar2 default hr_api.g_varchar2
160: ,p_pre_copy_function_name in varchar2 default hr_api.g_varchar2
161: ,p_copy_function_name in varchar2 default hr_api.g_varchar2
162: ,p_post_copy_function_name in varchar2 default hr_api.g_varchar2
163: ,p_object_version_number in out nocopy number
164: ,p_context in varchar2 default hr_api.g_varchar2

Line 161: ,p_copy_function_name in varchar2 default hr_api.g_varchar2

157: ,p_copy_entity_function_id in number
158: ,p_table_route_id in number default hr_api.g_number
159: ,p_function_type_cd in varchar2 default hr_api.g_varchar2
160: ,p_pre_copy_function_name in varchar2 default hr_api.g_varchar2
161: ,p_copy_function_name in varchar2 default hr_api.g_varchar2
162: ,p_post_copy_function_name in varchar2 default hr_api.g_varchar2
163: ,p_object_version_number in out nocopy number
164: ,p_context in varchar2 default hr_api.g_varchar2
165: ,p_effective_date in date

Line 162: ,p_post_copy_function_name in varchar2 default hr_api.g_varchar2

158: ,p_table_route_id in number default hr_api.g_number
159: ,p_function_type_cd in varchar2 default hr_api.g_varchar2
160: ,p_pre_copy_function_name in varchar2 default hr_api.g_varchar2
161: ,p_copy_function_name in varchar2 default hr_api.g_varchar2
162: ,p_post_copy_function_name in varchar2 default hr_api.g_varchar2
163: ,p_object_version_number in out nocopy number
164: ,p_context in varchar2 default hr_api.g_varchar2
165: ,p_effective_date in date
166: ) is

Line 164: ,p_context in varchar2 default hr_api.g_varchar2

160: ,p_pre_copy_function_name in varchar2 default hr_api.g_varchar2
161: ,p_copy_function_name in varchar2 default hr_api.g_varchar2
162: ,p_post_copy_function_name in varchar2 default hr_api.g_varchar2
163: ,p_object_version_number in out nocopy number
164: ,p_context in varchar2 default hr_api.g_varchar2
165: ,p_effective_date in date
166: ) is
167: --
168: -- Declare cursors and local variables

Line 204: when hr_api.cannot_find_prog_unit then

200: ,p_context => p_context
201: ,p_effective_date => trunc(p_effective_date)
202: );
203: exception
204: when hr_api.cannot_find_prog_unit then
205: hr_api.cannot_find_prog_unit_error
206: (p_module_name => 'update_copy_entity_function'
207: ,p_hook_type => 'BP'
208: );

Line 205: hr_api.cannot_find_prog_unit_error

201: ,p_effective_date => trunc(p_effective_date)
202: );
203: exception
204: when hr_api.cannot_find_prog_unit then
205: hr_api.cannot_find_prog_unit_error
206: (p_module_name => 'update_copy_entity_function'
207: ,p_hook_type => 'BP'
208: );
209: --

Line 244: when hr_api.cannot_find_prog_unit then

240: ,p_context => p_context
241: ,p_effective_date => trunc(p_effective_date)
242: );
243: exception
244: when hr_api.cannot_find_prog_unit then
245: hr_api.cannot_find_prog_unit_error
246: (p_module_name => 'update_copy_entity_function'
247: ,p_hook_type => 'AP'
248: );

Line 245: hr_api.cannot_find_prog_unit_error

241: ,p_effective_date => trunc(p_effective_date)
242: );
243: exception
244: when hr_api.cannot_find_prog_unit then
245: hr_api.cannot_find_prog_unit_error
246: (p_module_name => 'update_copy_entity_function'
247: ,p_hook_type => 'AP'
248: );
249: --

Line 259: raise hr_api.validate_enabled;

255: --
256: -- When in validation only mode raise the Validate_Enabled exception
257: --
258: if p_validate then
259: raise hr_api.validate_enabled;
260: end if;
261: --
262: -- Set all output arguments
263: --

Line 270: when hr_api.validate_enabled then

266: hr_utility.set_location(' Leaving:'||l_proc, 70);
267: --
268: exception
269: --
270: when hr_api.validate_enabled then
271: --
272: -- As the Validate_Enabled exception has been raised
273: -- we must rollback to the savepoint
274: --

Line 334: when hr_api.cannot_find_prog_unit then

330: ,p_object_version_number => p_object_version_number
331: ,p_effective_date => trunc(p_effective_date)
332: );
333: exception
334: when hr_api.cannot_find_prog_unit then
335: hr_api.cannot_find_prog_unit_error
336: (p_module_name => 'delete_copy_entity_function'
337: ,p_hook_type => 'BP'
338: );

Line 335: hr_api.cannot_find_prog_unit_error

331: ,p_effective_date => trunc(p_effective_date)
332: );
333: exception
334: when hr_api.cannot_find_prog_unit then
335: hr_api.cannot_find_prog_unit_error
336: (p_module_name => 'delete_copy_entity_function'
337: ,p_hook_type => 'BP'
338: );
339: --

Line 362: when hr_api.cannot_find_prog_unit then

358: ,p_object_version_number => l_object_version_number
359: ,p_effective_date => trunc(p_effective_date)
360: );
361: exception
362: when hr_api.cannot_find_prog_unit then
363: hr_api.cannot_find_prog_unit_error
364: (p_module_name => 'delete_copy_entity_function'
365: ,p_hook_type => 'AP'
366: );

Line 363: hr_api.cannot_find_prog_unit_error

359: ,p_effective_date => trunc(p_effective_date)
360: );
361: exception
362: when hr_api.cannot_find_prog_unit then
363: hr_api.cannot_find_prog_unit_error
364: (p_module_name => 'delete_copy_entity_function'
365: ,p_hook_type => 'AP'
366: );
367: --

Line 377: raise hr_api.validate_enabled;

373: --
374: -- When in validation only mode raise the Validate_Enabled exception
375: --
376: if p_validate then
377: raise hr_api.validate_enabled;
378: end if;
379: --
380: hr_utility.set_location(' Leaving:'||l_proc, 70);
381: --

Line 384: when hr_api.validate_enabled then

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