DBA Data[Home] [Help]

APPS.BEN_ELIG_OBJ_API dependencies on HR_API

Line 58: when hr_api.cannot_find_prog_unit then

54: ,p_column_value => p_column_value
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_ELIG_OBJ'
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_ELIG_OBJ'
62: ,p_hook_type => 'BP'
63: );

Line 99: when hr_api.cannot_find_prog_unit then

95: ,p_object_version_number => l_object_version_number
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_ELIG_OBJ'
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_ELIG_OBJ'
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 128: when hr_api.validate_enabled then

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

Line 162: ,p_business_group_id in number default hr_api.g_number

158: (p_validate in boolean default false
159: ,p_elig_obj_id in number
160: ,p_effective_start_date out nocopy date
161: ,p_effective_end_date out nocopy date
162: ,p_business_group_id in number default hr_api.g_number
163: ,p_table_name in varchar2 default hr_api.g_varchar2
164: ,p_column_name in varchar2 default hr_api.g_varchar2
165: ,p_column_value in varchar2 default hr_api.g_varchar2
166: ,p_object_version_number in out nocopy number

Line 163: ,p_table_name in varchar2 default hr_api.g_varchar2

159: ,p_elig_obj_id in number
160: ,p_effective_start_date out nocopy date
161: ,p_effective_end_date out nocopy date
162: ,p_business_group_id in number default hr_api.g_number
163: ,p_table_name in varchar2 default hr_api.g_varchar2
164: ,p_column_name in varchar2 default hr_api.g_varchar2
165: ,p_column_value in varchar2 default hr_api.g_varchar2
166: ,p_object_version_number in out nocopy number
167: ,p_effective_date in date

Line 164: ,p_column_name in varchar2 default hr_api.g_varchar2

160: ,p_effective_start_date out nocopy date
161: ,p_effective_end_date out nocopy date
162: ,p_business_group_id in number default hr_api.g_number
163: ,p_table_name in varchar2 default hr_api.g_varchar2
164: ,p_column_name in varchar2 default hr_api.g_varchar2
165: ,p_column_value in varchar2 default hr_api.g_varchar2
166: ,p_object_version_number in out nocopy number
167: ,p_effective_date in date
168: ,p_datetrack_mode in varchar2

Line 165: ,p_column_value in varchar2 default hr_api.g_varchar2

161: ,p_effective_end_date out nocopy date
162: ,p_business_group_id in number default hr_api.g_number
163: ,p_table_name in varchar2 default hr_api.g_varchar2
164: ,p_column_name in varchar2 default hr_api.g_varchar2
165: ,p_column_value in varchar2 default hr_api.g_varchar2
166: ,p_object_version_number in out nocopy number
167: ,p_effective_date in date
168: ,p_datetrack_mode in varchar2
169: ) is

Line 208: when hr_api.cannot_find_prog_unit then

204: ,p_effective_date => trunc(p_effective_date)
205: ,p_datetrack_mode => p_datetrack_mode
206: );
207: exception
208: when hr_api.cannot_find_prog_unit then
209: hr_api.cannot_find_prog_unit_error
210: (p_module_name => 'UPDATE_ELIG_OBJ'
211: ,p_hook_type => 'BP'
212: );

Line 209: hr_api.cannot_find_prog_unit_error

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

Line 250: when hr_api.cannot_find_prog_unit then

246: ,p_effective_date => trunc(p_effective_date)
247: ,p_datetrack_mode => p_datetrack_mode
248: );
249: exception
250: when hr_api.cannot_find_prog_unit then
251: hr_api.cannot_find_prog_unit_error
252: (p_module_name => 'UPDATE_ELIG_OBJ'
253: ,p_hook_type => 'AP'
254: );

Line 251: hr_api.cannot_find_prog_unit_error

247: ,p_datetrack_mode => p_datetrack_mode
248: );
249: exception
250: when hr_api.cannot_find_prog_unit then
251: hr_api.cannot_find_prog_unit_error
252: (p_module_name => 'UPDATE_ELIG_OBJ'
253: ,p_hook_type => 'AP'
254: );
255: --

Line 265: raise hr_api.validate_enabled;

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

Line 278: when hr_api.validate_enabled then

274: hr_utility.set_location(' Leaving:'||l_proc, 70);
275: --
276: exception
277: --
278: when hr_api.validate_enabled then
279: --
280: -- As the Validate_Enabled exception has been raised
281: -- we must rollback to the savepoint
282: --

Line 347: when hr_api.cannot_find_prog_unit then

343: ,p_effective_date => trunc(p_effective_date)
344: ,p_datetrack_mode => p_datetrack_mode
345: );
346: exception
347: when hr_api.cannot_find_prog_unit then
348: hr_api.cannot_find_prog_unit_error
349: (p_module_name => 'DELETE_ELIG_OBJ'
350: ,p_hook_type => 'BP'
351: );

Line 348: hr_api.cannot_find_prog_unit_error

344: ,p_datetrack_mode => p_datetrack_mode
345: );
346: exception
347: when hr_api.cannot_find_prog_unit then
348: hr_api.cannot_find_prog_unit_error
349: (p_module_name => 'DELETE_ELIG_OBJ'
350: ,p_hook_type => 'BP'
351: );
352: --

Line 381: when hr_api.cannot_find_prog_unit then

377: ,p_effective_date => trunc(p_effective_date)
378: ,p_datetrack_mode => p_datetrack_mode
379: );
380: exception
381: when hr_api.cannot_find_prog_unit then
382: hr_api.cannot_find_prog_unit_error
383: (p_module_name => 'DELETE_ELIG_OBJ'
384: ,p_hook_type => 'AP'
385: );

Line 382: hr_api.cannot_find_prog_unit_error

378: ,p_datetrack_mode => p_datetrack_mode
379: );
380: exception
381: when hr_api.cannot_find_prog_unit then
382: hr_api.cannot_find_prog_unit_error
383: (p_module_name => 'DELETE_ELIG_OBJ'
384: ,p_hook_type => 'AP'
385: );
386: --

Line 396: raise hr_api.validate_enabled;

392: --
393: -- When in validation only mode raise the Validate_Enabled exception
394: --
395: if p_validate then
396: raise hr_api.validate_enabled;
397: end if;
398: --
399: hr_utility.set_location(' Leaving:'||l_proc, 70);
400: --

Line 403: when hr_api.validate_enabled then

399: hr_utility.set_location(' Leaving:'||l_proc, 70);
400: --
401: exception
402: --
403: when hr_api.validate_enabled then
404: --
405: -- As the Validate_Enabled exception has been raised
406: -- we must rollback to the savepoint
407: --