DBA Data[Home] [Help]

APPS.AP_WEB_EXPORT_WF dependencies on WF_ENGINE

Line 77: WF_ENGINE.CreateProcess(l_item_type,

73: l_debug_info := 'Create Rejection Process';
74: ----------------------------------------------------------
75: l_item_key := GenerateEventKey(p_request_id);
76:
77: WF_ENGINE.CreateProcess(l_item_type,
78: l_item_key,
79: C_REJECTION_PROCESS);
80:
81: ----------------------------------------------------------

Line 84: WF_ENGINE.SetItemAttrNumber(l_item_type,

80:
81: ----------------------------------------------------------
82: l_debug_info := 'Set Rejection Process Attr REQUEST_ID';
83: ----------------------------------------------------------
84: WF_ENGINE.SetItemAttrNumber(l_item_type,
85: l_item_key,
86: 'REQUEST_ID',
87: p_request_id);
88:

Line 92: WF_ENGINE.SetItemAttrText(l_item_type,

88:
89: ----------------------------------------------------------
90: l_debug_info := 'Set Rejection Process Attr REJECTIONS_ROLE';
91: ----------------------------------------------------------
92: WF_ENGINE.SetItemAttrText(l_item_type,
93: l_item_key,
94: 'REJECTIONS_ROLE',
95: p_role);
96:

Line 100: WF_ENGINE.SetItemOwner(l_item_type,

96:
97: ----------------------------------------------------------
98: l_debug_info := 'Set the Requester as the Owner of Workflow Process.';
99: ----------------------------------------------------------
100: WF_ENGINE.SetItemOwner(l_item_type,
101: l_item_key,
102: p_role);
103:
104:

Line 108: WF_ENGINE.SetItemUserKey(l_item_type,

104:
105: ----------------------------------------------------------
106: l_debug_info := 'Set Item User Key to Request Id for easier query ';
107: ----------------------------------------------------------
108: WF_ENGINE.SetItemUserKey(l_item_type,
109: l_item_key,
110: p_request_id);
111:
112: ----------------------------------------------------------

Line 115: WF_ENGINE.StartProcess(l_item_type,

111:
112: ----------------------------------------------------------
113: l_debug_info := 'Start Rejection Process';
114: ----------------------------------------------------------
115: WF_ENGINE.StartProcess(l_item_type,
116: l_item_key);
117:
118: AP_WEB_UTILITIES_PKG.logProcedure('AP_WEB_EXPORT_WF', 'end RaiseRejectionEvent');
119: