DBA Data[Home] [Help]

APPS.OTA_OPEN_FC_ENROLLMENT_API dependencies on HR_API

Line 54: when hr_api.cannot_find_prog_unit then

50: ,p_chat_id => p_chat_id
51: ,p_object_version_number => p_object_version_number
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_OPEN_FC_ENROLLMENT'
57: ,p_hook_type => 'BP'
58: );

Line 55: hr_api.cannot_find_prog_unit_error

51: ,p_object_version_number => p_object_version_number
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_OPEN_FC_ENROLLMENT'
57: ,p_hook_type => 'BP'
58: );
59: end;

Line 95: when hr_api.cannot_find_prog_unit then

91: ,p_object_version_number => p_object_version_number
92: );
93:
94: exception
95: when hr_api.cannot_find_prog_unit then
96: hr_api.cannot_find_prog_unit_error
97: (p_module_name => 'CREATE_OPEN_FC_ENROLLMENT'
98: ,p_hook_type => 'AP'
99: );

Line 96: hr_api.cannot_find_prog_unit_error

92: );
93:
94: exception
95: when hr_api.cannot_find_prog_unit then
96: hr_api.cannot_find_prog_unit_error
97: (p_module_name => 'CREATE_OPEN_FC_ENROLLMENT'
98: ,p_hook_type => 'AP'
99: );
100: end;

Line 106: raise hr_api.validate_enabled;

102: --
103: -- When in validation only mode raise the Validate_Enabled exception
104: --
105: if p_validate then
106: raise hr_api.validate_enabled;
107: end if;
108:
109: hr_utility.set_location(' Leaving:'||l_proc, 70);
110: exception

Line 111: when hr_api.validate_enabled then

107: end if;
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 143: ,p_business_group_id in number default hr_api.g_number

139: procedure update_open_fc_enrollment
140: ( p_validate in boolean default false
141: ,p_effective_date in date
142: ,p_enrollment_id in number
143: ,p_business_group_id in number default hr_api.g_number
144: ,p_forum_id in number default hr_api.g_number
145: ,p_person_id in number default hr_api.g_number
146: ,p_contact_id in number default hr_api.g_number
147: ,p_chat_id in number default hr_api.g_number

Line 144: ,p_forum_id in number default hr_api.g_number

140: ( p_validate in boolean default false
141: ,p_effective_date in date
142: ,p_enrollment_id in number
143: ,p_business_group_id in number default hr_api.g_number
144: ,p_forum_id in number default hr_api.g_number
145: ,p_person_id in number default hr_api.g_number
146: ,p_contact_id in number default hr_api.g_number
147: ,p_chat_id in number default hr_api.g_number
148: ,p_object_version_number in out nocopy number ) is

Line 145: ,p_person_id in number default hr_api.g_number

141: ,p_effective_date in date
142: ,p_enrollment_id in number
143: ,p_business_group_id in number default hr_api.g_number
144: ,p_forum_id in number default hr_api.g_number
145: ,p_person_id in number default hr_api.g_number
146: ,p_contact_id in number default hr_api.g_number
147: ,p_chat_id in number default hr_api.g_number
148: ,p_object_version_number in out nocopy number ) is
149: --

Line 146: ,p_contact_id in number default hr_api.g_number

142: ,p_enrollment_id in number
143: ,p_business_group_id in number default hr_api.g_number
144: ,p_forum_id in number default hr_api.g_number
145: ,p_person_id in number default hr_api.g_number
146: ,p_contact_id in number default hr_api.g_number
147: ,p_chat_id in number default hr_api.g_number
148: ,p_object_version_number in out nocopy number ) is
149: --
150: -- Declare cursors and local variables

Line 147: ,p_chat_id in number default hr_api.g_number

143: ,p_business_group_id in number default hr_api.g_number
144: ,p_forum_id in number default hr_api.g_number
145: ,p_person_id in number default hr_api.g_number
146: ,p_contact_id in number default hr_api.g_number
147: ,p_chat_id in number default hr_api.g_number
148: ,p_object_version_number in out nocopy number ) is
149: --
150: -- Declare cursors and local variables
151: --

Line 180: when hr_api.cannot_find_prog_unit then

