DBA Data[Home] [Help]

APPS.ENG_WORKFLOW_API_PKG dependencies on WF_NOTIFICATION

Line 1110: P_PSIG_DOCUMENTFORMAT => WF_NOTIFICATION.doc_text,

1106: x_msg_count => l_msg_count,
1107: x_msg_data => l_msg_data,
1108: P_PSIG_XML => NULL,
1109: P_PSIG_DOCUMENT => NULL,
1110: P_PSIG_DOCUMENTFORMAT => WF_NOTIFICATION.doc_text,
1111: P_PSIG_REQUESTER => l_requester,
1112: P_PSIG_SOURCE => NULL,
1113: P_EVENT_NAME => l_Event_name,
1114: P_EVENT_KEY => l_Event_Key,

Line 1455: l_response_read := wf_notification.getattrtext(wf_engine.context_nid, 'READ_RESPONSE');

1451: -- The attribute stores user's response of "I have read the e-record".
1452: -- if the answer is No, then raise application error
1453: --
1454: IF (funcmode = 'RESPOND') THEN
1455: l_response_read := wf_notification.getattrtext(wf_engine.context_nid, 'READ_RESPONSE');
1456: IF (l_response_read = 'N') THEN
1457: WF_CORE.CONTEXT('ENG_WORKFLOW_API_PKG', 'VoteForResultType',itemtype, itemkey,
1458: FND_MESSAGE.GET_STRING('EDR','EDR_EREC_NOT_REVIEWED_ERR'));
1459: raise_application_error(-20002,FND_MESSAGE.GET_STRING('EDR','EDR_EREC_NOT_REVIEWED_ERR'));

Line 1505: if (wf_notification.OpenNotificationsExist(l_group_id)) then

1501: -- (in timeout mode).
1502: if ((l_voting_option = 'REQUIRE_ALL_VOTES') or
1503: ((funcmode = wf_engine.eng_run) and
1504: (l_voting_option = 'WAIT_FOR_ALL_VOTES'))) then
1505: if (wf_notification.OpenNotificationsExist(l_group_id)) then
1506: resultout := wf_engine.eng_waiting;
1507: return;
1508: end if;
1509: end if;

Line 1519: Wf_Notification.VoteCount(l_group_id,result_rec.result_code,

1515: -- d. REQUIRE_ALL_VOTES and all votes are cast
1516: -- Tally votes.
1517: for result_rec in result_codes loop
1518: -- Tally Vote Count for this result code
1519: Wf_Notification.VoteCount(l_group_id,result_rec.result_code,
1520: l_code_count,l_per_of_total,l_per_of_vote);
1521:
1522: -- If this is timeout mode, then use the percent of votes cast so far.
1523: -- If this is run mode, then use the percent of total votes possible.

Line 1572: wf_notification.OpenNotificationsExist(l_group_id)) then

1568: resultout := wf_engine.eng_completed||':'||result;
1569: else
1570: -- If we get here no non-default results were satisfied.
1571: if (funcmode = wf_engine.eng_run and
1572: wf_notification.OpenNotificationsExist(l_group_id)) then
1573: -- Not timed out and still open notifications.
1574: -- Return waiting to continue voting.
1575: resultout := wf_engine.eng_waiting;
1576: elsif (default_result is not null) then