DBA Data[Home] [Help]

APPS.HXC_APPROVAL_STATUS_PKG dependencies on WF_ENGINE

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

32: Begin
33: --
34: -- Set Approval Status
35: --
36: wf_engine.SetItemAttrText(itemtype => p_approvals(l_index).item_type,
37: itemkey => p_approvals(l_index).item_key,
38: aname => 'APPROVAL_STATUS',
39: avalue => p_aprv_status);
40: -- Set Comments

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

38: aname => 'APPROVAL_STATUS',
39: avalue => p_aprv_status);
40: -- Set Comments
41: --
42: wf_engine.SetItemAttrText(itemtype => p_approvals(l_index).item_type,
43: itemkey => p_approvals(l_index).item_key,
44: aname => 'APR_REJ_REASON',
45: avalue => p_approvals(l_index).aprv_comments);
46: --

Line 51: wf_engine.CompleteActivityInternalName

47: -- hr_utility.trace('Completing activity');
48: --
49: -- Check that there is a NOTIFIED activity to complete.
50: --
51: wf_engine.CompleteActivityInternalName
52: (itemtype => p_approvals(l_index).item_type
53: ,itemkey => p_approvals(l_index).item_key
54: ,activity => 'APPROVAL_NOTIFICATION:TC_APR_NOTIFICATION'
55: ,result => p_aprv_status); -- not using a result code

Line 65: wf_engine.CompleteActivityInternalName

61: Exception
62: When others then
63: -- Probably errored with XXXX is not a notified activity for HXCEMP/XXXXX
64: -- Try the other notification
65: wf_engine.CompleteActivityInternalName
66: (itemtype => p_approvals(l_index).item_type
67: ,itemkey => p_approvals(l_index).item_key
68: ,activity => 'FIND_AND_NOTIFY_APPROVERS:TC_APR_NOTIFICATION'
69: ,result => p_aprv_status);