DBA Data[Home] [Help]

APPS.PA_EGO_WRAPPER_PUB dependencies on FND_APPLICATION

Line 1091: from fnd_application

1087: FUNCTION CHECK_PLM_INSTALLED RETURN char
1088: is
1089: cursor get_application_id is
1090: select application_id
1091: from fnd_application
1092: where application_short_name = 'EGO';
1093: x_application_id fnd_application.application_id%TYPE;
1094:
1095: Cursor get_installation_status is

Line 1093: x_application_id fnd_application.application_id%TYPE;

1089: cursor get_application_id is
1090: select application_id
1091: from fnd_application
1092: where application_short_name = 'EGO';
1093: x_application_id fnd_application.application_id%TYPE;
1094:
1095: Cursor get_installation_status is
1096: select nvl(status,'N') from fnd_product_installations
1097: where application_id = x_application_id;