DBA Data[Home] [Help]

APPS.IEX_STRATEGY_PUB dependencies on IEX_STRATEGY_TEMPLATES_VL

Line 1488: iex_strategy_templates_vl st,

1484: l_object_version_number number ;
1485:
1486: Cursor c_strategy(p_delinquency_id number, p_object_id number, p_object_type varchar2) is
1487: select s.strategy_id, st.strategy_name, s.next_work_item_id, t.name from iex_strategies s,
1488: iex_strategy_templates_vl st,
1489: iex_strategy_work_items w,
1490: iex_stry_temp_work_items_vl t
1491: where ((s.delinquency_id = p_delinquency_id and
1492: s.object_id = p_object_id and s.object_type = p_object_type)) and

Line 1502: iex_strategy_templates_vl st,

1498:
1499: --Start bug 6723540 gnramasa 02 Jan 08
1500: Cursor c_cont_strategy(p_object_id number, p_object_type varchar2) is
1501: select s.strategy_id, st.strategy_name, s.next_work_item_id, t.name from iex_strategies s,
1502: iex_strategy_templates_vl st,
1503: iex_strategy_work_items w,
1504: iex_stry_temp_work_items_vl t
1505: where (s.object_id = p_object_id and s.object_type = p_object_type) and
1506: (s.checklist_yn IS NULL or s.checkList_YN = 'N')