DBA Data[Home] [Help]

APPS.HR_NZ_PERSON_ADDRESS_API dependencies on HR_UTILITY

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

69: --
70: l_proc VARCHAR2(72) := g_package||'create_nz_person_address';
71: --
72: BEGIN
73: hr_utility.set_location('Entering:'|| l_proc, 5);
74: --
75: -- Create Person Address details.
76: --
77: hr_person_address_api.create_person_address

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

131: ,p_address_id => p_address_id
132: ,p_object_version_number => p_object_version_number
133: );
134: --
135: hr_utility.set_location(' Leaving:'||l_proc, 10);
136: END create_nz_person_address;
137: --
138:
139: --------------------------------------------------------------------------

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

204: FROM per_addresses addr
205: WHERE addr.address_id = p_address_id;
206: --
207: BEGIN
208: hr_utility.set_location('Entering:'|| l_proc, 5);
209: --
210: -- Check that the Address identified is NZ style.
211: --
212: OPEN csr_add_style;

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

214: IF (csr_add_style%NOTFOUND)
215: THEN
216: CLOSE csr_add_style;
217: --
218: hr_utility.set_location(l_proc, 7);
219: --
220: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
221: hr_utility.raise_error;
222: --

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

216: CLOSE csr_add_style;
217: --
218: hr_utility.set_location(l_proc, 7);
219: --
220: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
221: hr_utility.raise_error;
222: --
223: ELSE
224: --

Line 221: hr_utility.raise_error;

217: --
218: hr_utility.set_location(l_proc, 7);
219: --
220: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
221: hr_utility.raise_error;
222: --
223: ELSE
224: --
225: CLOSE csr_add_style;

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

225: CLOSE csr_add_style;
226: --
227: IF (l_style <> 'NZ_GLB') THEN
228: --
229: hr_utility.set_location(l_proc, 8);
230: --
231: hr_utility.set_message(801, 'HR_7788_ADD_INV_NOT_NZ_STYLE');
232: hr_utility.raise_error;
233: --

Line 231: hr_utility.set_message(801, 'HR_7788_ADD_INV_NOT_NZ_STYLE');

227: IF (l_style <> 'NZ_GLB') THEN
228: --
229: hr_utility.set_location(l_proc, 8);
230: --
231: hr_utility.set_message(801, 'HR_7788_ADD_INV_NOT_NZ_STYLE');
232: hr_utility.raise_error;
233: --
234: END IF;
235: END IF;

Line 232: hr_utility.raise_error;

228: --
229: hr_utility.set_location(l_proc, 8);
230: --
231: hr_utility.set_message(801, 'HR_7788_ADD_INV_NOT_NZ_STYLE');
232: hr_utility.raise_error;
233: --
234: END IF;
235: END IF;
236: --

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

233: --
234: END IF;
235: END IF;
236: --
237: hr_utility.set_location(l_proc, 9);
238: --
239: -- Update Person Address details.
240: --
241: hr_person_address_api.update_person_address

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

291: ,p_add_information19 => p_add_information19
292: ,p_add_information20 => p_add_information20
293: ,p_party_id => p_party_id
294: );
295: hr_utility.set_location(' Leaving:'||l_proc, 11);
296: END update_nz_person_address;
297:
298: END hr_nz_person_address_api;