DBA Data[Home] [Help]

APPS.PAY_SSR_BUS dependencies on HR_API

Line 41: if (l_api_updating and nvl(p_exclusion_rule_id, hr_api.g_number) <>

37: l_api_updating := pay_ssr_shd.api_updating
38: (p_sub_classification_rule_id => p_sub_classification_rule_id
39: ,p_object_version_number => p_object_version_number
40: );
41: if (l_api_updating and nvl(p_exclusion_rule_id, hr_api.g_number) <>
42: nvl(pay_ssr_shd.g_old_rec.exclusion_rule_id, hr_api.g_number)) or
43: not l_api_updating
44: then
45: if p_exclusion_rule_id is not null then

Line 42: nvl(pay_ssr_shd.g_old_rec.exclusion_rule_id, hr_api.g_number)) or

38: (p_sub_classification_rule_id => p_sub_classification_rule_id
39: ,p_object_version_number => p_object_version_number
40: );
41: if (l_api_updating and nvl(p_exclusion_rule_id, hr_api.g_number) <>
42: nvl(pay_ssr_shd.g_old_rec.exclusion_rule_id, hr_api.g_number)) or
43: not l_api_updating
44: then
45: if p_exclusion_rule_id is not null then
46: open csr_exclusion_rule_id_valid;

Line 150: if nvl(p_rec.element_type_id, hr_api.g_number) <>

146: close csr_disallow_update;
147: --
148: -- p_element_type_id
149: --
150: if nvl(p_rec.element_type_id, hr_api.g_number) <>
151: nvl(pay_ssr_shd.g_old_rec.element_type_id, hr_api.g_number)
152: then
153: hr_utility.set_location(l_proc, 20);
154: l_argument := 'p_element_type_id';

Line 151: nvl(pay_ssr_shd.g_old_rec.element_type_id, hr_api.g_number)

147: --
148: -- p_element_type_id
149: --
150: if nvl(p_rec.element_type_id, hr_api.g_number) <>
151: nvl(pay_ssr_shd.g_old_rec.element_type_id, hr_api.g_number)
152: then
153: hr_utility.set_location(l_proc, 20);
154: l_argument := 'p_element_type_id';
155: raise l_error;

Line 161: hr_api.argument_changed_error

157: hr_utility.set_location(' Leaving:'||l_proc, 25);
158: exception
159: when l_error then
160: hr_utility.set_location('Leaving:'||l_proc, 30);
161: hr_api.argument_changed_error
162: (p_api_name => l_proc
163: ,p_argument => l_argument);
164: when others then
165: hr_utility.set_location('Leaving:'||l_proc, 35);

Line 190: hr_api.mandatory_arg_error

186: hr_utility.set_location('Entering:'||l_proc, 5);
187: --
188: -- Check that the element type is not null.
189: --
190: hr_api.mandatory_arg_error
191: (p_api_name => l_proc
192: ,p_argument => 'p_element_type_id'
193: ,p_argument_value => p_element_type_id
194: );

Line 238: if (l_api_updating and nvl(p_element_classification, hr_api.g_varchar2)

234: l_api_updating := pay_ssr_shd.api_updating
235: (p_sub_classification_rule_id => p_sub_classification_rule_id
236: ,p_object_version_number => p_object_version_number
237: );
238: if (l_api_updating and nvl(p_element_classification, hr_api.g_varchar2)
239: <> nvl(pay_ssr_shd.g_old_rec.element_classification, hr_api.g_varchar2))
240: or not l_api_updating
241: then
242: --

Line 239: <> nvl(pay_ssr_shd.g_old_rec.element_classification, hr_api.g_varchar2))

235: (p_sub_classification_rule_id => p_sub_classification_rule_id
236: ,p_object_version_number => p_object_version_number
237: );
238: if (l_api_updating and nvl(p_element_classification, hr_api.g_varchar2)
239: <> nvl(pay_ssr_shd.g_old_rec.element_classification, hr_api.g_varchar2))
240: or not l_api_updating
241: then
242: --
243: -- Check that the element classification is not null.

Line 245: hr_api.mandatory_arg_error

241: then
242: --
243: -- Check that the element classification is not null.
244: --
245: hr_api.mandatory_arg_error
246: (p_api_name => l_proc
247: ,p_argument => 'p_element_classification'
248: ,p_argument_value => p_element_classification
249: );