DBA Data[Home] [Help]

APPS.XDO_TEMPLATES_PKG dependencies on FND_APPLICATION

Line 759: from fnd_application

755: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
756:
757: begin
758: select application_id into app_id
759: from fnd_application
760: where application_short_name=x_application_short_name;
761: exception
762: when no_data_found then
763: fnd_message.set_name('FND', 'SQL_NO_DATA_FOUND');

Line 764: fnd_message.set_token('TABLE', 'FND_APPLICATION');

760: where application_short_name=x_application_short_name;
761: exception
762: when no_data_found then
763: fnd_message.set_name('FND', 'SQL_NO_DATA_FOUND');
764: fnd_message.set_token('TABLE', 'FND_APPLICATION');
765: fnd_message.set_token('COLUMN', 'APPLICATION_SHORT_NAME');
766: fnd_message.set_token('VALUE', x_application_short_name);
767: app_exception.raise_exception;
768: end;