DBA Data[Home] [Help]

APPS.PAY_BAD_BUS dependencies on PAY_BAD_BUS

Line 1: Package Body pay_bad_bus as

1: Package Body pay_bad_bus as
2: /* $Header: pybadrhi.pkb 115.3 2003/05/28 18:43:28 rthirlby noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' pay_bad_bus.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pay_bad_bus.'; -- Global package name
9: --
10: -- The following two global variables are only to be
11: -- used by the return_legislation_code function.
12: --

Line 115: if ( nvl(pay_bad_bus.g_attribute_id, hr_api.g_number)

111: ,p_argument => 'attribute_id'
112: ,p_argument_value => p_attribute_id
113: );
114: --
115: if ( nvl(pay_bad_bus.g_attribute_id, hr_api.g_number)
116: = p_attribute_id) then
117: --
118: -- The legislation code has already been found with a previous
119: -- call to this function. Just return the value in the global

Line 122: l_legislation_code := pay_bad_bus.g_legislation_code;

118: -- The legislation code has already been found with a previous
119: -- call to this function. Just return the value in the global
120: -- variable.
121: --
122: l_legislation_code := pay_bad_bus.g_legislation_code;
123: hr_utility.set_location(l_proc, 20);
124: else
125: --
126: -- The ID is different to the last call to this function

Line 146: pay_bad_bus.g_attribute_id := p_attribute_id;

142: -- Set the global variables so the values are
143: -- available for the next call to this function.
144: --
145: close csr_leg_code;
146: pay_bad_bus.g_attribute_id := p_attribute_id;
147: pay_bad_bus.g_legislation_code := l_legislation_code;
148: end if;
149: hr_utility.set_location(' Leaving:'|| l_proc, 40);
150: return l_legislation_code;

Line 147: pay_bad_bus.g_legislation_code := l_legislation_code;

143: -- available for the next call to this function.
144: --
145: close csr_leg_code;
146: pay_bad_bus.g_attribute_id := p_attribute_id;
147: pay_bad_bus.g_legislation_code := l_legislation_code;
148: end if;
149: hr_utility.set_location(' Leaving:'|| l_proc, 40);
150: return l_legislation_code;
151: end return_legislation_code;

Line 885: pay_bad_bus.chk_attribute_name

881: END IF;
882: --
883: -- Validate Dependent Attributes
884: --
885: pay_bad_bus.chk_attribute_name
886: (p_attribute_id => p_rec.attribute_id
887: ,p_attribute_name => p_rec.attribute_name
888: ,p_business_group_id => p_rec.business_group_id
889: ,p_legislation_code => p_rec.legislation_code

Line 892: pay_bad_bus.chk_user_attribute_name

888: ,p_business_group_id => p_rec.business_group_id
889: ,p_legislation_code => p_rec.legislation_code
890: );
891: --
892: pay_bad_bus.chk_user_attribute_name
893: (p_attribute_id => p_rec.attribute_id
894: ,p_user_attribute_name => p_rec.user_attribute_name
895: ,p_business_group_id => p_rec.business_group_id
896: ,p_legislation_code => p_rec.legislation_code

Line 899: pay_bad_bus.chk_alterable

895: ,p_business_group_id => p_rec.business_group_id
896: ,p_legislation_code => p_rec.legislation_code
897: );
898:
899: pay_bad_bus.chk_alterable
900: (p_effective_date => p_effective_date
901: ,p_alterable => p_rec.alterable
902: );
903: --

Line 953: end pay_bad_bus;

949: --
950: hr_utility.set_location(' Leaving:'||l_proc, 30);
951: End delete_validate;
952: --
953: end pay_bad_bus;