DBA Data[Home] [Help]

APPS.ENI_DENORM_HRCHY dependencies on FND_INSTALLATION

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

1424: -- OZF - 682
1425:
1426: -- checking installation of 'AS' (Oracle Sales)
1427: l_status := NULL;
1428: l_installed := fnd_installation.get(appl_id => 279, dep_appl_id => 279, status => l_status, industry => l_industry );
1429: IF NVL(l_status, 'N') = 'I' THEN
1430: l_AS_installed := TRUE;
1431: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Oracle Sales (AS) is installed.');
1432: END IF;

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

1432: END IF;
1433:
1434: -- checking installation of 'AMS' (Oracle Marketing Online)
1435: l_status := NULL;
1436: l_installed := fnd_installation.get(appl_id => 530, dep_appl_id => 530, status => l_status, industry => l_industry );
1437: IF NVL(l_status, 'N') = 'I' THEN
1438: l_AMS_installed := TRUE;
1439: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Oracle Marketing Online (AMS) is installed.');
1440: END IF;

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

1440: END IF;
1441:
1442: -- checking installation of 'OZF' (Oracle Trade Management)
1443: l_status := NULL;
1444: l_installed := fnd_installation.get(appl_id => 682, dep_appl_id => 682, status => l_status, industry => l_industry );
1445: IF NVL(l_status, 'N') = 'I' THEN
1446: l_OZF_installed := TRUE;
1447: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Oracle Trade Management (OZF) is installed.');
1448: END IF;

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

1448: END IF;
1449:
1450: -- checking installation of 'ASN'
1451: l_status := NULL;
1452: l_installed := fnd_installation.get(appl_id => 280, dep_appl_id => 280, status => l_status, industry => l_industry );
1453: IF NVL(l_status, 'N') = 'I' THEN
1454: l_ASN_installed := TRUE;
1455: FND_FILE.PUT_LINE(FND_FILE.LOG, 'ASN is installed.');
1456: END IF;