DBA Data[Home] [Help]

APPS.WF_ALERT dependencies on WF_CORE

Line 45: if ( wf_core.error_name = 'WFENG_ITEM_ATTR' ) then

41:
42: begin
43: lastrun := wf_engine.getitemattrdate(itemtype,itemkey,'LAST_CHECKED');
44: exception when others then
45: if ( wf_core.error_name = 'WFENG_ITEM_ATTR' ) then
46: wf_engine.AddItemAttr(itemtype,itemkey,'LAST_CHECKED');
47: lastrun := null;
48: else
49: raise;

Line 74: Wf_Core.Context('Wf_Alert', 'CheckAlert', itemtype,

70:
71:
72: exception
73: when others then
74: Wf_Core.Context('Wf_Alert', 'CheckAlert', itemtype,
75: itemkey, to_char(actid), funcmode);
76: raise;
77: end CheckAlert;
78:

Line 138: document:=wf_core.local_chr(10)||

134: 'Item TypeItem KeyUser KeyError MessageError Stack';
135:
136: else
137: document_type := 'text/plain';
138: document:=wf_core.local_chr(10)||
139: rpad('Item Type',15)||
140: rpad('Item Key',10)||
141: rpad('User key',15)||
142: rpad('Error Message',20)||

Line 143: rpad('Error Stack',60)||wf_core.local_chr(10);

139: rpad('Item Type',15)||
140: rpad('Item Key',10)||
141: rpad('User key',15)||
142: rpad('Error Message',20)||
143: rpad('Error Stack',60)||wf_core.local_chr(10);
144: end if;
145:
146: -- print each record
147: for error_rec in error_list loop

Line 150: ( x_agent => wf_core.translate('WF_WEB_AGENT'),

146: -- print each record
147: for error_rec in error_list loop
148: -- look up the monitor URL
149: err_url := WF_MONITOR.GetAdvancedEnvelopeURL
150: ( x_agent => wf_core.translate('WF_WEB_AGENT'),
151: x_item_type => error_rec.item_type,
152: x_item_key => error_rec.item_key,
153: x_admin_mode => 'YES')||
154: '&x_active=ACTIVE'||

Line 183: Wf_Core.Context('Wf_Alert', 'ErrorReport');

179:
180:
181: exception
182: when others then
183: Wf_Core.Context('Wf_Alert', 'ErrorReport');
184: raise;
185: end ErrorReport;
186:
187: