DBA Data[Home] [Help]

APPS.HR_ES_CONTACT_API dependencies on HR_UTILITY

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

123: from per_business_groups pbg
124: where pbg.business_group_id = p_business_group_id;
125: --
126: begin
127: hr_utility.set_location('Entering:'|| l_proc, 5);
128: --
129: -- Validation in addition to Row Handlers
130: --
131: -- Check that the specified business group is valid.

Line 138: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');

134: fetch csr_bg
135: into l_legislation_code;
136: if csr_bg%notfound then
137: close csr_bg;
138: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
139: hr_utility.raise_error;
140: end if;
141: close csr_bg;
142: --

Line 139: hr_utility.raise_error;

135: into l_legislation_code;
136: if csr_bg%notfound then
137: close csr_bg;
138: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
139: hr_utility.raise_error;
140: end if;
141: close csr_bg;
142: --
143: -- Check that the legislation of the specified business group is 'ES'.

Line 146: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');

142: --
143: -- Check that the legislation of the specified business group is 'ES'.
144: --
145: if l_legislation_code <> 'ES' then
146: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
147: hr_utility.set_message_token('LEG_CODE','ES');
148: hr_utility.raise_error;
149: end if;
150:

Line 147: hr_utility.set_message_token('LEG_CODE','ES');

143: -- Check that the legislation of the specified business group is 'ES'.
144: --
145: if l_legislation_code <> 'ES' then
146: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
147: hr_utility.set_message_token('LEG_CODE','ES');
148: hr_utility.raise_error;
149: end if;
150:
151:

Line 148: hr_utility.raise_error;

144: --
145: if l_legislation_code <> 'ES' then
146: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
147: hr_utility.set_message_token('LEG_CODE','ES');
148: hr_utility.raise_error;
149: end if;
150:
151:
152: hr_utility.set_location(l_proc, 6);

Line 152: hr_utility.set_location(l_proc, 6);

148: hr_utility.raise_error;
149: end if;
150:
151:
152: hr_utility.set_location(l_proc, 6);
153:
154: --
155: -- Call the person business process
156: hr_contact_api.create_person