DBA Data[Home] [Help]

APPS.PA_EGO_WRAPPER_PUB dependencies on FND_PRODUCT_INSTALLATIONS

Line 1096: select nvl(status,'N') from fnd_product_installations

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;
1098:
1099: x_status fnd_product_installations.status%TYPE;
1100:

Line 1099: x_status fnd_product_installations.status%TYPE;

1095: Cursor get_installation_status is
1096: select nvl(status,'N') from fnd_product_installations
1097: where application_id = x_application_id;
1098:
1099: x_status fnd_product_installations.status%TYPE;
1100:
1101: Begin
1102: -- Get the Application_id from the application short name
1103: open get_application_id;