DBA Data[Home] [Help]

APPS.FV_SF133_NOYEAR dependencies on FV_SF133_REP_LINE_CALC

Line 748: FROM fv_sf133_rep_line_calc

744: build_fiscal_line_columns;
745: ELSIF c_sf133_line_type_code = 'T' THEN
746: SELECT count(*)
747: INTO l_line_cnt
748: FROM fv_sf133_rep_line_calc
749: WHERE line_id = c_sf133_line_id;
750: IF l_line_cnt = 0 THEN
751: FV_UTILITY.LOG_MESG(FND_LOG.LEVEL_ERROR, l_module_name||'.error','Total line does not contain calculations. SEED Data not properly Loaded. Please Verify and reinvoke the Process.');
752: RETURN;

Line 1876: FROM fv_sf133_rep_line_calc

1872:
1873: CURSOR fv_sf133_calc_cur IS
1874: SELECT calc_sequence_number, line_low, line_high, line_low_type, line_high_type,
1875: operator
1876: FROM fv_sf133_rep_line_calc
1877: WHERE line_id = c_sf133_line_id
1878: ORDER BY calc_sequence_number;
1879:
1880: CURSOR fv_sf133_temp_cur (p_line_id NUMBER) IS

Line 1903: calc_sequence fv_sf133_rep_line_calc.calc_sequence_number%TYPE,

1899: temp_amt_high fv_sf133_definitions_cols_temp.sf133_column_amount%TYPE DEFAULT 0;
1900:
1901:
1902: TYPE amt_rec IS RECORD (
1903: calc_sequence fv_sf133_rep_line_calc.calc_sequence_number%TYPE,
1904: col_1_amt fv_sf133_definitions_cols_temp.sf133_column_amount%TYPE DEFAULT 0);
1905:
1906:
1907: TYPE amt_table IS TABLE OF amt_rec