DBA Data[Home] [Help]

APPS.PER_REI_BUS dependencies on PER_REI_BUS

Line 1: Package Body per_rei_bus as

1: Package Body per_rei_bus as
2: /* $Header: pereirhi.pkb 115.6 2003/10/07 19:01:25 ttagawa noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_rei_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 122: if ( nvl(per_rei_bus.g_contact_extra_info_id, hr_api.g_number)

118: ,p_argument => 'contact_extra_info_id'
119: ,p_argument_value => p_contact_extra_info_id
120: );
121: --
122: if ( nvl(per_rei_bus.g_contact_extra_info_id, hr_api.g_number)
123: = p_contact_extra_info_id) then
124: --
125: -- The legislation code has already been found with a previous
126: -- call to this function. Just return the value in the global

Line 129: l_legislation_code := per_rei_bus.g_legislation_code;

125: -- The legislation code has already been found with a previous
126: -- call to this function. Just return the value in the global
127: -- variable.
128: --
129: l_legislation_code := per_rei_bus.g_legislation_code;
130: hr_utility.set_location(l_proc, 20);
131: else
132: --
133: -- The ID is different to the last call to this function

Line 153: per_rei_bus.g_contact_extra_info_id := p_contact_extra_info_id;

149: -- Set the global variables so the values are
150: -- available for the next call to this function.
151: --
152: close csr_leg_code;
153: per_rei_bus.g_contact_extra_info_id := p_contact_extra_info_id;
154: per_rei_bus.g_legislation_code := l_legislation_code;
155: end if;
156: --
157: hr_utility.set_location(' Leaving:'|| l_proc, 40);

Line 154: per_rei_bus.g_legislation_code := l_legislation_code;

150: -- available for the next call to this function.
151: --
152: close csr_leg_code;
153: per_rei_bus.g_contact_extra_info_id := p_contact_extra_info_id;
154: per_rei_bus.g_legislation_code := l_legislation_code;
155: end if;
156: --
157: hr_utility.set_location(' Leaving:'|| l_proc, 40);
158: return l_legislation_code;

Line 997: per_rei_bus.set_security_group_id(

993: --
994: --
995: -- Set security_group_id in CLIENT_INFO
996: --
997: per_rei_bus.set_security_group_id(
998: p_contact_relationship_id => p_rec.contact_relationship_id);
999: --
1000: -- Validate Contact Relationship ID
1001: -- This needs to be validated before information_type.

Line 1003: per_rei_bus.chk_contact_relationship_id(

999: --
1000: -- Validate Contact Relationship ID
1001: -- This needs to be validated before information_type.
1002: --
1003: per_rei_bus.chk_contact_relationship_id(
1004: p_contact_relationship_id => p_rec.contact_relationship_id);
1005: --
1006: -- Validate Contact Info Type
1007: --

Line 1008: per_rei_bus.chk_information_type(

1004: p_contact_relationship_id => p_rec.contact_relationship_id);
1005: --
1006: -- Validate Contact Info Type
1007: --
1008: per_rei_bus.chk_information_type(
1009: p_information_type => p_rec.information_type,
1010: p_datetrack_mode => p_datetrack_mode,
1011: p_contact_relationship_id => p_rec.contact_relationship_id,
1012: p_contact_extra_info_id => p_rec.contact_extra_info_id,

Line 1034: per_rei_bus.chk_ddf(p_rec);

1030: -- but also any selfservice modules which reference PER_CONTACT_EXTRA_INFO_F df.
1031: --
1032: fnd_profile.put('PER_CONTACT_RELATIONSHIP_ID', to_char(p_rec.contact_relationship_id));
1033: --
1034: per_rei_bus.chk_ddf(p_rec);
1035: --
1036: per_rei_bus.chk_df(p_rec);
1037: END IF;
1038: -- =

Line 1036: per_rei_bus.chk_df(p_rec);

1032: fnd_profile.put('PER_CONTACT_RELATIONSHIP_ID', to_char(p_rec.contact_relationship_id));
1033: --
1034: per_rei_bus.chk_ddf(p_rec);
1035: --
1036: per_rei_bus.chk_df(p_rec);
1037: END IF;
1038: -- =
1039: hr_utility.set_location(' Leaving:'||l_proc, 10);
1040: End insert_validate;

Line 1063: per_rei_bus.set_security_group_id(

1059: --
1060: --
1061: -- Set security_group_id in CLIENT_INFO
1062: --
1063: per_rei_bus.set_security_group_id(
1064: p_contact_relationship_id => p_rec.contact_relationship_id);
1065: --
1066: -- Validate Dependent Attributes
1067: --

Line 1099: per_rei_bus.chk_ddf(p_rec);

1095: -- but also any selfservice modules which reference PER_CONTACT_EXTRA_INFO_F df.
1096: --
1097: fnd_profile.put('PER_CONTACT_RELATIONSHIP_ID', to_char(p_rec.contact_relationship_id));
1098: --
1099: per_rei_bus.chk_ddf(p_rec);
1100: --
1101: per_rei_bus.chk_df(p_rec);
1102: END IF;
1103: --

Line 1101: per_rei_bus.chk_df(p_rec);

1097: fnd_profile.put('PER_CONTACT_RELATIONSHIP_ID', to_char(p_rec.contact_relationship_id));
1098: --
1099: per_rei_bus.chk_ddf(p_rec);
1100: --
1101: per_rei_bus.chk_df(p_rec);
1102: END IF;
1103: --
1104: hr_utility.set_location(' Leaving:'||l_proc, 10);
1105: End update_validate;

Line 1136: per_rei_bus.chk_information_type(

1132: -- Validate Contact Info Type
1133: -- This is non-updatable argument, but needs to validate
1134: -- whether this information is unique when information_type is multiple entries not allowed.
1135: --
1136: per_rei_bus.chk_information_type(
1137: p_information_type => per_rei_shd.g_old_rec.information_type,
1138: p_datetrack_mode => p_datetrack_mode,
1139: p_contact_relationship_id => per_rei_shd.g_old_rec.contact_relationship_id,
1140: p_contact_extra_info_id => p_rec.contact_extra_info_id,

Line 1147: end per_rei_bus;

1143: --
1144: hr_utility.set_location(' Leaving:'||l_proc, 10);
1145: End delete_validate;
1146: --
1147: end per_rei_bus;