DBA Data[Home] [Help]

APPS.HR_PL_PERSON_ADDRESS_API dependencies on HR_UTILITY

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

64: --
65: BEGIN
66: l_proc := g_package||'create_pl_person_address';
67:
68: hr_utility.set_location('Entering:'|| l_proc, 5);
69: --
70: -- Create Person Address details.
71: --
72:

Line 122: hr_utility.set_location(' Leaving:'||l_proc, 10);

118: ,p_object_version_number => p_object_version_number
119: );
120:
121: --
122: hr_utility.set_location(' Leaving:'||l_proc, 10);
123: --
124:
125: END create_pl_person_address;
126:

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

190: --
191: BEGIN
192: l_proc := g_package||'update_pl_person_address';
193:
194: hr_utility.set_location('Entering:'|| l_proc, 5);
195: --
196: -- Check that the Address identified is of specified style.
197: --
198: open csr_add_style;

Line 206: hr_utility.set_location(l_proc, 7);

202: if csr_add_style%notfound then
203: --
204: close csr_add_style;
205: --
206: hr_utility.set_location(l_proc, 7);
207: --
208: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
209: hr_utility.raise_error;
210: --

Line 208: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');

204: close csr_add_style;
205: --
206: hr_utility.set_location(l_proc, 7);
207: --
208: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
209: hr_utility.raise_error;
210: --
211: else
212: --

Line 209: hr_utility.raise_error;

205: --
206: hr_utility.set_location(l_proc, 7);
207: --
208: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
209: hr_utility.raise_error;
210: --
211: else
212: --
213: close csr_add_style;

Line 217: hr_utility.set_location(l_proc, 8);

213: close csr_add_style;
214: --
215: if l_style <> 'PL' then
216: --
217: hr_utility.set_location(l_proc, 8);
218: --
219: hr_utility.set_message(801, 'HR_52368_ADD_INV_NOT_CORR_STYLE');
220: hr_utility.raise_error;
221: --

Line 219: hr_utility.set_message(801, 'HR_52368_ADD_INV_NOT_CORR_STYLE');

215: if l_style <> 'PL' then
216: --
217: hr_utility.set_location(l_proc, 8);
218: --
219: hr_utility.set_message(801, 'HR_52368_ADD_INV_NOT_CORR_STYLE');
220: hr_utility.raise_error;
221: --
222: end if;
223: end if;

Line 220: hr_utility.raise_error;

216: --
217: hr_utility.set_location(l_proc, 8);
218: --
219: hr_utility.set_message(801, 'HR_52368_ADD_INV_NOT_CORR_STYLE');
220: hr_utility.raise_error;
221: --
222: end if;
223: end if;
224: --

Line 225: hr_utility.set_location(l_proc, 9);

221: --
222: end if;
223: end if;
224: --
225: hr_utility.set_location(l_proc, 9);
226: --
227: -- Update Person Address details.
228: --
229: hr_person_address_api.update_person_address

Line 276: hr_utility.set_location(' Leaving:'||l_proc, 11);

272: ,p_party_id => p_party_id
273: );
274:
275: --
276: hr_utility.set_location(' Leaving:'||l_proc, 11);
277: --
278: END update_pl_person_address;
279:
280: