DBA Data[Home] [Help]

APPS.HR_AE_PERSON_ADDRESS_API dependencies on HR_UTILITY

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

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

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

114: ,p_object_version_number => p_object_version_number
115: );
116:
117: --
118: hr_utility.set_location(' Leaving:'||l_proc, 10);
119: --
120:
121: END create_ae_person_address;
122:

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

184: --
185: BEGIN
186: l_proc := g_package||'update_ae_person_address';
187:
188: hr_utility.set_location('Entering:'|| l_proc, 5);
189: --
190: -- Check that the Address identified is of specified style.
191: --
192: open csr_add_style;

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

196: if csr_add_style%notfound then
197: --
198: close csr_add_style;
199: --
200: hr_utility.set_location(l_proc, 7);
201: --
202: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
203: hr_utility.raise_error;
204: --

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

198: close csr_add_style;
199: --
200: hr_utility.set_location(l_proc, 7);
201: --
202: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
203: hr_utility.raise_error;
204: --
205: else
206: --

Line 203: hr_utility.raise_error;

199: --
200: hr_utility.set_location(l_proc, 7);
201: --
202: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
203: hr_utility.raise_error;
204: --
205: else
206: --
207: close csr_add_style;

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

207: close csr_add_style;
208: --
209: if l_style <> 'AE' then
210: --
211: hr_utility.set_location(l_proc, 8);
212: --
213: hr_utility.set_message(801, 'HR_52368_ADD_INV_NOT_CORR_STYLE');
214: hr_utility.raise_error;
215: --

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

209: if l_style <> 'AE' then
210: --
211: hr_utility.set_location(l_proc, 8);
212: --
213: hr_utility.set_message(801, 'HR_52368_ADD_INV_NOT_CORR_STYLE');
214: hr_utility.raise_error;
215: --
216: end if;
217: end if;

Line 214: hr_utility.raise_error;

210: --
211: hr_utility.set_location(l_proc, 8);
212: --
213: hr_utility.set_message(801, 'HR_52368_ADD_INV_NOT_CORR_STYLE');
214: hr_utility.raise_error;
215: --
216: end if;
217: end if;
218: --

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

215: --
216: end if;
217: end if;
218: --
219: hr_utility.set_location(l_proc, 9);
220: --
221: -- Update Person Address details.
222: --
223: hr_person_address_api.update_person_address

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

264: ,p_party_id => p_party_id
265: );
266:
267: --
268: hr_utility.set_location(' Leaving:'||l_proc, 11);
269: --
270: END update_ae_person_address;
271:
272: