DBA Data[Home] [Help]

APPS.PAY_NCR_API dependencies on HR_API

Line 50: when hr_api.cannot_find_prog_unit then

46: ,p_add_or_subtract => p_add_or_subtract
47: ,p_date_input_value_id => p_date_input_value_id
48: );
49: exception
50: when hr_api.cannot_find_prog_unit then
51: hr_api.cannot_find_prog_unit_error
52: (p_module_name => 'create_pay_net_calc_rule'
53: ,p_hook_type => 'BP'
54: );

Line 51: hr_api.cannot_find_prog_unit_error

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

Line 94: when hr_api.cannot_find_prog_unit then

90: ,p_net_calculation_rule_id => l_net_calculation_rule_id
91: ,p_object_version_number => l_object_version_number
92: );
93: exception
94: when hr_api.cannot_find_prog_unit then
95: hr_api.cannot_find_prog_unit_error
96: (p_module_name => 'create_pay_net_calc_rule'
97: ,p_hook_type => 'AP'
98: );

Line 95: hr_api.cannot_find_prog_unit_error

91: ,p_object_version_number => l_object_version_number
92: );
93: exception
94: when hr_api.cannot_find_prog_unit then
95: hr_api.cannot_find_prog_unit_error
96: (p_module_name => 'create_pay_net_calc_rule'
97: ,p_hook_type => 'AP'
98: );
99: end;

Line 105: raise hr_api.validate_enabled;

101: --
102: -- When in validation only mode raise the Validate_Enabled exception
103: --
104: if p_validate then
105: raise hr_api.validate_enabled;
106: end if;
107: --
108: -- Set all output arguments
109: --

Line 116: when hr_api.validate_enabled then

112:
113: --
114: hr_utility.set_location(' Leaving:'||l_proc, 70);
115: exception
116: when hr_api.validate_enabled then
117: --
118: -- As the Validate_Enabled exception has been raised
119: -- we must rollback to the savepoint
120: --

Line 147: ,p_accrual_plan_id in number default hr_api.g_number

143: --
144: procedure update_pay_net_calc_rule
145: (p_validate in boolean default false
146: ,p_net_calculation_rule_id in number
147: ,p_accrual_plan_id in number default hr_api.g_number
148: ,p_input_value_id in number default hr_api.g_number
149: ,p_add_or_subtract in varchar2 default hr_api.g_varchar2
150: ,p_date_input_value_id in number default hr_api.g_number
151: ,p_object_version_number in out nocopy number

Line 148: ,p_input_value_id in number default hr_api.g_number

144: procedure update_pay_net_calc_rule
145: (p_validate in boolean default false
146: ,p_net_calculation_rule_id in number
147: ,p_accrual_plan_id in number default hr_api.g_number
148: ,p_input_value_id in number default hr_api.g_number
149: ,p_add_or_subtract in varchar2 default hr_api.g_varchar2
150: ,p_date_input_value_id in number default hr_api.g_number
151: ,p_object_version_number in out nocopy number
152: ) is

Line 149: ,p_add_or_subtract in varchar2 default hr_api.g_varchar2

145: (p_validate in boolean default false
146: ,p_net_calculation_rule_id in number
147: ,p_accrual_plan_id in number default hr_api.g_number
148: ,p_input_value_id in number default hr_api.g_number
149: ,p_add_or_subtract in varchar2 default hr_api.g_varchar2
150: ,p_date_input_value_id in number default hr_api.g_number
151: ,p_object_version_number in out nocopy number
152: ) is
153: --

Line 150: ,p_date_input_value_id in number default hr_api.g_number

146: ,p_net_calculation_rule_id in number
147: ,p_accrual_plan_id in number default hr_api.g_number
148: ,p_input_value_id in number default hr_api.g_number
149: ,p_add_or_subtract in varchar2 default hr_api.g_varchar2
150: ,p_date_input_value_id in number default hr_api.g_number
151: ,p_object_version_number in out nocopy number
152: ) is
153: --
154: -- Declare cursors and local variables

Line 181: when hr_api.cannot_find_prog_unit then

