DBA Data[Home] [Help]

APPS.ENI_DBI_PCO_LOAD_PKG dependencies on FND_INSTALLATION

Line 106: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))

102: o_error_code varchar2(1000);
103: l_last_collected_date date;
104: begin
105:
106: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))
107: THEN NULL;
108: END IF;
109:
110: l_last_collected_date := fnd_date.displayDT_to_date(BIS_COLLECTION_UTILITIES.get_last_refresh_period('ENI_DBI_PART_COUNT_F'));

Line 177: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))

173: end collect_modified_bills;
174:
175: procedure assign_worker_ids(p_collect_mode IN VARCHAR2) is
176: begin
177: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))
178: THEN NULL;
179: END IF;
180:
181: IF (p_collect_mode = 'INIT') THEN

Line 392: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))

388:
389: procedure cleanup is
390: begin
391:
392: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))
393: THEN NULL;
394: END IF;
395:
396: -- Truncate all the temporary tables used.

Line 434: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))

430:
431: FND_FILE.PUT_LINE(FND_FILE.LOG, 'collection mode parameter is = ' || p_collect_mode);
432: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Batch size = ' || g_batch_size);
433:
434: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))
435: THEN NULL;
436: END IF;
437:
438: IF (p_collect_mode = 'INIT') THEN

Line 548: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))

544: -- the set of items in mtl_system_items_b
545: -- which have BOM_ENABLED_FLAG set to 'Y'.
546: begin
547:
548: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))
549: THEN NULL;
550: END IF;
551:
552:

Line 633: IF(FND_INSTALLATION.GET_APP_INFO('BOM', l_status, l_industry, g_bom_schema))

629: l_error_code VARCHAR2(1000);
630:
631: BEGIN
632:
633: IF(FND_INSTALLATION.GET_APP_INFO('BOM', l_status, l_industry, g_bom_schema))
634: THEN NULL;
635: END IF;
636:
637: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))

Line 637: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))

633: IF(FND_INSTALLATION.GET_APP_INFO('BOM', l_status, l_industry, g_bom_schema))
634: THEN NULL;
635: END IF;
636:
637: IF(FND_INSTALLATION.GET_APP_INFO('ENI', l_status, l_industry, g_eni_schema))
638: THEN NULL;
639: END IF;
640:
641: EXECUTE IMMEDIATE 'TRUNCATE TABLE '||g_bom_schema||'.BOM_EXPLOSION_TEMP';