DBA Data[Home] [Help]

APPS.HR_RU_CONTACT_API dependencies on HR_UTILITY

Line 118: hr_utility.set_location('Entering:'|| l_proc, 45);

114: where pbg.business_group_id = p_business_group_id;
115: --
116: begin
117: l_proc := g_package||'create_ru_person';
118: hr_utility.set_location('Entering:'|| l_proc, 45);
119: --
120: -- Validation in addition to Table Handlers
121: --
122: -- Check that the specified business group is valid.

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

125: fetch csr_bg
126: into l_legislation_code;
127: if csr_bg%notfound then
128: close csr_bg;
129: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
130: hr_utility.raise_error;
131: end if;
132: close csr_bg;
133: --

Line 130: hr_utility.raise_error;

126: into l_legislation_code;
127: if csr_bg%notfound then
128: close csr_bg;
129: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
130: hr_utility.raise_error;
131: end if;
132: close csr_bg;
133: --
134: -- Check that the legislation of the specified business group is 'RU'.

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

133: --
134: -- Check that the legislation of the specified business group is 'RU'.
135: --
136: if l_legislation_code <> 'RU' then
137: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
138: hr_utility.set_message_token('LEG_CODE','RU');
139: hr_utility.raise_error;
140: end if;
141:

Line 138: hr_utility.set_message_token('LEG_CODE','RU');

134: -- Check that the legislation of the specified business group is 'RU'.
135: --
136: if l_legislation_code <> 'RU' then
137: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
138: hr_utility.set_message_token('LEG_CODE','RU');
139: hr_utility.raise_error;
140: end if;
141:
142: hr_utility.set_location(l_proc, 50);

Line 139: hr_utility.raise_error;

135: --
136: if l_legislation_code <> 'RU' then
137: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
138: hr_utility.set_message_token('LEG_CODE','RU');
139: hr_utility.raise_error;
140: end if;
141:
142: hr_utility.set_location(l_proc, 50);
143: --

Line 142: hr_utility.set_location(l_proc, 50);

138: hr_utility.set_message_token('LEG_CODE','RU');
139: hr_utility.raise_error;
140: end if;
141:
142: hr_utility.set_location(l_proc, 50);
143: --
144: -- Call the person business process
145: --
146: hr_utility.set_location (l_proc, 50);

Line 146: hr_utility.set_location (l_proc, 50);

142: hr_utility.set_location(l_proc, 50);
143: --
144: -- Call the person business process
145: --
146: hr_utility.set_location (l_proc, 50);
147: --
148: -- Call the person business process
149: --
150: hr_contact_api.create_person

Line 245: hr_utility.set_location(' Leaving:'||l_proc, 55);

241: ,p_orig_hire_warning => p_orig_hire_warning
242: );
243:
244: --
245: hr_utility.set_location(' Leaving:'||l_proc, 55);
246: end create_ru_person;
247: --
248: end hr_ru_contact_api;