DBA Data[Home] [Help]

APPS.AHL_WF_NOTIFICATION_PVT dependencies on WF_ENGINE

Line 107: WF_ENGINE.CreateProcess(

103: END IF;
104:
105: -- **********************************************************************************
106: -- CREATE WORKFLOW PROCESS INSTANCE
107: WF_ENGINE.CreateProcess(
108: process => l_process_name,
109: itemtype => l_item_type,
110: itemkey => l_item_key);
111: -- **********************************************************************************

Line 115: WF_ENGINE.SetItemAttrText(

111: -- **********************************************************************************
112:
113: -- **********************************************************************************
114: -- SET PROCESS ATTRIBUTE: SUBJECT
115: WF_ENGINE.SetItemAttrText(
116: itemtype => l_item_type,
117: itemkey => l_item_key,
118: aname => 'SUBJECT',
119: avalue => p_subject);

Line 134: WF_ENGINE.SetItemAttrDocument(

130: FND_LOG.string(l_log_statement, l_full_name, 'the param list: '||l_param_list);
131: END IF;
132:
133: -- 2) set the document id attribute value
134: WF_ENGINE.SetItemAttrDocument(
135: itemtype => l_item_type,
136: itemkey => l_item_key,
137: aname => 'OA_BODY',
138: documentid => 'JSP:/OA_HTML/OA.jsp?OAFunc='||

Line 224: WF_ENGINE.SetItemAttrText(

220: ' l_approver_role > '||l_approver_role);
221: END IF;
222:
223: -- 5) set the approval role attribute value
224: WF_ENGINE.SetItemAttrText(
225: itemtype => l_item_type,
226: itemkey => l_item_key,
227: aname => 'APPROVER',
228: avalue => l_approver_role);

Line 272: WF_ENGINE.SetItemOwner(

268: ' l_requester_role > '||l_requester_role);
269: END IF;
270:
271: -- 3) set the process owner
272: WF_ENGINE.SetItemOwner(
273: itemtype => l_item_type,
274: itemkey => l_item_key,
275: owner => l_requester_role);
276: -- **********************************************************************************

Line 280: WF_ENGINE.StartProcess(

276: -- **********************************************************************************
277:
278: -- **********************************************************************************
279: -- START PROCESS
280: WF_ENGINE.StartProcess(
281: itemtype => l_item_type,
282: itemkey => l_item_key);
283: -- **********************************************************************************
284: