DBA Data[Home] [Help]

APPS.PQH_RULE_ATTRIBUTES_API dependencies on HR_API

Line 51: when hr_api.cannot_find_prog_unit then

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

Line 52: hr_api.cannot_find_prog_unit_error

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

Line 84: when hr_api.cannot_find_prog_unit then

80: ,p_rule_attribute_id => p_rule_attribute_id
81: ,p_object_version_number => p_object_version_number);
82:
83: exception
84: when hr_api.cannot_find_prog_unit then
85: hr_api.cannot_find_prog_unit_error
86: (p_module_name => 'PQH_RULE_ATTRIBUTES_API.Insert_Rule_Attribute'
87: ,p_hook_type => 'AP'
88: );

Line 85: hr_api.cannot_find_prog_unit_error

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

Line 97: -- raise hr_api.validate_enabled;

93: -- Removed p_validate from the generated code to facilitate
94: -- writing wrappers to selfservice easily.
95: --
96: -- if p_validate then
97: -- raise hr_api.validate_enabled;
98: -- end if;
99: --
100: -- Set all output arguments
101: --

Line 109: when hr_api.validate_enabled then

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

Line 139: ,p_rule_set_id in number default hr_api.g_number

135:
136: procedure Update_Rule_Attribute
137: (p_rule_attribute_id in number
138: ,p_object_version_number in out nocopy number
139: ,p_rule_set_id in number default hr_api.g_number
140: ,p_attribute_code in varchar2 default hr_api.g_varchar2
141: ,p_operation_code in varchar2 default hr_api.g_varchar2
142: ,p_attribute_value in varchar2 default hr_api.g_varchar2
143: ) Is

Line 140: ,p_attribute_code in varchar2 default hr_api.g_varchar2

136: procedure Update_Rule_Attribute
137: (p_rule_attribute_id in number
138: ,p_object_version_number in out nocopy number
139: ,p_rule_set_id in number default hr_api.g_number
140: ,p_attribute_code in varchar2 default hr_api.g_varchar2
141: ,p_operation_code in varchar2 default hr_api.g_varchar2
142: ,p_attribute_value in varchar2 default hr_api.g_varchar2
143: ) Is
144:

Line 141: ,p_operation_code in varchar2 default hr_api.g_varchar2

137: (p_rule_attribute_id in number
138: ,p_object_version_number in out nocopy number
139: ,p_rule_set_id in number default hr_api.g_number
140: ,p_attribute_code in varchar2 default hr_api.g_varchar2
141: ,p_operation_code in varchar2 default hr_api.g_varchar2
142: ,p_attribute_value in varchar2 default hr_api.g_varchar2
143: ) Is
144:
145: l_proc varchar2(72) := g_package||'Update_Rule_Attribute';

Line 142: ,p_attribute_value in varchar2 default hr_api.g_varchar2

138: ,p_object_version_number in out nocopy number
139: ,p_rule_set_id in number default hr_api.g_number
140: ,p_attribute_code in varchar2 default hr_api.g_varchar2
141: ,p_operation_code in varchar2 default hr_api.g_varchar2
142: ,p_attribute_value in varchar2 default hr_api.g_varchar2
143: ) Is
144:
145: l_proc varchar2(72) := g_package||'Update_Rule_Attribute';
146: l_object_Version_Number PQH_RULE_ATTRIBUTES.OBJECT_VERSION_NUMBER%TYPE := P_Object_version_Number;

Line 169: when hr_api.cannot_find_prog_unit then

165: ,p_attribute_value => p_attribute_value
166: );
167:
168: exception
169: when hr_api.cannot_find_prog_unit then
170: hr_api.cannot_find_prog_unit_error
171: (p_module_name => 'Update_Rule_Attribute'
172: ,p_hook_type => 'BP'
173: );

Line 170: hr_api.cannot_find_prog_unit_error

166: );
167:
168: exception
169: when hr_api.cannot_find_prog_unit then
170: hr_api.cannot_find_prog_unit_error
171: (p_module_name => 'Update_Rule_Attribute'
172: ,p_hook_type => 'BP'
173: );
174: end;

Line 201: when hr_api.cannot_find_prog_unit then

197: ,p_attribute_value => p_attribute_value
198: );
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_Rule_Attribute'
204: ,p_hook_type => 'AP'
205: );

Line 202: hr_api.cannot_find_prog_unit_error

198: );
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_Rule_Attribute'
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 output arguments
215: --

Line 222: when hr_api.validate_enabled then

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

Line 272: when hr_api.cannot_find_prog_unit then

268: (p_rule_attribute_id => p_rule_attribute_id
269: ,p_object_version_number => p_object_version_number
270: );
271: exception
272: when hr_api.cannot_find_prog_unit then
273: hr_api.cannot_find_prog_unit_error
274: (p_module_name => 'delete_Rule_Attribute'
275: ,p_hook_type => 'BP');
276: end;

Line 273: hr_api.cannot_find_prog_unit_error

269: ,p_object_version_number => p_object_version_number
270: );
271: exception
272: when hr_api.cannot_find_prog_unit then
273: hr_api.cannot_find_prog_unit_error
274: (p_module_name => 'delete_Rule_Attribute'
275: ,p_hook_type => 'BP');
276: end;
277: --

Line 297: when hr_api.cannot_find_prog_unit then

293: ,p_object_version_number => p_object_version_number
294: );
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_Rule_Attribute'
300: ,p_hook_type => 'AP');
301: end;

Line 298: hr_api.cannot_find_prog_unit_error

294: );
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_Rule_Attribute'
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: --