177: ,p_date_input_value_id => p_date_input_value_id
178: ,p_object_version_number => p_object_version_number
179: );
180: exception
181: when hr_api.cannot_find_prog_unit then
182: hr_api.cannot_find_prog_unit_error
183: (p_module_name => 'update_pay_net_calc_rule'
184: ,p_hook_type => 'BP'
185: );

Line 182: hr_api.cannot_find_prog_unit_error

178: ,p_object_version_number => p_object_version_number
179: );
180: exception
181: when hr_api.cannot_find_prog_unit then
182: hr_api.cannot_find_prog_unit_error
183: (p_module_name => 'update_pay_net_calc_rule'
184: ,p_hook_type => 'BP'
185: );
186: end;

Line 224: when hr_api.cannot_find_prog_unit then

220: ,p_date_input_value_id => p_date_input_value_id
221: ,p_object_version_number => l_object_version_number
222: );
223: exception
224: when hr_api.cannot_find_prog_unit then
225: hr_api.cannot_find_prog_unit_error
226: (p_module_name => 'update_pay_net_calc_rule'
227: ,p_hook_type => 'AP'
228: );

Line 225: hr_api.cannot_find_prog_unit_error

221: ,p_object_version_number => l_object_version_number
222: );
223: exception
224: when hr_api.cannot_find_prog_unit then
225: hr_api.cannot_find_prog_unit_error
226: (p_module_name => 'update_pay_net_calc_rule'
227: ,p_hook_type => 'AP'
228: );
229: end;

Line 235: raise hr_api.validate_enabled;

231: --
232: -- When in validation only mode raise the Validate_Enabled exception
233: --
234: if p_validate then
235: raise hr_api.validate_enabled;
236: end if;
237: --
238: -- Set all output arguments
239: --

Line 246: when hr_api.validate_enabled then

242:
243: --
244: hr_utility.set_location(' Leaving:'||l_proc, 70);
245: exception
246: when hr_api.validate_enabled then
247: --
248: -- As the Validate_Enabled exception has been raised
249: -- we must rollback to the savepoint
250: --

Line 303: when hr_api.cannot_find_prog_unit then

299: (p_net_calculation_rule_id => p_net_calculation_rule_id
300: ,p_object_version_number => p_object_version_number
301: );
302: exception
303: when hr_api.cannot_find_prog_unit then
304: hr_api.cannot_find_prog_unit_error
305: (p_module_name => 'delete_pay_net_calc_rule'
306: ,p_hook_type => 'BP'
307: );

Line 304: hr_api.cannot_find_prog_unit_error

300: ,p_object_version_number => p_object_version_number
301: );
302: exception
303: when hr_api.cannot_find_prog_unit then
304: hr_api.cannot_find_prog_unit_error
305: (p_module_name => 'delete_pay_net_calc_rule'
306: ,p_hook_type => 'BP'
307: );
308: end;

Line 337: when hr_api.cannot_find_prog_unit then

333: (p_net_calculation_rule_id => p_net_calculation_rule_id
334: ,p_object_version_number => p_object_version_number
335: );
336: exception
337: when hr_api.cannot_find_prog_unit then
338: hr_api.cannot_find_prog_unit_error
339: (p_module_name => 'delete_pay_net_calc_rule'
340: ,p_hook_type => 'AP'
341: );

Line 338: hr_api.cannot_find_prog_unit_error

334: ,p_object_version_number => p_object_version_number
335: );
336: exception
337: when hr_api.cannot_find_prog_unit then
338: hr_api.cannot_find_prog_unit_error
339: (p_module_name => 'delete_pay_net_calc_rule'
340: ,p_hook_type => 'AP'
341: );
342: end;

Line 348: raise hr_api.validate_enabled;

344: --
345: -- When in validation only mode raise the Validate_Enabled exception
346: --
347: if p_validate then
348: raise hr_api.validate_enabled;
349: end if;
350: --
351: -- Set all output arguments
352: --

Line 357: when hr_api.validate_enabled then

353:
354: --
355: hr_utility.set_location(' Leaving:'||l_proc, 70);
356: exception
357: when hr_api.validate_enabled then
358: --
359: -- As the Validate_Enabled exception has been raised
360: -- we must rollback to the savepoint
361: --