DBA Data[Home] [Help]

APPS.PER_FNAME_PKG dependencies on FND_MESSAGE

Line 122: fnd_message.set_name('PER', 'PER_52123_AMD_LEG_CODE_INV');

118: if p_legislation_code is null then
119: -- In the rare case that this script is called incorrectly
120: -- without being passed a legislation code, raise an error
121: --
122: fnd_message.set_name('PER', 'PER_52123_AMD_LEG_CODE_INV');
123: hr_utility.raise_error;
124: end if;
125:
126: OPEN instl_prod(p_legislation_code);

Line 132: fnd_message.set_name('PER', 'PER_52123_AMD_LEG_CODE_INV');

128: IF instl_prod%notfound THEN
129: CLOSE instl_prod;
130: retcode := 1;
131: errbuf := 'Legislation Not Installed';
132: fnd_message.set_name('PER', 'PER_52123_AMD_LEG_CODE_INV');
133: hr_utility.raise_error;
134: return;
135: END IF;
136: