DBA Data[Home] [Help]

APPS.IRC_NOTES_API dependencies on HR_API

Line 43: when hr_api.cannot_find_prog_unit then

39: (p_offer_status_history_id => p_offer_status_history_id
40: ,p_note_text => p_note_text
41: );
42: exception
43: when hr_api.cannot_find_prog_unit then
44: hr_api.cannot_find_prog_unit_error
45: (p_module_name => 'CREATE_NOTE'
46: ,p_hook_type => 'BP'
47: );

Line 44: hr_api.cannot_find_prog_unit_error

40: ,p_note_text => p_note_text
41: );
42: exception
43: when hr_api.cannot_find_prog_unit then
44: hr_api.cannot_find_prog_unit_error
45: (p_module_name => 'CREATE_NOTE'
46: ,p_hook_type => 'BP'
47: );
48: end;

Line 70: when hr_api.cannot_find_prog_unit then

66: ,p_note_text => p_note_text
67: ,p_object_version_number => l_object_version_number
68: );
69: exception
70: when hr_api.cannot_find_prog_unit then
71: hr_api.cannot_find_prog_unit_error
72: (p_module_name => 'CREATE_NOTE'
73: ,p_hook_type => 'AP'
74: );

Line 71: hr_api.cannot_find_prog_unit_error

67: ,p_object_version_number => l_object_version_number
68: );
69: exception
70: when hr_api.cannot_find_prog_unit then
71: hr_api.cannot_find_prog_unit_error
72: (p_module_name => 'CREATE_NOTE'
73: ,p_hook_type => 'AP'
74: );
75: end;

Line 80: raise hr_api.validate_enabled;

76: --
77: -- When in validation only mode raise the Validate_Enabled exception
78: --
79: if p_validate then
80: raise hr_api.validate_enabled;
81: end if;
82: --
83: -- Set all IN OUT and OUT parameters with out values
84: --

Line 90: when hr_api.validate_enabled then

86: p_object_version_number := l_object_version_number;
87: --
88: hr_utility.set_location(' Leaving:'||l_proc, 70);
89: exception
90: when hr_api.validate_enabled then
91: --
92: -- As the Validate_Enabled exception has been raised
93: -- we must rollback to the savepoint
94: --

Line 128: ,p_note_text in varchar2 default hr_api.g_varchar2

124: procedure UPDATE_NOTE
125: (p_validate in boolean default false
126: ,p_note_id in number
127: ,p_offer_status_history_id in number
128: ,p_note_text in varchar2 default hr_api.g_varchar2
129: ,p_object_version_number in out nocopy number
130: ) is
131: --
132: -- Declare cursors and local variables

Line 156: when hr_api.cannot_find_prog_unit then

152: ,p_note_text => p_note_text
153: ,p_object_version_number => p_object_version_number
154: );
155: exception
156: when hr_api.cannot_find_prog_unit then
157: hr_api.cannot_find_prog_unit_error
158: (p_module_name => 'UPDATE_NOTE'
159: ,p_hook_type => 'BP'
160: );

Line 157: hr_api.cannot_find_prog_unit_error

153: ,p_object_version_number => p_object_version_number
154: );
155: exception
156: when hr_api.cannot_find_prog_unit then
157: hr_api.cannot_find_prog_unit_error
158: (p_module_name => 'UPDATE_NOTE'
159: ,p_hook_type => 'BP'
160: );
161: end;

Line 185: when hr_api.cannot_find_prog_unit then

181: ,p_note_text => p_note_text
182: ,p_object_version_number => l_object_version_number
183: );
184: exception
185: when hr_api.cannot_find_prog_unit then
186: hr_api.cannot_find_prog_unit_error
187: (p_module_name => 'UPDATE_NOTE'
188: ,p_hook_type => 'AP'
189: );

Line 186: hr_api.cannot_find_prog_unit_error

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

Line 195: raise hr_api.validate_enabled;

191: --
192: -- When in validation only mode raise the Validate_Enabled exception
193: --
194: if p_validate then
195: raise hr_api.validate_enabled;
196: end if;
197: --
198: -- Set all IN OUT and OUT parameters with out values
199: --

Line 204: when hr_api.validate_enabled then

200: p_object_version_number := l_object_version_number;
201: --
202: hr_utility.set_location(' Leaving:'||l_proc, 70);
203: exception
204: when hr_api.validate_enabled then
205: --
206: -- As the Validate_Enabled exception has been raised
207: -- we must rollback to the savepoint
208: --

Line 262: when hr_api.cannot_find_prog_unit then

258: (p_note_id => p_note_id
259: ,p_object_version_number => p_object_version_number
260: );
261: exception
262: when hr_api.cannot_find_prog_unit then
263: hr_api.cannot_find_prog_unit_error
264: (p_module_name => 'DELETE_NOTE'
265: ,p_hook_type => 'BP'
266: );

Line 263: hr_api.cannot_find_prog_unit_error

259: ,p_object_version_number => p_object_version_number
260: );
261: exception
262: when hr_api.cannot_find_prog_unit then
263: hr_api.cannot_find_prog_unit_error
264: (p_module_name => 'DELETE_NOTE'
265: ,p_hook_type => 'BP'
266: );
267: end;

Line 285: when hr_api.cannot_find_prog_unit then

281: (p_note_id => p_note_id
282: ,p_object_version_number => p_object_version_number
283: );
284: exception
285: when hr_api.cannot_find_prog_unit then
286: hr_api.cannot_find_prog_unit_error
287: (p_module_name => 'DELETE_NOTE'
288: ,p_hook_type => 'AP'
289: );

Line 286: hr_api.cannot_find_prog_unit_error

282: ,p_object_version_number => p_object_version_number
283: );
284: exception
285: when hr_api.cannot_find_prog_unit then
286: hr_api.cannot_find_prog_unit_error
287: (p_module_name => 'DELETE_NOTE'
288: ,p_hook_type => 'AP'
289: );
290: end;

Line 295: raise hr_api.validate_enabled;

291: --
292: -- When in validation only mode raise the Validate_Enabled exception
293: --
294: if p_validate then
295: raise hr_api.validate_enabled;
296: end if;
297: --
298: hr_utility.set_location(' Leaving:'||l_proc, 70);
299: exception

Line 300: when hr_api.validate_enabled then

296: end if;
297: --
298: hr_utility.set_location(' Leaving:'||l_proc, 70);
299: exception
300: when hr_api.validate_enabled then
301: --
302: -- As the Validate_Enabled exception has been raised
303: -- we must rollback to the savepoint
304: --