DBA Data[Home] [Help]

APPS.HXC_APPROVAL_STATUS_PKG dependencies on WF_ENGINE

Line 40: wf_engine.SetItemAttrText(itemtype => p_approvals(l_index).item_type,

36: l_abs_enabled := 'N';
37: --
38: -- Set Approval Status
39: --
40: wf_engine.SetItemAttrText(itemtype => p_approvals(l_index).item_type,
41: itemkey => p_approvals(l_index).item_key,
42: aname => 'APPROVAL_STATUS',
43: avalue => p_aprv_status);
44: -- Set Comments

Line 46: wf_engine.SetItemAttrText(itemtype => p_approvals(l_index).item_type,

42: aname => 'APPROVAL_STATUS',
43: avalue => p_aprv_status);
44: -- Set Comments
45: --
46: wf_engine.SetItemAttrText(itemtype => p_approvals(l_index).item_type,
47: itemkey => p_approvals(l_index).item_key,
48: aname => 'APR_REJ_REASON',
49: avalue => p_approvals(l_index).aprv_comments);
50: --

Line 54: l_abs_enabled := wf_engine.GetItemAttrText(itemtype => p_approvals(l_index).item_type,

50: --
51: -- hr_utility.trace('Completing activity');
52: --
53:
54: l_abs_enabled := wf_engine.GetItemAttrText(itemtype => p_approvals(l_index).item_type,
55: itemkey => p_approvals(l_index).item_key ,
56: aname => 'IS_ABS_ENABLED',
57: ignore_notfound => true);
58:

Line 68: wf_engine.CompleteActivityInternalName

64: END IF;
65:
66: -- Check that there is a NOTIFIED activity to complete.
67: --
68: wf_engine.CompleteActivityInternalName
69: (itemtype => p_approvals(l_index).item_type
70: ,itemkey => p_approvals(l_index).item_key
71: ,activity => l_activity
72: ,result => p_aprv_status); -- not using a result code

Line 89: wf_engine.CompleteActivityInternalName

85: ELSE
86: l_activity := 'FIND_AND_NOTIFY_APPROVERS:TC_APR_NOTIFICATION';
87: END IF;
88:
89: wf_engine.CompleteActivityInternalName
90: (itemtype => p_approvals(l_index).item_type
91: ,itemkey => p_approvals(l_index).item_key
92: ,activity => l_activity
93: ,result => p_aprv_status);