DBA Data[Home] [Help]

APPS.JTF_UMUTIL dependencies on FND_MESSAGE

Line 131: fnd_message.set_name('JTF', 'APPROVAL_ID_NOT_FOUND');

127:
128: exception
129: when NO_DATA_FOUND then
130: -- raising exception here as approval_id does not exist
131: fnd_message.set_name('JTF', 'APPROVAL_ID_NOT_FOUND');
132: app_exception.raise_exception;
133:
134: end approval_lookup_with_check;
135:

Line 163: fnd_message.set_name('JTF', 'SUBSCRIPTION_ID_NOT_FOUND');

159:
160: exception
161: when NO_DATA_FOUND then
162: -- raising exception here as approval_id does not exist
163: fnd_message.set_name('JTF', 'SUBSCRIPTION_ID_NOT_FOUND');
164: app_exception.raise_exception;
165:
166: end subscription_lookup_with_check;
167: