DBA Data[Home] [Help]

APPS.PO_SIGNATURE_PVT dependencies on WF_ENGINE

Line 126: WF_ENGINE.SetItemOwner (itemtype => itemtype,

122: PO_REQAPPROVAL_INIT1.get_user_name(p_employee_id => l_preparer_id,
123: x_username => l_username,
124: x_user_display_name => l_user_display_name);
125:
126: WF_ENGINE.SetItemOwner (itemtype => itemtype,
127: itemkey => itemkey,
128: owner => l_username);
129:
130: PO_WF_UTIL_PKG.SetItemAttrText ( itemtype => itemType,

Line 2043: if (funcmode <> WF_ENGINE.eng_run) then

2039: END IF;
2040:
2041: -- Do nothing in cancel or timeout mode
2042: --
2043: if (funcmode <> WF_ENGINE.eng_run) then
2044: resultout := WF_ENGINE.eng_null;
2045: return;
2046: END if;
2047:

Line 2044: resultout := WF_ENGINE.eng_null;

2040:
2041: -- Do nothing in cancel or timeout mode
2042: --
2043: if (funcmode <> WF_ENGINE.eng_run) then
2044: resultout := WF_ENGINE.eng_null;
2045: return;
2046: END if;
2047:
2048: --

Line 2059: resultout := WF_ENGINE.eng_completed || ':' || l_req_signature ;

2055: END IF;
2056: --
2057: --
2058:
2059: resultout := WF_ENGINE.eng_completed || ':' || l_req_signature ;
2060:
2061: IF (g_po_wf_debug = 'Y') THEN
2062: l_progress := 'PO_SIGNATURE_PVT.Is_Signature_Required: 02. Result= ' || l_req_signature;
2063: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,l_progress);

Line 2266: l_notification_id := WF_ENGINE.context_nid;

2262: l_preparer_user_name WF_USERS.name%TYPE;
2263:
2264: BEGIN
2265: IF (funcmode = 'RESPOND') THEN
2266: l_notification_id := WF_ENGINE.context_nid;
2267:
2268: PO_WF_UTIL_PKG.SetItemAttrNumber(
2269: itemtype => itemtype,
2270: itemkey => itemkey,

Line 2327: l_notification_id := WF_ENGINE.context_nid;

2323:
2324: BEGIN
2325:
2326: IF (funcmode = 'RESPOND') THEN
2327: l_notification_id := WF_ENGINE.context_nid;
2328:
2329: PO_WF_UTIL_PKG.SetItemAttrNumber(
2330: itemtype => itemtype,
2331: itemkey => itemkey,

Line 2665: WF_ENGINE.AbortProcess(itemtype => 'POAPPRV',

2661: AND item_key = p_itemkey
2662: AND end_date IS NULL;
2663:
2664: IF l_itemkey IS NOT NULL THEN
2665: WF_ENGINE.AbortProcess(itemtype => 'POAPPRV',
2666: itemkey => l_itemkey,
2667: process => '',
2668: result => WF_ENGINE.eng_force);
2669: END IF;

Line 2668: result => WF_ENGINE.eng_force);

2664: IF l_itemkey IS NOT NULL THEN
2665: WF_ENGINE.AbortProcess(itemtype => 'POAPPRV',
2666: itemkey => l_itemkey,
2667: process => '',
2668: result => WF_ENGINE.eng_force);
2669: END IF;
2670: x_result := 'S';
2671: EXCEPTION
2672: WHEN NO_DATA_FOUND THEN

Line 2729: WF_ENGINE.CompleteActivity('POAPPRV', p_itemkey, l_activity_name, p_status);

2725: x_result := 'S';
2726: END;
2727:
2728: IF l_activity_name IS NOT NULL THEN
2729: WF_ENGINE.CompleteActivity('POAPPRV', p_itemkey, l_activity_name, p_status);
2730: END IF;
2731: END COMPLETE_BLOCK_ACTIVITIES;
2732:
2733: -------------------------------------------------------------------------------