DBA Data[Home] [Help]

APPS.HR_NAME_FORMAT_API dependencies on HR_API

Line 53: when hr_api.cannot_find_prog_unit then

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

Line 54: hr_api.cannot_find_prog_unit_error

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

Line 85: when hr_api.cannot_find_prog_unit then

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

Line 86: hr_api.cannot_find_prog_unit_error

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

Line 95: raise hr_api.validate_enabled;

91: --
92: -- When in validation only mode raise the Validate_Enabled exception
93: --
94: if p_validate then
95: raise hr_api.validate_enabled;
96: end if;
97: --
98: -- Set all OUT parameters with out values
99: --

Line 105: when hr_api.validate_enabled then

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

Line 175: when hr_api.cannot_find_prog_unit then

171: ,p_format_mask => p_format_mask
172: ,p_object_version_number => p_object_version_number
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_name_format'
178: ,p_hook_type => 'BP'
179: );

Line 176: hr_api.cannot_find_prog_unit_error

172: ,p_object_version_number => p_object_version_number
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_name_format'
178: ,p_hook_type => 'BP'
179: );
180: end;

Line 201: when hr_api.cannot_find_prog_unit then

197: ,p_format_mask => p_format_mask
198: ,p_object_version_number => l_object_version_number
199: );
200: exception
201: when hr_api.cannot_find_prog_unit then
202: hr_api.cannot_find_prog_unit_error
203: (p_module_name => 'update_name_format'
204: ,p_hook_type => 'AP'
205: );

Line 202: hr_api.cannot_find_prog_unit_error

198: ,p_object_version_number => l_object_version_number
199: );
200: exception
201: when hr_api.cannot_find_prog_unit then
202: hr_api.cannot_find_prog_unit_error
203: (p_module_name => 'update_name_format'
204: ,p_hook_type => 'AP'
205: );
206: end;

Line 211: raise hr_api.validate_enabled;

207: --
208: -- When in validation only mode raise the Validate_Enabled exception
209: --
210: if p_validate then
211: raise hr_api.validate_enabled;
212: end if;
213: --
214: -- Set all OUT parameters with out values
215: --

Line 220: when hr_api.validate_enabled then

216: p_object_version_number := l_object_version_number;
217: --
218: hr_utility.set_location(' Leaving:'||l_proc, 70);
219: exception
220: when hr_api.validate_enabled then
221: --
222: -- As the Validate_Enabled exception has been raised
223: -- we must rollback to the savepoint
224: --

Line 263: when hr_api.cannot_find_prog_unit then

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

Line 264: hr_api.cannot_find_prog_unit_error

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

Line 285: when hr_api.cannot_find_prog_unit then

281: (p_name_format_id => p_name_format_id
282: ,p_object_version_number => l_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_name_format'
288: ,p_hook_type => 'AP'
289: );

Line 286: hr_api.cannot_find_prog_unit_error

282: ,p_object_version_number => l_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_name_format'
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: -- Set all OUT parameters with out values
299: --

Line 304: when hr_api.validate_enabled then

300: p_object_version_number := l_object_version_number;
301: --
302: hr_utility.set_location(' Leaving:'||l_proc, 70);
303: exception
304: when hr_api.validate_enabled then
305: --
306: -- As the Validate_Enabled exception has been raised
307: -- we must rollback to the savepoint
308: --