DBA Data[Home] [Help]

APPS.ZX_TCM_EXT_SERVICES_PUB dependencies on FND_PRODUCT_INSTALLATIONS

Line 1352: l_status fnd_product_installations.STATUS%type;

1348:
1349:
1350: FUNCTION IS_INV_INSTALLED RETURN BOOLEAN IS
1351:
1352: l_status fnd_product_installations.STATUS%type;
1353: l_db_status fnd_product_installations.DB_STATUS%type;
1354:
1355:
1356: BEGIN

Line 1353: l_db_status fnd_product_installations.DB_STATUS%type;

1349:
1350: FUNCTION IS_INV_INSTALLED RETURN BOOLEAN IS
1351:
1352: l_status fnd_product_installations.STATUS%type;
1353: l_db_status fnd_product_installations.DB_STATUS%type;
1354:
1355:
1356: BEGIN
1357:

Line 1362: FROM fnd_product_installations

1358: arp_util_tax.debug(' IS_INV_INSTALLED .. (+) ' );
1359:
1360: SELECT STATUS, DB_STATUS
1361: INTO l_status, l_db_status
1362: FROM fnd_product_installations
1363: WHERE APPLICATION_ID = '401';
1364:
1365: IF (nvl(l_status,'N') = 'N' or nvl(l_db_status,'N') = 'N') THEN
1366: return FALSE;