DBA Data[Home] [Help]

APPS.PER_OSE_BUS dependencies on PER_OSE_BUS

Line 1: Package Body per_ose_bus as

1: Package Body per_ose_bus as
2: /* $Header: peoserhi.pkb 120.2.12000000.1 2007/01/22 00:38:55 appldev ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_ose_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 110: if ( nvl(per_ose_bus.g_org_structure_element_id, hr_api.g_number)

106: ,p_argument => 'org_structure_element_id'
107: ,p_argument_value => p_org_structure_element_id
108: );
109: --
110: if ( nvl(per_ose_bus.g_org_structure_element_id, hr_api.g_number)
111: = p_org_structure_element_id) then
112: --
113: -- The legislation code has already been found with a previous
114: -- call to this function. Just return the value in the global

Line 117: l_legislation_code := per_ose_bus.g_legislation_code;

113: -- The legislation code has already been found with a previous
114: -- call to this function. Just return the value in the global
115: -- variable.
116: --
117: l_legislation_code := per_ose_bus.g_legislation_code;
118: hr_utility.set_location(l_proc, 20);
119: else
120: --
121: -- The ID is different to the last call to this function

Line 141: per_ose_bus.g_org_structure_element_id := p_org_structure_element_id;

137: -- Set the global variables so the values are
138: -- available for the next call to this function.
139: --
140: close csr_leg_code;
141: per_ose_bus.g_org_structure_element_id := p_org_structure_element_id;
142: per_ose_bus.g_legislation_code := l_legislation_code;
143: end if;
144: hr_utility.set_location(' Leaving:'|| l_proc, 40);
145: return l_legislation_code;

Line 142: per_ose_bus.g_legislation_code := l_legislation_code;

138: -- available for the next call to this function.
139: --
140: close csr_leg_code;
141: per_ose_bus.g_org_structure_element_id := p_org_structure_element_id;
142: per_ose_bus.g_legislation_code := l_legislation_code;
143: end if;
144: hr_utility.set_location(' Leaving:'|| l_proc, 40);
145: return l_legislation_code;
146: end return_legislation_code;

Line 806: per_ose_bus.chk_children_exist

802: --
803: -- Call all supporting business operations
804: --
805: if p_chk_children_exist = 'Y' then
806: per_ose_bus.chk_children_exist
807: (p_org_structure_version_id => p_rec.org_structure_version_id
808: ,p_organization_id_child => p_rec.organization_id_child
809: );
810: end if;

Line 813: per_ose_bus.chk_top_org

809: );
810: end if;
811: --
812: if p_hr_installed = 'I' then
813: per_ose_bus.chk_top_org
814: (p_org_structure_version_id => p_rec.org_structure_version_id
815: ,p_org_structure_element_id => p_rec.org_structure_element_id
816: ,p_organization_id_child => p_rec.organization_id_child
817: ,p_organization_id_parent => p_rec.organization_id_parent

Line 822: per_ose_bus.chk_pa_org

818: );
819: end if;
820: --
821: if p_pa_installed = 'I' then
822: per_ose_bus.chk_pa_org
823: (p_org_structure_element_id => p_rec.org_structure_element_id
824: );
825: end if;
826: --

Line 830: end per_ose_bus;

826: --
827: hr_utility.set_location(' Leaving:'||l_proc, 10);
828: End delete_validate;
829: --
830: end per_ose_bus;