DBA Data[Home] [Help]

APPS.ENI_DENORM_HRCHY dependencies on FND_INSTALLATION

Line 1457: l_installed := fnd_installation.get(appl_id => 279, dep_appl_id => 279, status => l_status, industry => l_industry );

1453: -- OZF - 682
1454:
1455: -- checking installation of 'AS' (Oracle Sales)
1456: l_status := NULL;
1457: l_installed := fnd_installation.get(appl_id => 279, dep_appl_id => 279, status => l_status, industry => l_industry );
1458: IF NVL(l_status, 'N') = 'I' THEN
1459: l_AS_installed := TRUE;
1460: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Oracle Sales (AS) is installed.');
1461: END IF;

Line 1465: l_installed := fnd_installation.get(appl_id => 530, dep_appl_id => 530, status => l_status, industry => l_industry );

1461: END IF;
1462:
1463: -- checking installation of 'AMS' (Oracle Marketing Online)
1464: l_status := NULL;
1465: l_installed := fnd_installation.get(appl_id => 530, dep_appl_id => 530, status => l_status, industry => l_industry );
1466: IF NVL(l_status, 'N') = 'I' THEN
1467: l_AMS_installed := TRUE;
1468: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Oracle Marketing Online (AMS) is installed.');
1469: END IF;

Line 1473: l_installed := fnd_installation.get(appl_id => 682, dep_appl_id => 682, status => l_status, industry => l_industry );

1469: END IF;
1470:
1471: -- checking installation of 'OZF' (Oracle Trade Management)
1472: l_status := NULL;
1473: l_installed := fnd_installation.get(appl_id => 682, dep_appl_id => 682, status => l_status, industry => l_industry );
1474: IF NVL(l_status, 'N') = 'I' THEN
1475: l_OZF_installed := TRUE;
1476: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Oracle Trade Management (OZF) is installed.');
1477: END IF;

Line 1481: l_installed := fnd_installation.get(appl_id => 280, dep_appl_id => 280, status => l_status, industry => l_industry );

1477: END IF;
1478:
1479: -- checking installation of 'ASN'
1480: l_status := NULL;
1481: l_installed := fnd_installation.get(appl_id => 280, dep_appl_id => 280, status => l_status, industry => l_industry );
1482: IF NVL(l_status, 'N') = 'I' THEN
1483: l_ASN_installed := TRUE;
1484: FND_FILE.PUT_LINE(FND_FILE.LOG, 'ASN is installed.');
1485: END IF;