DBA Data[Home] [Help]

APPS.IRC_PARTY_PERSON_UTL dependencies on FND_MESSAGE

Line 200: fnd_message.set_name('PER','IRC_412155_REG_BG_NOT_SET');

196: end if;
197:
198: l_business_group_id:=to_number(fnd_profile.value('IRC_REGISTRATION_BG_ID'));
199: if l_business_group_id is null then
200: fnd_message.set_name('PER','IRC_412155_REG_BG_NOT_SET');
201: fnd_message.raise_error;
202: end if;
203:
204: open get_legislation_code;

Line 201: fnd_message.raise_error;

197:
198: l_business_group_id:=to_number(fnd_profile.value('IRC_REGISTRATION_BG_ID'));
199: if l_business_group_id is null then
200: fnd_message.set_name('PER','IRC_412155_REG_BG_NOT_SET');
201: fnd_message.raise_error;
202: end if;
203:
204: open get_legislation_code;
205: fetch get_legislation_code into l_legislation_code;

Line 212: fnd_message.set_name('PER','IRC_412156_PERS_TYPE_NOT_SET');

208: open get_person_type_id;
209: fetch get_person_type_id into l_person_type_id;
210: if get_person_type_id%notfound then
211: close get_person_type_id;
212: fnd_message.set_name('PER','IRC_412156_PERS_TYPE_NOT_SET');
213: fnd_message.raise_error;
214: else
215: close get_person_type_id;
216: end if;

Line 213: fnd_message.raise_error;

209: fetch get_person_type_id into l_person_type_id;
210: if get_person_type_id%notfound then
211: close get_person_type_id;
212: fnd_message.set_name('PER','IRC_412156_PERS_TYPE_NOT_SET');
213: fnd_message.raise_error;
214: else
215: close get_person_type_id;
216: end if;
217: --

Line 288: party_rec.person_last_name:=fnd_message.get_string('PER','IRC_412108_UNKNOWN_NAME');

284: else
285: party_rec.gender:=null;
286: end if;
287: if rtrim(party_rec.person_last_name) is null then
288: party_rec.person_last_name:=fnd_message.get_string('PER','IRC_412108_UNKNOWN_NAME');
289: end if;
290: if hr_api.not_exists_in_hr_lookups
291: (p_effective_date=>l_start_date
292: ,p_lookup_type=>'TITLE'