DBA Data[Home] [Help]

APPS.ZX_TCM_EXT_SERVICES_PUB dependencies on FND_PRODUCT_INSTALLATIONS

Line 1309: l_status fnd_product_installations.STATUS%type;

1305:
1306:
1307: FUNCTION IS_INV_INSTALLED RETURN BOOLEAN IS
1308:
1309: l_status fnd_product_installations.STATUS%type;
1310: l_db_status fnd_product_installations.DB_STATUS%type;
1311:
1312:
1313: BEGIN

Line 1310: l_db_status fnd_product_installations.DB_STATUS%type;

1306:
1307: FUNCTION IS_INV_INSTALLED RETURN BOOLEAN IS
1308:
1309: l_status fnd_product_installations.STATUS%type;
1310: l_db_status fnd_product_installations.DB_STATUS%type;
1311:
1312:
1313: BEGIN
1314:

Line 1319: FROM fnd_product_installations

1315: arp_util_tax.debug(' IS_INV_INSTALLED .. (+) ' );
1316:
1317: SELECT STATUS, DB_STATUS
1318: INTO l_status, l_db_status
1319: FROM fnd_product_installations
1320: WHERE APPLICATION_ID = '401';
1321:
1322: IF (nvl(l_status,'N') = 'N' or nvl(l_db_status,'N') = 'N') THEN
1323: return FALSE;