176: ,p_object_version_number => p_object_version_number
177: );
178:
179: exception
180: when hr_api.cannot_find_prog_unit then
181: hr_api.cannot_find_prog_unit_error
182: (p_module_name => 'UPDATE_OPEN_FC_ENROLLMENT'
183: ,p_hook_type => 'BP'
184: );

Line 181: hr_api.cannot_find_prog_unit_error

177: );
178:
179: exception
180: when hr_api.cannot_find_prog_unit then
181: hr_api.cannot_find_prog_unit_error
182: (p_module_name => 'UPDATE_OPEN_FC_ENROLLMENT'
183: ,p_hook_type => 'BP'
184: );
185: end;

Line 217: when hr_api.cannot_find_prog_unit then

213: ,p_chat_id => p_chat_id
214: ,p_object_version_number => p_object_version_number );
215:
216: exception
217: when hr_api.cannot_find_prog_unit then
218: hr_api.cannot_find_prog_unit_error
219: (p_module_name => 'UPDATE_OPEN_FC_ENROLLMENT'
220: ,p_hook_type => 'AP'
221: );

Line 218: hr_api.cannot_find_prog_unit_error

214: ,p_object_version_number => p_object_version_number );
215:
216: exception
217: when hr_api.cannot_find_prog_unit then
218: hr_api.cannot_find_prog_unit_error
219: (p_module_name => 'UPDATE_OPEN_FC_ENROLLMENT'
220: ,p_hook_type => 'AP'
221: );
222: end;

Line 227: raise hr_api.validate_enabled;

223: --
224: -- When in validation only mode raise the Validate_Enabled exception
225: --
226: if p_validate then
227: raise hr_api.validate_enabled;
228: end if;
229: --
230: -- Set all output arguments
231: --

Line 236: when hr_api.validate_enabled then

232: p_object_version_number := l_object_version_number;
233:
234: hr_utility.set_location(' Leaving:'||l_proc, 70);
235: exception
236: when hr_api.validate_enabled then
237: --
238: -- As the Validate_Enabled exception has been raised
239: -- we must rollback to the savepoint
240: --

Line 287: when hr_api.cannot_find_prog_unit then

283: (p_enrollment_id => p_enrollment_id
284: ,p_object_version_number => p_object_version_number
285: );
286: exception
287: when hr_api.cannot_find_prog_unit then
288: hr_api.cannot_find_prog_unit_error
289: (p_module_name => 'DELETE_OPEN_FC_ENROLLMENT'
290: ,p_hook_type => 'BP'
291: );

Line 288: hr_api.cannot_find_prog_unit_error

284: ,p_object_version_number => p_object_version_number
285: );
286: exception
287: when hr_api.cannot_find_prog_unit then
288: hr_api.cannot_find_prog_unit_error
289: (p_module_name => 'DELETE_OPEN_FC_ENROLLMENT'
290: ,p_hook_type => 'BP'
291: );
292: end;

Line 311: when hr_api.cannot_find_prog_unit then

307: (p_enrollment_id => p_enrollment_id
308: ,p_object_version_number => p_object_version_number
309: );
310: exception
311: when hr_api.cannot_find_prog_unit then
312: hr_api.cannot_find_prog_unit_error
313: (p_module_name => 'DELETE_OPEN_FC_ENROLLMENT'
314: ,p_hook_type => 'AP'
315: );

Line 312: hr_api.cannot_find_prog_unit_error

308: ,p_object_version_number => p_object_version_number
309: );
310: exception
311: when hr_api.cannot_find_prog_unit then
312: hr_api.cannot_find_prog_unit_error
313: (p_module_name => 'DELETE_OPEN_FC_ENROLLMENT'
314: ,p_hook_type => 'AP'
315: );
316: end;

Line 322: raise hr_api.validate_enabled;

318: --
319: -- When in validation only mode raise the Validate_Enabled exception
320: --
321: if p_validate then
322: raise hr_api.validate_enabled;
323: end if;
324: --
325: -- Set all output arguments
326: --

Line 330: when hr_api.validate_enabled then

326: --
327: --
328: hr_utility.set_location(' Leaving:'||l_proc, 170);
329: exception
330: when hr_api.validate_enabled then
331: --
332: -- As the Validate_Enabled exception has been raised
333: -- we must rollback to the savepoint
334: --