DBA Data[Home] [Help]

APPS.FF_WRAPPER_SUP_PKG dependencies on FF_COMPILED_INFO_F

Line 978: , ff_compiled_info_f fci

974: to_char(ff.effective_start_date, c_date_format) std_pkg_name
975: , c_wrap_pkg_prefix || to_char(ff.formula_id) || '_' ||
976: to_char(ff.effective_start_date, c_date_format) wrap_pkg_name
977: from ff_formulas_f ff
978: , ff_compiled_info_f fci
979: where fci.formula_id = ff.formula_id
980: and fci.effective_start_date = ff.effective_start_date
981: order by 3
982: ;

Line 1267: from ff_compiled_info_f fci

1263: (p_formula_id in number
1264: ,p_start_date in date
1265: ) is
1266: select 'Y'
1267: from ff_compiled_info_f fci
1268: where fci.formula_id = p_formula_id
1269: and fci.effective_start_date = p_start_date
1270: ;
1271: begin