[Home] [Help]
6981: C_API_VERSION CONSTANT NUMBER := 1.0;
6982: --
6983: e_api_error EXCEPTION;
6984: e_objexec_running EXCEPTION;
6985: v_undo_flag FEM_OBJECT_TYPES_B.undo_flag%TYPE;
6986: v_object_name FEM_OBJECT_CATALOG_TL.object_name%TYPE;
6987: v_exec_status_code FEM_PL_REQUESTS.exec_status_code%TYPE;
6988: v_count NUMBER;
6989: --
7044: -- This API should only be called to remove rules where its rule type
7045: -- Undo Flag attribute is set to N.
7046: SELECT undo_flag
7047: INTO v_undo_flag
7048: FROM fem_object_catalog_b oc, fem_object_types_b ot
7049: WHERE oc.object_id = p_object_id
7050: AND oc.object_type_code = ot.object_type_code;
7051:
7052: IF nvl(v_undo_flag,'XX') <> 'N' THEN