DBA Data[Home] [Help]

APPS.GMI_WF_LOT_EXPIRY dependencies on WF_ITEM_ACTIVITY_STATUS

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

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