DBA Data[Home] [Help]

APPS.FND_CACHE_VERSIONS_PKG dependencies on FND_MESSAGE

Line 197: fnd_message.set_name('FND', 'FND_VERSION_GREATER_THAN_CURR');

193: -- If version is greater than current version (which should NEVER
194: -- happen), then set an error message to the stack and return FALSE;
195: -- **FND_VERSION_GREATER_THAN_CURR message is to be created**.
196: elsif (p_version > current_version) then
197: fnd_message.set_name('FND', 'FND_VERSION_GREATER_THAN_CURR');
198: fnd_message.set_token('CACHE_NAME', p_name);
199: RETURN FALSE;
200:
201: end if;

Line 198: fnd_message.set_token('CACHE_NAME', p_name);

194: -- happen), then set an error message to the stack and return FALSE;
195: -- **FND_VERSION_GREATER_THAN_CURR message is to be created**.
196: elsif (p_version > current_version) then
197: fnd_message.set_name('FND', 'FND_VERSION_GREATER_THAN_CURR');
198: fnd_message.set_token('CACHE_NAME', p_name);
199: RETURN FALSE;
200:
201: end if;
202: