DBA Data[Home] [Help]

APPS.BEN_CWB_PERSON_TASKS_API dependencies on HR_API

Line 54: when hr_api.cannot_find_prog_unit then

50: ,p_task_last_update_date => p_task_last_update_date
51: ,p_task_last_update_by => p_task_last_update_by
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_PERSON_TASK'
57: ,p_hook_type => 'BP'
58: );

Line 55: hr_api.cannot_find_prog_unit_error

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

Line 94: when hr_api.cannot_find_prog_unit then

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

Line 95: hr_api.cannot_find_prog_unit_error

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

Line 104: raise hr_api.validate_enabled;

100: --
101: -- When in validation only mode raise the Validate_Enabled exception
102: --
103: if p_validate then
104: raise hr_api.validate_enabled;
105: end if;
106: --
107: -- Set all IN OUT and OUT parameters with out values
108: --

Line 115: when hr_api.validate_enabled then

111: if g_debug then
112: hr_utility.set_location(' Leaving:'||l_proc, 70);
113: end if;
114: exception
115: when hr_api.validate_enabled then
116: --
117: -- As the Validate_Enabled exception has been raised
118: -- we must rollback to the savepoint
119: --

Line 145: ,p_group_pl_id in number default hr_api.g_number

141: procedure update_person_task
142: (p_validate in boolean default false
143: ,p_group_per_in_ler_id in number
144: ,p_task_id in number
145: ,p_group_pl_id in number default hr_api.g_number
146: ,p_lf_evt_ocrd_dt in date default hr_api.g_date
147: ,p_status_cd in varchar2 default hr_api.g_varchar2
148: ,p_access_cd in varchar2 default hr_api.g_varchar2
149: ,p_task_last_update_date in date default hr_api.g_date

Line 146: ,p_lf_evt_ocrd_dt in date default hr_api.g_date

142: (p_validate in boolean default false
143: ,p_group_per_in_ler_id in number
144: ,p_task_id in number
145: ,p_group_pl_id in number default hr_api.g_number
146: ,p_lf_evt_ocrd_dt in date default hr_api.g_date
147: ,p_status_cd in varchar2 default hr_api.g_varchar2
148: ,p_access_cd in varchar2 default hr_api.g_varchar2
149: ,p_task_last_update_date in date default hr_api.g_date
150: ,p_task_last_update_by in number default hr_api.g_number

Line 147: ,p_status_cd in varchar2 default hr_api.g_varchar2

143: ,p_group_per_in_ler_id in number
144: ,p_task_id in number
145: ,p_group_pl_id in number default hr_api.g_number
146: ,p_lf_evt_ocrd_dt in date default hr_api.g_date
147: ,p_status_cd in varchar2 default hr_api.g_varchar2
148: ,p_access_cd in varchar2 default hr_api.g_varchar2
149: ,p_task_last_update_date in date default hr_api.g_date
150: ,p_task_last_update_by in number default hr_api.g_number
151: ,p_object_version_number in out nocopy number

Line 148: ,p_access_cd in varchar2 default hr_api.g_varchar2

144: ,p_task_id in number
145: ,p_group_pl_id in number default hr_api.g_number
146: ,p_lf_evt_ocrd_dt in date default hr_api.g_date
147: ,p_status_cd in varchar2 default hr_api.g_varchar2
148: ,p_access_cd in varchar2 default hr_api.g_varchar2
149: ,p_task_last_update_date in date default hr_api.g_date
150: ,p_task_last_update_by in number default hr_api.g_number
151: ,p_object_version_number in out nocopy number
152: ) is

Line 149: ,p_task_last_update_date in date default hr_api.g_date

145: ,p_group_pl_id in number default hr_api.g_number
146: ,p_lf_evt_ocrd_dt in date default hr_api.g_date
147: ,p_status_cd in varchar2 default hr_api.g_varchar2
148: ,p_access_cd in varchar2 default hr_api.g_varchar2
149: ,p_task_last_update_date in date default hr_api.g_date
150: ,p_task_last_update_by in number default hr_api.g_number
151: ,p_object_version_number in out nocopy number
152: ) is
153: --

