DBA Data[Home] [Help]

APPS.WF_NOTIFICATION_UTIL dependencies on WF_EVENT_T

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);