DBA Data[Home] [Help]

APPS.BSC_IM_UTILS dependencies on BSC_APPS

Line 534: p_db_user:=bsc_apps.get_user_schema(p_product);

530: l_dummy2 varchar2(2000);
531: l_db_user varchar2(200);
532: Begin
533:
534: p_db_user:=bsc_apps.get_user_schema(p_product);
535: return true;
536: Exception when others then
537: g_status_message:=sqlerrm;
538: write_to_log_file_n('Error in get_db_user '||sqlerrm);

Line 1217: l_owner := BSC_APPS.get_user_schema('APPS');

1213: -- owner is apps return apps schema name
1214: if g_debug then
1215: write_to_log_file_n('going to get apps owner '||get_time);
1216: end if;
1217: l_owner := BSC_APPS.get_user_schema('APPS');
1218: if g_debug then
1219: write_to_log_file_n('After get apps owner '||get_time);
1220: end if;
1221: end if;

Line 1249: l_owner := BSC_APPS.get_user_schema('APPS');

1245: fetch c1 into l_owner;
1246: close c1;
1247: if l_owner is null then
1248: -- owner is apps return apps schema name
1249: l_owner := BSC_APPS.get_user_schema('APPS');
1250: end if;
1251: if g_debug then
1252: write_to_log_file_n('Owner for '||p_object||' is '||l_owner);
1253: end if;

Line 1658: --return BSC_APPS.get_user_schema;

1654: function get_mv_owner(p_mv_name varchar2) return varchar2 is
1655: Begin
1656: return get_table_owner(p_mv_name);
1657: -- RETURN BSC SCHEMA NAME
1658: --return BSC_APPS.get_user_schema;
1659: Exception when others then
1660: BSC_IM_UTILS.g_status_message:=sqlerrm;
1661: write_to_log_file_n('Error in get_mv_owner '||sqlerrm);
1662: return null;

Line 3356: return bsc_apps.get_user_schema('APPS');

3352: End;
3353:
3354: function get_apps_owner return varchar2 is
3355: Begin
3356: return bsc_apps.get_user_schema('APPS');
3357: Exception when others then
3358: g_status_message:=sqlerrm;
3359: write_to_log_file_n('Exception in get_apps_owner '||sqlerrm);
3360: return null;