DBA Data[Home] [Help]

APPS.AME_ATTRIBUTE_API dependencies on FND_MESSAGE

Line 393: fnd_message.set_name('PER', 'AME_400473_INV_ATTRIBUTE_ID');

389: -- Set the effective date to the sysdate
390: l_effective_date := sysdate;
391: l_atr_object_version_number := p_object_version_number;
392: if p_attribute_id is null then
393: fnd_message.set_name('PER', 'AME_400473_INV_ATTRIBUTE_ID');
394: fnd_message.raise_error;
395: end if;
396: ame_atr_upd.upd(p_effective_date => l_effective_date
397: ,p_datetrack_mode => 'UPDATE'

Line 394: fnd_message.raise_error;

390: l_effective_date := sysdate;
391: l_atr_object_version_number := p_object_version_number;
392: if p_attribute_id is null then
393: fnd_message.set_name('PER', 'AME_400473_INV_ATTRIBUTE_ID');
394: fnd_message.raise_error;
395: end if;
396: ame_atr_upd.upd(p_effective_date => l_effective_date
397: ,p_datetrack_mode => 'UPDATE'
398: ,p_attribute_id => p_attribute_id

Line 865: fnd_message.set_name('PER','AME_9_INV_ATTRIBUTE_USAGE');

861: end loop;
862: return(useCount);
863: exception
864: when others then
865: fnd_message.set_name('PER','AME_9_INV_ATTRIBUTE_USAGE');
866: hr_multi_message.add (p_associated_column1 => 'ATTRIBUTE_ID');
867: raise;
868: return(null);
869: end calculateUseCount;