DBA Data[Home] [Help]

APPS.WF_NOTIFICATION_UTIL dependencies on WF_EVENT

Line 23: avalue in wf_event_t)

19: -- avalue - New value for attribute
20: --
21: procedure SetAttrEvent (nid in number,
22: aname in varchar2,
23: avalue in wf_event_t)
24: is
25: begin
26: if ((nid is null) or (aname is null)) then
27: wf_core.token('NID', to_char(nid));

Line 60: return wf_event_t is

56: -- Attribute value
57:
58: function GetAttrEvent (nid in number,
59: aname in varchar2)
60: return wf_event_t is
61: lvalue wf_event_t;
62: begin
63: if ((nid is null) or (aname is null)) then
64: wf_core.token('NID', to_char(nid));

Line 61: lvalue wf_event_t;

57:
58: function GetAttrEvent (nid in number,
59: aname in varchar2)
60: return wf_event_t is
61: lvalue wf_event_t;
62: begin
63: if ((nid is null) or (aname is null)) then
64: wf_core.token('NID', to_char(nid));
65: wf_core.token('ANAME', aname);

Line 92: p_event in out nocopy wf_event_t)

88: -- denormalize_rf
89: -- Rule function to denormalize a notificaion
90: --
91: FUNCTION denormalize_rf(p_subscription_guid in raw,
92: p_event in out nocopy wf_event_t)
93: return varchar2
94: is
95: l_nid number;
96: l_language varchar2(64);

Line 174: wf_event.setErrorInfo(p_event, 'ERROR');

170: return 'SUCCESS';
171: exception
172: when others then
173: wf_core.context('Wf_Notification_util', 'Denormalize_Rf', to_char(l_nid));
174: wf_event.setErrorInfo(p_event, 'ERROR');
175: return 'ERROR';
176: end denormalize_rf;
177:
178: function CheckIllegalChar(bindparam in varchar2,

Line 656: p_event in out nocopy wf_event_t) return varchar2

652: -- p_event Event Message
653: -- OUT
654: -- Status as ERROR, SUCCESS, WARNING
655: function Complete_RF(p_subscription_guid in raw,
656: p_event in out nocopy wf_event_t) return varchar2
657: is
658:
659: l_nid number;
660: l_resp_found varchar2(10);

Line 677: wf_event.setErrorInfo(p_event, 'ERROR');

673: exception
674: when others then
675: wf_core.context('WF_NOTIFICATION', 'COMPLETE_RF', p_event.getEventName(),
676: p_subscription_guid);
677: wf_event.setErrorInfo(p_event, 'ERROR');
678: return 'ERROR';
679:
680: end Complete_RF;
681: