DBA Data[Home] [Help]

APPS.PAY_CFT_BUS dependencies on FND_MESSAGE

Line 255: fnd_message.set_name('HR', 'HR_74005_LOCATION_ABSENT');

251: --
252: else
253:
254: if l_location_id is NULL then
255: fnd_message.set_name('HR', 'HR_74005_LOCATION_ABSENT');
256: fnd_message.raise_error;
257: else
258: open csr_get_location(l_location_id);
259: fetch csr_get_location into l_country;

Line 256: fnd_message.raise_error;

252: else
253:
254: if l_location_id is NULL then
255: fnd_message.set_name('HR', 'HR_74005_LOCATION_ABSENT');
256: fnd_message.raise_error;
257: else
258: open csr_get_location(l_location_id);
259: fetch csr_get_location into l_country;
260: if l_country is null or l_country <> 'CA' then

Line 262: fnd_message.set_name('HR', 'HR_74006_LOCATION_WRONG');

258: open csr_get_location(l_location_id);
259: fetch csr_get_location into l_country;
260: if l_country is null or l_country <> 'CA' then
261: close csr_get_location;
262: fnd_message.set_name('HR', 'HR_74006_LOCATION_WRONG');
263: fnd_message.raise_error;
264: end if;
265: close csr_get_location;
266: end if;

Line 263: fnd_message.raise_error;

259: fetch csr_get_location into l_country;
260: if l_country is null or l_country <> 'CA' then
261: close csr_get_location;
262: fnd_message.set_name('HR', 'HR_74006_LOCATION_WRONG');
263: fnd_message.raise_error;
264: end if;
265: close csr_get_location;
266: end if;
267: end if;