DBA Data[Home] [Help]

APPS.BEN_ONLINE_ACTIVITY_API dependencies on HR_API

Line 58: when hr_api.cannot_find_prog_unit then

54: ,p_start_date => p_start_date
55: ,p_end_date => p_end_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_online_activity'
62: ,p_hook_type => 'BP'

Line 59: hr_api.cannot_find_prog_unit_error

55: ,p_end_date => p_end_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_online_activity'
62: ,p_hook_type => 'BP'
63: );

Line 99: when hr_api.cannot_find_prog_unit then

95: ,p_start_date => p_start_date
96: ,p_end_date => p_end_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_online_activity'
102: ,p_hook_type => 'AP'
103: );

Line 100: hr_api.cannot_find_prog_unit_error

96: ,p_end_date => p_end_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_online_activity'
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 161: ,p_ordr_num in number default hr_api.g_number

157: --
158: procedure update_online_activity
159: (p_validate in boolean default false
160: ,p_csr_activities_id in number
161: ,p_ordr_num in number default hr_api.g_number
162: ,p_function_name in varchar2 default hr_api.g_varchar2
163: ,p_user_function_name in varchar2 default hr_api.g_varchar2
164: ,p_function_type in varchar2 default hr_api.g_varchar2
165: ,p_business_group_id in number default hr_api.g_number

Line 162: ,p_function_name in varchar2 default hr_api.g_varchar2

158: procedure update_online_activity
159: (p_validate in boolean default false
160: ,p_csr_activities_id in number
161: ,p_ordr_num in number default hr_api.g_number
162: ,p_function_name in varchar2 default hr_api.g_varchar2
163: ,p_user_function_name in varchar2 default hr_api.g_varchar2
164: ,p_function_type in varchar2 default hr_api.g_varchar2
165: ,p_business_group_id in number default hr_api.g_number
166: ,p_object_version_number in out nocopy number

Line 163: ,p_user_function_name in varchar2 default hr_api.g_varchar2

159: (p_validate in boolean default false
160: ,p_csr_activities_id in number
161: ,p_ordr_num in number default hr_api.g_number
162: ,p_function_name in varchar2 default hr_api.g_varchar2
163: ,p_user_function_name in varchar2 default hr_api.g_varchar2
164: ,p_function_type in varchar2 default hr_api.g_varchar2
165: ,p_business_group_id in number default hr_api.g_number
166: ,p_object_version_number in out nocopy number
167: ,p_start_date in date default hr_api.g_date

Line 164: ,p_function_type in varchar2 default hr_api.g_varchar2

160: ,p_csr_activities_id in number
161: ,p_ordr_num in number default hr_api.g_number
162: ,p_function_name in varchar2 default hr_api.g_varchar2
163: ,p_user_function_name in varchar2 default hr_api.g_varchar2
164: ,p_function_type in varchar2 default hr_api.g_varchar2
165: ,p_business_group_id in number default hr_api.g_number
166: ,p_object_version_number in out nocopy number
167: ,p_start_date in date default hr_api.g_date
168: ,p_end_date in date default hr_api.g_date

Line 165: ,p_business_group_id in number default hr_api.g_number

161: ,p_ordr_num in number default hr_api.g_number
162: ,p_function_name in varchar2 default hr_api.g_varchar2
163: ,p_user_function_name in varchar2 default hr_api.g_varchar2
164: ,p_function_type in varchar2 default hr_api.g_varchar2
165: ,p_business_group_id in number default hr_api.g_number
166: ,p_object_version_number in out nocopy number
167: ,p_start_date in date default hr_api.g_date
168: ,p_end_date in date default hr_api.g_date
169: ) is

Line 167: ,p_start_date in date default hr_api.g_date

163: ,p_user_function_name in varchar2 default hr_api.g_varchar2
164: ,p_function_type in varchar2 default hr_api.g_varchar2
165: ,p_business_group_id in number default hr_api.g_number
166: ,p_object_version_number in out nocopy number
167: ,p_start_date in date default hr_api.g_date
168: ,p_end_date in date default hr_api.g_date
169: ) is
170: --
171: -- Declare cursors and local variables

Line 168: ,p_end_date in date default hr_api.g_date

164: ,p_function_type in varchar2 default hr_api.g_varchar2
165: ,p_business_group_id in number default hr_api.g_number
166: ,p_object_version_number in out nocopy number
167: ,p_start_date in date default hr_api.g_date
168: ,p_end_date in date default hr_api.g_date
169: ) is
170: --
171: -- Declare cursors and local variables
172: --

Line 207: when hr_api.cannot_find_prog_unit then

203: ,p_start_date => p_start_date
204: ,p_end_date => p_end_date
205: );
206: exception
207: when hr_api.cannot_find_prog_unit then
208: hr_api.cannot_find_prog_unit_error
209: (p_module_name => 'UPDATE_online_activity'
210: ,p_hook_type => 'BP'
211: );

Line 208: hr_api.cannot_find_prog_unit_error

204: ,p_end_date => p_end_date
205: );
206: exception
207: when hr_api.cannot_find_prog_unit then
208: hr_api.cannot_find_prog_unit_error
209: (p_module_name => 'UPDATE_online_activity'
210: ,p_hook_type => 'BP'
211: );
212: --

Line 247: when hr_api.cannot_find_prog_unit then

243: ,p_start_date => p_start_date
244: ,p_end_date => p_end_date
245: );
246: exception
247: when hr_api.cannot_find_prog_unit then
248: hr_api.cannot_find_prog_unit_error
249: (p_module_name => 'UPDATE_online_activity'
250: ,p_hook_type => 'AP'
251: );

Line 248: hr_api.cannot_find_prog_unit_error

244: ,p_end_date => p_end_date
245: );
246: exception
247: when hr_api.cannot_find_prog_unit then
248: hr_api.cannot_find_prog_unit_error
249: (p_module_name => 'UPDATE_online_activity'
250: ,p_hook_type => 'AP'
251: );
252: --

Line 262: raise hr_api.validate_enabled;

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

Line 273: when hr_api.validate_enabled then

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

Line 334: when hr_api.cannot_find_prog_unit then

330: p_csr_activities_id => p_csr_activities_id
331: ,p_object_version_number => p_object_version_number
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_online_activity'
337: ,p_hook_type => 'BP'
338: );

Line 335: hr_api.cannot_find_prog_unit_error

331: ,p_object_version_number => p_object_version_number
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_online_activity'
337: ,p_hook_type => 'BP'
338: );
339: --

Line 360: when hr_api.cannot_find_prog_unit then

356: p_csr_activities_id => p_csr_activities_id
357: ,p_object_version_number => l_object_version_number
358: );
359: exception
360: when hr_api.cannot_find_prog_unit then
361: hr_api.cannot_find_prog_unit_error
362: (p_module_name => 'DELETE_online_activity'
363: ,p_hook_type => 'AP'
364: );

Line 361: hr_api.cannot_find_prog_unit_error

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

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: hr_utility.set_location(' Leaving:'||l_proc, 70);
379: --

Line 382: when hr_api.validate_enabled then

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