DBA Data[Home] [Help]

APPS.FND_CACHE_VERSIONS_PKG dependencies on FND_MESSAGE

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

183: -- If version is greater than current version (which should NEVER
184: -- happen), then set an error message to the stack and return FALSE;
185: -- **FND_VERSION_GREATER_THAN_CURR message is to be created**.
186: elsif (p_version > current_version) then
187: fnd_message.set_name('FND', 'FND_VERSION_GREATER_THAN_CURR');
188: fnd_message.set_token('CACHE_NAME', p_name);
189: RETURN FALSE;
190:
191: end if;

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

184: -- happen), then set an error message to the stack and return FALSE;
185: -- **FND_VERSION_GREATER_THAN_CURR message is to be created**.
186: elsif (p_version > current_version) then
187: fnd_message.set_name('FND', 'FND_VERSION_GREATER_THAN_CURR');
188: fnd_message.set_token('CACHE_NAME', p_name);
189: RETURN FALSE;
190:
191: end if;
192: