[Home] [Help]
2210: where item_type = l_item_type
2211: and item_key = l_item_key
2212: union
2213: select notification_id
2214: from wf_item_activity_statuses_h
2215: where item_type = l_item_type
2216: and item_key = l_item_key);
2217:
2218: update wf_items
2224: set end_date = sysdate
2225: where item_type = l_item_type
2226: and item_key = l_item_key;
2227:
2228: update wf_item_activity_statuses_h
2229: set end_date = sysdate
2230: where item_type = l_item_type
2231: and item_key = l_item_key;
2232: