DBA Data[Home] [Help]

APPS.PAY_SEED_UTL dependencies on FF_COMPILED_INFO_F

Line 842: delete from ff_compiled_info_f where formula_id = getrec.formula_id;

838: BEGIN
839: IF p_route_id is not null then
840: for getrec in c_formula_id(p_route_id ) loop
841: delete from ff_fdi_usages_f where formula_id = getrec.formula_id;
842: delete from ff_compiled_info_f where formula_id = getrec.formula_id;
843: end loop;
844: END IF;
845:
846: IF p_user_name is not null then

Line 849: delete from ff_compiled_info_f where formula_id = getrec.formula_id;

845:
846: IF p_user_name is not null then
847: for getrec in c_formulas_using_dbi(p_user_name, p_legislation_code ) loop
848: delete from ff_fdi_usages_f where formula_id = getrec.formula_id;
849: delete from ff_compiled_info_f where formula_id = getrec.formula_id;
850: end loop;
851: END IF;
852:
853: IF p_formula_id is not null then

Line 855: delete from ff_compiled_info_f where formula_id = p_formula_id;

851: END IF;
852:
853: IF p_formula_id is not null then
854: delete from ff_fdi_usages_f where formula_id = p_formula_id;
855: delete from ff_compiled_info_f where formula_id = p_formula_id;
856: END IF;
857:
858: END UNCOMPILE_FORMULAS;
859: