DBA Data[Home] [Help]

APPS.FF_FUNCTION_PARAMETERS_API dependencies on HR_API

Line 62: when hr_api.cannot_find_prog_unit then

58: ,p_optional => p_optional
59: ,p_continuing_parameter => p_continuing_parameter
60: );
61: exception
62: when hr_api.cannot_find_prog_unit then
63: hr_api.cannot_find_prog_unit_error
64: (p_module_name => 'CREATE_PARAMETER'
65: ,p_hook_type => 'BP'
66: );

Line 63: hr_api.cannot_find_prog_unit_error

59: ,p_continuing_parameter => p_continuing_parameter
60: );
61: exception
62: when hr_api.cannot_find_prog_unit then
63: hr_api.cannot_find_prog_unit_error
64: (p_module_name => 'CREATE_PARAMETER'
65: ,p_hook_type => 'BP'
66: );
67: end;

Line 112: when hr_api.cannot_find_prog_unit then

108: ,p_object_version_number => l_object_version_number
109: );
110:
111: exception
112: when hr_api.cannot_find_prog_unit then
113: hr_api.cannot_find_prog_unit_error
114: (p_module_name => 'CREATE_PARAMETER'
115: ,p_hook_type => 'AP'
116: );

Line 113: hr_api.cannot_find_prog_unit_error

109: );
110:
111: exception
112: when hr_api.cannot_find_prog_unit then
113: hr_api.cannot_find_prog_unit_error
114: (p_module_name => 'CREATE_PARAMETER'
115: ,p_hook_type => 'AP'
116: );
117: end;

Line 122: raise hr_api.validate_enabled;

118: --
119: -- When in validation only mode raise the Validate_Enabled exception
120: --
121: if p_validate then
122: raise hr_api.validate_enabled;
123: end if;
124: --
125: -- Set all IN OUT and OUT parameters with out values
126: --

Line 133: when hr_api.validate_enabled then

129:
130: --
131: hr_utility.set_location(' Leaving:'||l_proc, 70);
132: exception
133: when hr_api.validate_enabled then
134: --
135: -- As the Validate_Enabled exception has been raised
136: -- we must rollback to the savepoint
137: --

Line 175: ,p_class in varchar2 default hr_api.g_varchar2

171: ,p_effective_date in date
172: ,p_function_id in number
173: ,p_sequence_number in number
174: ,p_object_version_number in out nocopy number
175: ,p_class in varchar2 default hr_api.g_varchar2
176: ,p_data_type in varchar2 default hr_api.g_varchar2
177: ,p_name in varchar2 default hr_api.g_varchar2
178: ,p_optional in varchar2 default hr_api.g_varchar2
179: ,p_continuing_parameter in varchar2 default hr_api.g_varchar2

Line 176: ,p_data_type in varchar2 default hr_api.g_varchar2

172: ,p_function_id in number
173: ,p_sequence_number in number
174: ,p_object_version_number in out nocopy number
175: ,p_class in varchar2 default hr_api.g_varchar2
176: ,p_data_type in varchar2 default hr_api.g_varchar2
177: ,p_name in varchar2 default hr_api.g_varchar2
178: ,p_optional in varchar2 default hr_api.g_varchar2
179: ,p_continuing_parameter in varchar2 default hr_api.g_varchar2
180: ) is

Line 177: ,p_name in varchar2 default hr_api.g_varchar2

173: ,p_sequence_number in number
174: ,p_object_version_number in out nocopy number
175: ,p_class in varchar2 default hr_api.g_varchar2
176: ,p_data_type in varchar2 default hr_api.g_varchar2
177: ,p_name in varchar2 default hr_api.g_varchar2
178: ,p_optional in varchar2 default hr_api.g_varchar2
179: ,p_continuing_parameter in varchar2 default hr_api.g_varchar2
180: ) is
181: --

Line 178: ,p_optional in varchar2 default hr_api.g_varchar2

174: ,p_object_version_number in out nocopy number
175: ,p_class in varchar2 default hr_api.g_varchar2
176: ,p_data_type in varchar2 default hr_api.g_varchar2
177: ,p_name in varchar2 default hr_api.g_varchar2
178: ,p_optional in varchar2 default hr_api.g_varchar2
179: ,p_continuing_parameter in varchar2 default hr_api.g_varchar2
180: ) is
181: --
182: -- Declare cursors and local variables

Line 179: ,p_continuing_parameter in varchar2 default hr_api.g_varchar2

