[Home] [Help]
3018: -- order by order_number is needed because the first select
3019: -- action needs to be INCLUDE
3020: CURSOR c_source_rec (p_object_type IN VARCHAR2, p_object_id IN NUMBER) IS
3021: SELECT *
3022: FROM ams_list_select_actions
3023: WHERE arc_action_used_by = p_object_type
3024: AND action_used_by_id = p_object_id
3025: ORDER BY order_number
3026: ;