Line 150: ,p_task_last_update_by in number default hr_api.g_number

146: ,p_lf_evt_ocrd_dt in date default hr_api.g_date
147: ,p_status_cd in varchar2 default hr_api.g_varchar2
148: ,p_access_cd in varchar2 default hr_api.g_varchar2
149: ,p_task_last_update_date in date default hr_api.g_date
150: ,p_task_last_update_by in number default hr_api.g_number
151: ,p_object_version_number in out nocopy number
152: ) is
153: --
154: -- Declare cursors and local variables

Line 186: when hr_api.cannot_find_prog_unit then

182: ,p_task_last_update_by => p_task_last_update_by
183: ,p_object_version_number => l_object_version_number
184: );
185: exception
186: when hr_api.cannot_find_prog_unit then
187: hr_api.cannot_find_prog_unit_error
188: (p_module_name => 'UPDATE_PERSON_TASK'
189: ,p_hook_type => 'BP'
190: );

Line 187: hr_api.cannot_find_prog_unit_error

183: ,p_object_version_number => l_object_version_number
184: );
185: exception
186: when hr_api.cannot_find_prog_unit then
187: hr_api.cannot_find_prog_unit_error
188: (p_module_name => 'UPDATE_PERSON_TASK'
189: ,p_hook_type => 'BP'
190: );
191: end;

Line 226: when hr_api.cannot_find_prog_unit then

222: ,p_task_last_update_by => p_task_last_update_by
223: ,p_object_version_number => l_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_PERSON_TASK'
229: ,p_hook_type => 'AP'
230: );

Line 227: hr_api.cannot_find_prog_unit_error

223: ,p_object_version_number => l_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_PERSON_TASK'
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: if g_debug then
244: hr_utility.set_location(' Leaving:'||l_proc, 70);
245: end if;
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 302: when hr_api.cannot_find_prog_unit then

298: ,p_task_id => p_task_id
299: ,p_object_version_number => p_object_version_number
300: );
301: exception
302: when hr_api.cannot_find_prog_unit then
303: hr_api.cannot_find_prog_unit_error
304: (p_module_name => 'DELETE_PERSON_TASK'
305: ,p_hook_type => 'BP'
306: );

Line 303: hr_api.cannot_find_prog_unit_error

299: ,p_object_version_number => p_object_version_number
300: );
301: exception
302: when hr_api.cannot_find_prog_unit then
303: hr_api.cannot_find_prog_unit_error
304: (p_module_name => 'DELETE_PERSON_TASK'
305: ,p_hook_type => 'BP'
306: );
307: end;

Line 330: when hr_api.cannot_find_prog_unit then

326: ,p_task_id => p_task_id
327: ,p_object_version_number => p_object_version_number
328: );
329: exception
330: when hr_api.cannot_find_prog_unit then
331: hr_api.cannot_find_prog_unit_error
332: (p_module_name => 'DELETE_PERSON_TASK'
333: ,p_hook_type => 'AP'
334: );

Line 331: hr_api.cannot_find_prog_unit_error

327: ,p_object_version_number => p_object_version_number
328: );
329: exception
330: when hr_api.cannot_find_prog_unit then
331: hr_api.cannot_find_prog_unit_error
332: (p_module_name => 'DELETE_PERSON_TASK'
333: ,p_hook_type => 'AP'
334: );
335: end;

Line 340: raise hr_api.validate_enabled;

336: --
337: -- When in validation only mode raise the Validate_Enabled exception
338: --
339: if p_validate then
340: raise hr_api.validate_enabled;
341: end if;
342: --
343: -- Set all IN OUT and OUT parameters with out values
344: --

Line 349: when hr_api.validate_enabled then

345: if g_debug then
346: hr_utility.set_location(' Leaving:'||l_proc, 70);
347: end if;
348: exception
349: when hr_api.validate_enabled then
350: --
351: -- As the Validate_Enabled exception has been raised
352: -- we must rollback to the savepoint
353: --