DBA Data[Home] [Help]

APPS.PQH_DE_OPERATIONS_API dependencies on HR_API

Line 52: when hr_api.cannot_find_prog_unit then

48: ,P_DESCRIPTION => P_DESCRIPTION );
49:
50:
51: exception
52: when hr_api.cannot_find_prog_unit then
53: hr_api.cannot_find_prog_unit_error
54: (p_module_name => 'CREATE_OPERATIONS'
55: ,p_hook_type => 'BP'
56: );

Line 53: hr_api.cannot_find_prog_unit_error

49:
50:
51: exception
52: when hr_api.cannot_find_prog_unit then
53: hr_api.cannot_find_prog_unit_error
54: (p_module_name => 'CREATE_OPERATIONS'
55: ,p_hook_type => 'BP'
56: );
57: end;

Line 86: when hr_api.cannot_find_prog_unit then

82: ,p_object_version_number => l_object_version_number);
83:
84:
85: exception
86: when hr_api.cannot_find_prog_unit then
87: hr_api.cannot_find_prog_unit_error
88: (p_module_name => 'INSERT_OPERATIONS'
89: ,p_hook_type => 'AP'
90: );

Line 87: hr_api.cannot_find_prog_unit_error

83:
84:
85: exception
86: when hr_api.cannot_find_prog_unit then
87: hr_api.cannot_find_prog_unit_error
88: (p_module_name => 'INSERT_OPERATIONS'
89: ,p_hook_type => 'AP'
90: );
91: end;

Line 96: raise hr_api.validate_enabled;

92: --
93: -- When in validation only mode raise the Validate_Enabled exception
94: --
95: if p_validate then
96: raise hr_api.validate_enabled;
97: end if;
98: --
99: -- Set all output arguments
100: --

Line 107: when hr_api.validate_enabled then

103:
104: --
105: hr_utility.set_location(' Leaving:'||l_proc, 70);
106: exception
107: when hr_api.validate_enabled then
108: --
109: -- As the Validate_Enabled exception has been raised
110: -- we must rollback to the savepoint
111: --

Line 141: ,p_OPERATION_NUMBER In Varchar2 Default hr_api.g_Varchar2

137:
138: procedure Update_OPERATIONS
139: (p_validate in boolean default false
140: ,p_effective_date in date
141: ,p_OPERATION_NUMBER In Varchar2 Default hr_api.g_Varchar2
142: ,P_DESCRIPTION In Varchar2 Default hr_api.g_Varchar2
143: ,P_OPERATION_ID In Number
144: ,p_object_version_number in out nocopy number) Is
145:

Line 142: ,P_DESCRIPTION In Varchar2 Default hr_api.g_Varchar2

138: procedure Update_OPERATIONS
139: (p_validate in boolean default false
140: ,p_effective_date in date
141: ,p_OPERATION_NUMBER In Varchar2 Default hr_api.g_Varchar2
142: ,P_DESCRIPTION In Varchar2 Default hr_api.g_Varchar2
143: ,P_OPERATION_ID In Number
144: ,p_object_version_number in out nocopy number) Is
145:
146: l_proc varchar2(72) := g_package||'Update_OPERATIONS';

Line 175: when hr_api.cannot_find_prog_unit then

171: ,p_object_version_number => l_object_version_number);
172:
173:
174: exception
175: when hr_api.cannot_find_prog_unit then
176: hr_api.cannot_find_prog_unit_error
177: (p_module_name => 'UPDATE_OPERATIONS'
178: ,p_hook_type => 'BP'
179: );

Line 176: hr_api.cannot_find_prog_unit_error

172:
173:
174: exception
175: when hr_api.cannot_find_prog_unit then
176: hr_api.cannot_find_prog_unit_error
177: (p_module_name => 'UPDATE_OPERATIONS'
178: ,p_hook_type => 'BP'
179: );
180: end;

Line 204: when hr_api.cannot_find_prog_unit then

200: ,P_OPERATION_ID => p_OPERATION_ID
201: ,p_object_version_number => l_object_version_number);
202:
203: exception
204: when hr_api.cannot_find_prog_unit then
205: hr_api.cannot_find_prog_unit_error
206: (p_module_name => 'UPDATE_OPERATIONS'
207: ,p_hook_type => 'AP'
208: );

Line 205: hr_api.cannot_find_prog_unit_error

201: ,p_object_version_number => l_object_version_number);
202:
203: exception
204: when hr_api.cannot_find_prog_unit then
205: hr_api.cannot_find_prog_unit_error
206: (p_module_name => 'UPDATE_OPERATIONS'
207: ,p_hook_type => 'AP'
208: );
209: end;

Line 214: raise hr_api.validate_enabled;

210: --
211: -- When in validation only mode raise the Validate_Enabled exception
212: --
213: if p_validate then
214: raise hr_api.validate_enabled;
215: end if;
216: --
217: -- Set all output arguments
218: --

Line 225: when hr_api.validate_enabled then

221:
222: --
223: hr_utility.set_location(' Leaving:'||l_proc, 70);
224: exception
225: when hr_api.validate_enabled then
226: --
227: -- As the Validate_Enabled exception has been raised
228: -- we must rollback to the savepoint
229: --

Line 275: when hr_api.cannot_find_prog_unit then

271: PQH_DE_OPERATIONS_BK3.Delete_OPERATIONS_b
272: (p_OPERATION_Id => p_OPERATION_Id
273: ,p_object_version_number => p_object_version_number);
274: exception
275: when hr_api.cannot_find_prog_unit then
276: hr_api.cannot_find_prog_unit_error
277: (p_module_name => 'DELETE_OPERATIONS'
278: ,p_hook_type => 'BP');
279: end;

Line 276: hr_api.cannot_find_prog_unit_error

272: (p_OPERATION_Id => p_OPERATION_Id
273: ,p_object_version_number => p_object_version_number);
274: exception
275: when hr_api.cannot_find_prog_unit then
276: hr_api.cannot_find_prog_unit_error
277: (p_module_name => 'DELETE_OPERATIONS'
278: ,p_hook_type => 'BP');
279: end;
280: --

Line 297: when hr_api.cannot_find_prog_unit then

293: (p_OPERATION_Id => p_OPERATION_Id
294: ,p_object_version_number => p_object_version_number);
295:
296: exception
297: when hr_api.cannot_find_prog_unit then
298: hr_api.cannot_find_prog_unit_error
299: (p_module_name => 'DELETE_OPERATIONS'
300: ,p_hook_type => 'AP');
301: end;

Line 298: hr_api.cannot_find_prog_unit_error

294: ,p_object_version_number => p_object_version_number);
295:
296: exception
297: when hr_api.cannot_find_prog_unit then
298: hr_api.cannot_find_prog_unit_error
299: (p_module_name => 'DELETE_OPERATIONS'
300: ,p_hook_type => 'AP');
301: end;
302: --

Line 306: raise hr_api.validate_enabled;

302: --
303: -- When in validation only mode raise the Validate_Enabled exception
304: --
305: if p_validate then
306: raise hr_api.validate_enabled;
307: end if;
308: --
309: -- Set all output arguments
310: --

Line 313: when hr_api.validate_enabled then

309: -- Set all output arguments
310: --
311: hr_utility.set_location(' Leaving:'||l_proc, 70);
312: exception
313: when hr_api.validate_enabled then
314: --
315: -- As the Validate_Enabled exception has been raised
316: -- we must rollback to the savepoint
317: --