DBA Data[Home] [Help]

APPS.GMI_WF_LOT_RETEST dependencies on WF_ITEM_ACTIVITY_STATUS

Line 96: wf_item_activity_status.root_status (l_itemtype, l_itemkey, l_status, l_result);

92: combination */
93: BEGIN
94: IF (wf_item.item_exist (l_itemtype, l_itemkey)) THEN
95: /* Check the status of the root activity */
96: wf_item_activity_status.root_status (l_itemtype, l_itemkey, l_status, l_result);
97: /* If it is not completed then abort the process */
98: IF (l_status <> 'COMPLETE')THEN
99: wf_engine.abortprocess (itemtype=> l_itemtype, itemkey=> l_itemkey, process=> l_workflowprocess);
100: END IF;