175: ,p_class in varchar2 default hr_api.g_varchar2
176: ,p_data_type in varchar2 default hr_api.g_varchar2
177: ,p_name in varchar2 default hr_api.g_varchar2
178: ,p_optional in varchar2 default hr_api.g_varchar2
179: ,p_continuing_parameter in varchar2 default hr_api.g_varchar2
180: ) is
181: --
182: -- Declare cursors and local variables
183: --

Line 220: when hr_api.cannot_find_prog_unit then

216: ,p_name => p_name
217: ,p_optional => p_optional
218: ,p_continuing_parameter => p_continuing_parameter
219: ); exception
220: when hr_api.cannot_find_prog_unit then
221: hr_api.cannot_find_prog_unit_error
222: (p_module_name => 'UPDATE_PARAMETER'
223: ,p_hook_type => 'BP'
224: );

Line 221: hr_api.cannot_find_prog_unit_error

217: ,p_optional => p_optional
218: ,p_continuing_parameter => p_continuing_parameter
219: ); exception
220: when hr_api.cannot_find_prog_unit then
221: hr_api.cannot_find_prog_unit_error
222: (p_module_name => 'UPDATE_PARAMETER'
223: ,p_hook_type => 'BP'
224: );
225: end;

Line 271: when hr_api.cannot_find_prog_unit then

267: ,p_optional => l_optional
268: ,p_continuing_parameter => l_continuing_parameter
269: );
270: exception
271: when hr_api.cannot_find_prog_unit then
272: hr_api.cannot_find_prog_unit_error
273: (p_module_name => 'UPDATE_PARAMETER'
274: ,p_hook_type => 'AP'
275: );

Line 272: hr_api.cannot_find_prog_unit_error

268: ,p_continuing_parameter => l_continuing_parameter
269: );
270: exception
271: when hr_api.cannot_find_prog_unit then
272: hr_api.cannot_find_prog_unit_error
273: (p_module_name => 'UPDATE_PARAMETER'
274: ,p_hook_type => 'AP'
275: );
276: end;

Line 281: raise hr_api.validate_enabled;

277: --
278: -- When in validation only mode raise the Validate_Enabled exception
279: --
280: if p_validate then
281: raise hr_api.validate_enabled;
282: end if;
283: --
284: -- Set all IN OUT and OUT parameters with out values
285: --

Line 290: when hr_api.validate_enabled then

286: p_object_version_number := l_object_version_number;
287: --
288: hr_utility.set_location(' Leaving:'||l_proc, 70);
289: exception
290: when hr_api.validate_enabled then
291: --
292: -- As the Validate_Enabled exception has been raised
293: -- we must rollback to the savepoint
294: --

Line 354: when hr_api.cannot_find_prog_unit then

350: ,p_sequence_number => p_sequence_number
351: ,p_object_version_number => p_object_version_number
352: );
353: exception
354: when hr_api.cannot_find_prog_unit then
355: hr_api.cannot_find_prog_unit_error
356: (p_module_name => 'DELETE_PARAMETER'
357: ,p_hook_type => 'BP'
358: );

Line 355: hr_api.cannot_find_prog_unit_error

351: ,p_object_version_number => p_object_version_number
352: );
353: exception
354: when hr_api.cannot_find_prog_unit then
355: hr_api.cannot_find_prog_unit_error
356: (p_module_name => 'DELETE_PARAMETER'
357: ,p_hook_type => 'BP'
358: );
359: end;

Line 383: when hr_api.cannot_find_prog_unit then

379: ,p_sequence_number => p_sequence_number
380: ,p_object_version_number => p_object_version_number
381: );
382: exception
383: when hr_api.cannot_find_prog_unit then
384: hr_api.cannot_find_prog_unit_error
385: (p_module_name => 'DELETE_PARAMETER'
386: ,p_hook_type => 'AP'
387: );

Line 384: hr_api.cannot_find_prog_unit_error

380: ,p_object_version_number => p_object_version_number
381: );
382: exception
383: when hr_api.cannot_find_prog_unit then
384: hr_api.cannot_find_prog_unit_error
385: (p_module_name => 'DELETE_PARAMETER'
386: ,p_hook_type => 'AP'
387: );
388: end;

Line 393: raise hr_api.validate_enabled;

389: --
390: -- When in validation only mode raise the Validate_Enabled exception
391: --
392: if p_validate then
393: raise hr_api.validate_enabled;
394: end if;
395: --
396: -- Set all IN OUT and OUT parameters with out values
397: --

Line 400: when hr_api.validate_enabled then

396: -- Set all IN OUT and OUT parameters with out values
397: --
398: hr_utility.set_location(' Leaving:'||l_proc, 70);
399: exception
400: when hr_api.validate_enabled then
401: --
402: -- As the Validate_Enabled exception has been raised
403: -- we must rollback to the savepoint
404: --