DBA Data[Home] [Help]

APPS.BSC_AW_CALENDAR dependencies on BSC_METADATA

Line 6: This module will directly read the BSC calendars. will not go through bsc_metadata package

2: /*$Header: BSCAWCAB.pls 120.18 2006/05/31 20:52:09 vsurendr ship $*/
3:
4: /*
5: given a calendar id, create the aw objects for the calendar.
6: This module will directly read the BSC calendars. will not go through bsc_metadata package
7: This procedure is called when the calendar has to be created...this is first time
8: or when there is a change to the calendar structure itself.
9: if the calendar is extended or the start date changes, this procedure is not called. we simply refresh the
10: calendar load program

Line 723: bsc_aw_bsc_metadata.get_kpi_for_calendar(p_calendar);

719: End;
720:
721: procedure get_kpi_for_calendar(p_calendar in out nocopy calendar_r) is
722: Begin
723: bsc_aw_bsc_metadata.get_kpi_for_calendar(p_calendar);
724: Exception when others then
725: log_n('Exception in get_kpi_for_calendar '||sqlerrm);
726: raise;
727: End;

Line 1436: bsc_aw_bsc_metadata.init_all;

1432: bsc_aw_utility.init_all(g_debug);
1433: bsc_aw_dbms_aw.init_all;
1434: bsc_aw_md_api.init_all;
1435: bsc_aw_md_wrapper.init_all;
1436: bsc_aw_bsc_metadata.init_all;
1437: bsc_metadata.init_all;
1438: bsc_aw_management.init_all;
1439: end if;
1440: Exception when others then

Line 1437: bsc_metadata.init_all;

1433: bsc_aw_dbms_aw.init_all;
1434: bsc_aw_md_api.init_all;
1435: bsc_aw_md_wrapper.init_all;
1436: bsc_aw_bsc_metadata.init_all;
1437: bsc_metadata.init_all;
1438: bsc_aw_management.init_all;
1439: end if;
1440: Exception when others then
1441: log_n('Exception in init_all '||sqlerrm);