DBA Data[Home] [Help]

APPS.BSC_PMF_UI_WRAPPER dependencies on BSC_TABS_B

Line 2050: l_Tab_Id BSC_TABS_B.Tab_Id%TYPE;

2046: l_Bsc_Kpi_Entity BSC_KPI_PUB.Bsc_Kpi_Entity_Rec;
2047: l_Bsc_Tab_Entity_Rec BSC_SCORECARD_PUB.Bsc_Tab_Entity_Rec;
2048: l_commit VARCHAR2(10);
2049: l_count NUMBER;
2050: l_Tab_Id BSC_TABS_B.Tab_Id%TYPE;
2051: l_Row_Count NUMBER;
2052: l_Tabs_Tbl_Type BSC_PMF_UI_WRAPPER.Bsc_Tabs_Tbl_Rec;
2053:
2054:

Line 4296: update BSC_TABS_B

4292:
4293: -- Update Table
4294: for i in 1..Bsc_Tab_Index.count loop
4295:
4296: update BSC_TABS_B
4297: set tab_index = Bsc_Tab_Index(i).Bsc_Tab_Index
4298: where tab_id = Bsc_Tab_Index(i).Bsc_Tab_Id;
4299:
4300: end loop;

Line 4455: from BSC_TABS_B

4451: -- The tab (tab_id) is being moved to a different parent. This tab needs an
4452: -- Index under the new parent. We will assing the next Index.
4453: select max(tab_index) + 1
4454: into l_Bsc_Tab_Entity_Rec.Bsc_Tab_Index
4455: from BSC_TABS_B
4456: where tab_id = p_parent_tab_id;
4457:
4458: -- call update Tab procedure.
4459: BSC_SCORECARD_PUB.Update_Tab( FND_API.G_FALSE

Line 6470: p_tab_id IN BSC_TABS_B.tab_id%TYPE

6466:
6467:
6468: PROCEDURE Delete_Tab_Logo
6469: (
6470: p_tab_id IN BSC_TABS_B.tab_id%TYPE
6471: ,x_return_status OUT NOCOPY VARCHAR2
6472: ,x_msg_count OUT NOCOPY NUMBER
6473: ,x_msg_data OUT NOCOPY VARCHAR2
6474: )IS