DBA Data[Home] [Help]

APPS.PON_FORMS_UTIL_PVT dependencies on WF_ENGINE

Line 4387: wf_engine.createProcess(itemtype => p_itemtype,

4383: ,notification_preference => 'MAILTEXT'
4384: ,email_address => l_email_to);
4385: END IF;
4386: END IF;
4387: wf_engine.createProcess(itemtype => p_itemtype,
4388: itemkey => l_item_key,
4389: process => 'PON_FED_POST');
4390:
4391: --set attribute for sender

Line 4392: wf_engine.SetItemAttrText(itemtype => p_itemtype

4388: itemkey => l_item_key,
4389: process => 'PON_FED_POST');
4390:
4391: --set attribute for sender
4392: wf_engine.SetItemAttrText(itemtype => p_itemtype
4393: ,itemkey => l_item_key
4394: ,aname => '#FROM_ROLE'
4395: ,avalue => p_from_role_name);
4396:

Line 4397: wf_engine.SetItemAttrText(itemtype => p_itemtype

4393: ,itemkey => l_item_key
4394: ,aname => '#FROM_ROLE'
4395: ,avalue => p_from_role_name);
4396:
4397: wf_engine.SetItemAttrText(itemtype => p_itemtype
4398: ,itemkey => l_item_key
4399: ,aname => '#WFM_FROM'
4400: ,avalue => p_from_role_name);
4401:

Line 4402: wf_engine.SetItemAttrText(itemtype => p_itemtype

4398: ,itemkey => l_item_key
4399: ,aname => '#WFM_FROM'
4400: ,avalue => p_from_role_name);
4401:
4402: wf_engine.SetItemAttrText(itemtype => p_itemtype
4403: ,itemkey => l_item_key
4404: ,aname => '#WFM_REPLYTO'
4405: ,avalue => l_buyer_email);
4406:

Line 4408: wf_engine.SetItemAttrText (itemtype => p_itemtype,

4404: ,aname => '#WFM_REPLYTO'
4405: ,avalue => l_buyer_email);
4406:
4407: -- set attribute for receiver
4408: wf_engine.SetItemAttrText (itemtype => p_itemtype,
4409: itemkey => l_item_key,
4410: aname => 'TO_ROLE',
4411: avalue => l_to_role_name);
4412: -- set attribute for Email CC

Line 4413: wf_engine.SetItemAttrText(itemtype => p_itemtype

4409: itemkey => l_item_key,
4410: aname => 'TO_ROLE',
4411: avalue => l_to_role_name);
4412: -- set attribute for Email CC
4413: wf_engine.SetItemAttrText(itemtype => p_itemtype
4414: ,itemkey => l_item_key
4415: ,aname => '#WFM_CC'
4416: ,avalue => l_email_cc);
4417:

Line 4419: wf_engine.SetItemAttrText (itemtype => p_itemtype,

4415: ,aname => '#WFM_CC'
4416: ,avalue => l_email_cc);
4417:
4418: -- set email subject information
4419: wf_engine.SetItemAttrText (itemtype => p_itemtype,
4420: itemkey => l_item_key,
4421: aname => 'FORM_NAME',
4422: avalue => l_form_name);
4423:

Line 4424: wf_engine.SetItemAttrText (itemtype => p_itemtype,

4420: itemkey => l_item_key,
4421: aname => 'FORM_NAME',
4422: avalue => l_form_name);
4423:
4424: wf_engine.SetItemAttrText (itemtype => p_itemtype,
4425: itemkey => l_item_key,
4426: aname => 'SOLNBR',
4427: avalue => l_solnbr);
4428:

Line 4430: wf_engine.SetItemAttrText (itemtype => p_itemtype,

4426: aname => 'SOLNBR',
4427: avalue => l_solnbr);
4428:
4429: -- Set email body information
4430: wf_engine.SetItemAttrText (itemtype => p_itemtype,
4431: itemkey => l_item_key,
4432: aname => 'XML',
4433: avalue => p_xml);
4434:

Line 4435: wf_engine.StartProcess (itemType => p_itemtype,

4431: itemkey => l_item_key,
4432: aname => 'XML',
4433: avalue => p_xml);
4434:
4435: wf_engine.StartProcess (itemType => p_itemtype,
4436: itemKey => l_item_key);
4437:
4438: EXCEPTION
4439: when PON_INVALID_EMAIL_TO_EXCEPTION then