DBA Data[Home] [Help]

APPS.PER_PSE_BUS dependencies on PER_PSE_BUS

Line 1: Package Body per_pse_bus as

1: Package Body per_pse_bus as
2: /* $Header: pepserhi.pkb 120.1 2008/07/22 09:16:58 rnemani noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_pse_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_pse_bus.g_pos_structure_element_id, hr_api.g_number)

106: ,p_argument => 'pos_structure_element_id'
107: ,p_argument_value => p_pos_structure_element_id
108: );
109: --
110: if ( nvl(per_pse_bus.g_pos_structure_element_id, hr_api.g_number)
111: = p_pos_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_pse_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_pse_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_pse_bus.g_pos_structure_element_id:= p_pos_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_pse_bus.g_pos_structure_element_id:= p_pos_structure_element_id;
142: per_pse_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_pse_bus.g_legislation_code := l_legislation_code;

138: -- available for the next call to this function.
139: --
140: close csr_leg_code;
141: per_pse_bus.g_pos_structure_element_id:= p_pos_structure_element_id;
142: per_pse_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 552: per_pse_bus.chk_pos_structure_version_id(p_pos_structure_element_id => p_rec.pos_structure_version_id

548:
549: --
550: -- validate structure_version_id
551: --
552: per_pse_bus.chk_pos_structure_version_id(p_pos_structure_element_id => p_rec.pos_structure_version_id
553: ,p_business_group_id => p_rec.business_group_id
554: ,p_pos_structure_version_id => p_rec.pos_structure_version_id
555: ,p_effective_date => p_effective_date);
556:

Line 560: per_pse_bus.chk_parent_child_position_id(p_pos_structure_element_id => p_rec.pos_structure_element_id

556:
557: --
558: -- validate parent and subordinate position_id
559: --
560: per_pse_bus.chk_parent_child_position_id(p_pos_structure_element_id => p_rec.pos_structure_element_id
561: ,p_business_group_id => p_rec.business_group_id
562: ,p_effective_date => p_effective_date
563: ,p_pos_structure_version_id => p_rec.pos_structure_version_id
564: ,p_parent_position_id => p_rec.parent_position_id

Line 613: per_pse_bus.chk_children_exist

609: --
610: -- Call all supporting business operations
611: --
612: if p_chk_children = 'Y' then
613: per_pse_bus.chk_children_exist
614: (p_pos_structure_version_id => p_rec.pos_structure_version_id
615: ,p_subordinate_position_id => p_rec.subordinate_position_id
616: );
617: end if;

Line 620: per_pse_bus.chk_security_pos

616: );
617: end if;
618: --
619: if p_hr_installed = 'I' then
620: per_pse_bus.chk_security_pos
621: (p_Subordinate_position_Id => p_rec.Subordinate_position_Id
622: ,p_Business_Group_Id => p_rec.Business_Group_Id
623: ,p_Pos_Structure_version_Id => p_rec.Pos_Structure_version_Id
624: );

Line 630: end per_pse_bus;

626: --
627: hr_utility.set_location(' Leaving:'||l_proc, 10);
628: End delete_validate;
629: --
630: end per_pse_bus;