DBA Data[Home] [Help]

APPS.EDW_COLLECTION_UTIL dependencies on EDW_LOCAL_INSTANCE

Line 945: FROM edw_local_instance;

941: -- ----------------------------------------------------------------------------
942: BEGIN
943: SELECT instance_code
944: INTO g_instance_code
945: FROM edw_local_instance;
946: EXCEPTION
947: WHEN OTHERS
948: THEN
949: edw_log.put_line (' Instance code not found. Error.',FND_LOG.LEVEL_ERROR);

Line 1287: FROM edw_local_instance)';

1283: FROM edw_source_instances_vl@'
1284: || g_target_link
1285: || '
1286: WHERE instance_code= ( SELECT instance_code
1287: FROM edw_local_instance)';
1288: put_debug_msg (
1289: 'Checking whether instance is enabled in target database'
1290: );
1291: put_debug_msg ('Going to execute: ');

Line 1339: FROM edw_local_instance;

1335: END IF;
1336:
1337: SELECT instance_code
1338: INTO l_instance1
1339: FROM edw_local_instance;
1340:
1341: l_stmt := 'SELECT instance_code
1342: FROM edw_local_instance@'
1343: || g_target_link;

Line 1342: FROM edw_local_instance@'

1338: INTO l_instance1
1339: FROM edw_local_instance;
1340:
1341: l_stmt := 'SELECT instance_code
1342: FROM edw_local_instance@'
1343: || g_target_link;
1344: put_debug_msg ('Running: ');
1345: put_debug_msg (l_stmt);
1346: OPEN cv FOR l_stmt;

Line 1571: || ' instance_code=(select instance_code from edw_local_instance)'

1567: ' select nvl(period_end, to_date(''01/01/1950'',''MM/DD/YYYY'')) '
1568: || ' from edw_push_detail_log@'
1569: || g_target_link
1570: || ' where object_name= :s and push_status=''SUCCESS'' and '
1571: || ' instance_code=(select instance_code from edw_local_instance)'
1572: || ' and last_update_date= ( select max(last_update_date)
1573: from edw_push_detail_log@'
1574: || g_target_link
1575: || ' where object_name=:s and push_status=''SUCCESS'' and '

Line 1576: || ' instance_code=(select instance_code from edw_local_instance))';

1572: || ' and last_update_date= ( select max(last_update_date)
1573: from edw_push_detail_log@'
1574: || g_target_link
1575: || ' where object_name=:s and push_status=''SUCCESS'' and '
1576: || ' instance_code=(select instance_code from edw_local_instance))';
1577: put_debug_msg ('Running: ');
1578: put_debug_msg (l_stmt);
1579: l_cid := DBMS_SQL.open_cursor;
1580: DBMS_SQL.parse (l_cid, l_stmt, DBMS_SQL.native);