DBA Data[Home] [Help]

APPS.BSC_DBGEN_UTILS dependencies on BSC_APPS

Line 80: bsc_apps.init_bsc_apps;

76: BEGIN
77: IF (g_initialized ) THEN
78: return;
79: END IF;
80: bsc_apps.init_bsc_apps;
81: g_bsc_schema := get_bsc_schema;
82: g_apps_schema := get_apps_schema;
83: g_initialized := true;
84: EXCEPTION when others then

Line 155: bsc_apps.Add_Value_Big_In_Cond(x_variable_id , x_value);

151: BEGIN
152: IF (g_initialized=false) THEN
153: init;
154: END IF;
155: bsc_apps.Add_Value_Big_In_Cond(x_variable_id , x_value);
156: EXCEPTION when others then
157: fnd_file.put_line(FND_FILE.LOG, 'Exception in BSC_DBGEN_UTILS.Add_Value_Big_In_Cond_Number:'||sqlerrm);
158: raise;
159: End;

Line 195: bsc_apps.Add_Value_Big_In_Cond(x_variable_id , x_value);

191: BEGIN
192: IF (g_initialized=false) THEN
193: init;
194: END IF;
195: bsc_apps.Add_Value_Big_In_Cond(x_variable_id , x_value);
196:
197: EXCEPTION when others then
198: fnd_file.put_line(FND_FILE.LOG, 'Exception in BSC_DBGEN_UTILS.Add_Value_Big_In_Cond_Varchar2:'||sqlerrm);
199: raise;

Line 704: bsc_apps.init_bsc_apps;

700:
701:
702: PROCEDURE drop_table(p_table_name IN VARCHAR2) IS
703: BEGIN
704: bsc_apps.init_bsc_apps;
705: bsc_apps.do_ddl(x_statement=>'drop table '||p_table_name,
706: x_statement_type=>ad_ddl.drop_table,
707: x_object_name=>p_table_name);
708: END;

Line 705: bsc_apps.do_ddl(x_statement=>'drop table '||p_table_name,

701:
702: PROCEDURE drop_table(p_table_name IN VARCHAR2) IS
703: BEGIN
704: bsc_apps.init_bsc_apps;
705: bsc_apps.do_ddl(x_statement=>'drop table '||p_table_name,
706: x_statement_type=>ad_ddl.drop_table,
707: x_object_name=>p_table_name);
708: END;
709: