DBA Data[Home] [Help]

APPS.BSC_UPDATE_BASE_V2 dependencies on BSC_DBGEN_METADATA_READER

Line 165: h_values := BSC_DBGEN_METADATA_READER.Get_Table_Properties(x_input_table, h_list);

161:
162: -- Get input table row id table name
163: h_list.delete;
164: h_list(1) := BSC_DBGEN_STD_METADATA.BSC_I_ROWID_TABLE;
165: h_values := BSC_DBGEN_METADATA_READER.Get_Table_Properties(x_input_table, h_list);
166: h_rowid_tbl_name := h_values(1);
167:
168: -- Get base table partitions
169: h_partition_info := BSC_DBGEN_METADATA_READER.Get_Partition_Info(x_base_table);

Line 169: h_partition_info := BSC_DBGEN_METADATA_READER.Get_Partition_Info(x_base_table);

165: h_values := BSC_DBGEN_METADATA_READER.Get_Table_Properties(x_input_table, h_list);
166: h_rowid_tbl_name := h_values(1);
167:
168: -- Get base table partitions
169: h_partition_info := BSC_DBGEN_METADATA_READER.Get_Partition_Info(x_base_table);
170: h_num_partitions := h_partition_info.partition_count;
171: -- Fix bug#4882239 If h_num_partitinos is NULL then assign it to 0
172: IF h_num_partitions IS NULL THEN
173: h_num_partitions := 0;

Line 2495: h_values := BSC_DBGEN_METADATA_READER.Get_Table_Properties(x_base_table, h_list);

2491: h_values dbms_sql.varchar2_table;
2492: BEGIN
2493: h_list.delete;
2494: h_list(1) := BSC_DBGEN_STD_METADATA.BSC_B_PRJ_TABLE;
2495: h_values := BSC_DBGEN_METADATA_READER.Get_Table_Properties(x_base_table, h_list);
2496: RETURN h_values(1);
2497: END Get_Base_Proj_Tbl_Name;
2498:
2499: