DBA Data[Home] [Help]

APPS.PAY_ELE_BUS dependencies on HR_UTILITY

Line 42: hr_utility.set_location('Entering:'|| l_proc, 10);

38: l_proc varchar2(72) := g_package||'set_security_group_id';
39: --
40: begin
41: --
42: hr_utility.set_location('Entering:'|| l_proc, 10);
43: --
44: -- Ensure that all the mandatory parameter are not null
45: --
46: hr_api.mandatory_arg_error

Line 73: hr_utility.set_location(' Leaving:'|| l_proc, 20);

69: hr_api.set_security_group_id
70: (p_security_group_id => l_security_group_id
71: );
72: --
73: hr_utility.set_location(' Leaving:'|| l_proc, 20);
74: --
75: end set_security_group_id;
76: --
77: -- ---------------------------------------------------------------------------

Line 104: hr_utility.set_location('Entering:'|| l_proc, 10);

100: l_proc varchar2(72) := g_package||'return_legislation_code';
101: --
102: Begin
103: --
104: hr_utility.set_location('Entering:'|| l_proc, 10);
105: --
106: -- Ensure that all the mandatory parameter are not null
107: --
108: hr_api.mandatory_arg_error

Line 122: hr_utility.set_location(l_proc, 20);

118: -- call to this function. Just return the value in the global
119: -- variable.
120: --
121: l_legislation_code := pay_ele_bus.g_legislation_code;
122: hr_utility.set_location(l_proc, 20);
123: else
124: --
125: -- The ID is different to the last call to this function
126: -- or this is the first call to this function.

Line 139: hr_utility.set_location(l_proc,30);

135: close csr_leg_code;
136: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
137: fnd_message.raise_error;
138: end if;
139: hr_utility.set_location(l_proc,30);
140: --
141: -- Set the global variables so the values are
142: -- available for the next call to this function.
143: --

Line 148: hr_utility.set_location(' Leaving:'|| l_proc, 40);

144: close csr_leg_code;
145: pay_ele_bus.g_element_entry_id := p_element_entry_id;
146: pay_ele_bus.g_legislation_code := l_legislation_code;
147: end if;
148: hr_utility.set_location(' Leaving:'|| l_proc, 40);
149: return l_legislation_code;
150: end return_legislation_code;
151: --
152: -- ----------------------------------------------------------------------------

Line 187: hr_utility.set_location('Entering:'||l_proc,10);

183: --
184: l_proc varchar2(72) := g_package || 'chk_df';
185: --
186: begin
187: hr_utility.set_location('Entering:'||l_proc,10);
188: --
189: if ((p_rec.element_entry_id is not null) and (
190: nvl(pay_ele_shd.g_old_rec.attribute_category, hr_api.g_varchar2) <>
191: nvl(p_rec.attribute_category, hr_api.g_varchar2) or

Line 286: hr_utility.set_location(' Leaving:'||l_proc,20);

282: ,p_attribute20_value => p_rec.attribute20
283: );
284: end if;
285: --
286: hr_utility.set_location(' Leaving:'||l_proc,20);
287: end chk_df;
288: --
289: -- ----------------------------------------------------------------------------
290: -- |-----------------------< chk_non_updateable_args >------------------------|

Line 385: hr_utility.set_location(l_proc, 10);

381: fnd_message.set_token('STEP ', '5');
382: fnd_message.raise_error;
383: END IF;
384: --
385: hr_utility.set_location(l_proc, 10);
386: --
387: if nvl(p_rec.element_type_id, hr_api.g_number) <>
388: nvl(pay_ele_shd.g_old_rec.element_type_id, hr_api.g_number) then
389: l_argument := 'element_type_id';

Line 392: hr_utility.set_location(l_proc, 20);

388: nvl(pay_ele_shd.g_old_rec.element_type_id, hr_api.g_number) then
389: l_argument := 'element_type_id';
390: raise l_error;
391: end if;
392: hr_utility.set_location(l_proc, 20);
393: --
394: EXCEPTION
395: WHEN l_error THEN
396: hr_api.argument_changed_error

Line 633: hr_utility.set_location('Entering:'||l_proc, 5);

629: --
630: l_proc varchar2(72) := g_package||'insert_validate';
631: --
632: Begin
633: hr_utility.set_location('Entering:'||l_proc, 5);
634: --
635: -- Call all supporting business operations
636: --
637: --

Line 648: hr_utility.set_location(' Leaving:'||l_proc, 10);

644: --
645: --
646: pay_ele_bus.chk_df(p_rec);
647: --
648: hr_utility.set_location(' Leaving:'||l_proc, 10);
649: End insert_validate;
650: --
651: -- ----------------------------------------------------------------------------
652: -- |---------------------------< update_validate >----------------------------|

Line 665: hr_utility.set_location('Entering:'||l_proc, 5);

661: --
662: l_proc varchar2(72) := g_package||'update_validate';
663: --
664: Begin
665: hr_utility.set_location('Entering:'||l_proc, 5);
666: --
667: -- Call all supporting business operations
668: --
669: --

Line 695: hr_utility.set_location(' Leaving:'||l_proc, 10);

691: --
692: --
693: pay_ele_bus.chk_df(p_rec);
694: --
695: hr_utility.set_location(' Leaving:'||l_proc, 10);
696: End update_validate;
697: --
698: -- ----------------------------------------------------------------------------
699: -- |---------------------------< delete_validate >----------------------------|

Line 712: hr_utility.set_location('Entering:'||l_proc, 5);

708: --
709: l_proc varchar2(72) := g_package||'delete_validate';
710: --
711: Begin
712: hr_utility.set_location('Entering:'||l_proc, 5);
713: --
714: -- Call all supporting business operations
715: --
716: dt_delete_validate

Line 723: hr_utility.set_location(' Leaving:'||l_proc, 10);

719: ,p_validation_end_date => p_validation_end_date
720: ,p_element_entry_id => p_rec.element_entry_id
721: );
722: --
723: hr_utility.set_location(' Leaving:'||l_proc, 10);
724: End delete_validate;
725: --
726: end pay_ele_bus;