DBA Data[Home] [Help]

APPS.ASP_ALERT_ENGINE dependencies on WF_ENGINE

Line 99: l_event_entity := wf_engine.GetItemAttrText( itemtype =>itemtype,

95: fnd_log.string(l_debug_procedure, G_MODULE||l_api_name, 'Entered '||G_PKG_NAME||'.'||l_api_name);
96: end if;
97:
98: If(funcmode = 'RUN') Then
99: l_event_entity := wf_engine.GetItemAttrText( itemtype =>itemtype,
100: itemkey =>itemkey,
101: aname =>'ALERT_SOURCE_OBJECT_CODE');
102: if(l_debug_procedure >= l_debug_runtime) then
103: fnd_log.string(l_debug_procedure, G_MODULE||l_api_name, 'l_event_entity '||l_event_entity);

Line 169: l_event_entity := wf_engine.GetItemAttrText( itemtype =>itemtype,

165: l_api_name := 'Get_Content_Provider';
166: l_qualified_api_name := G_PKG_NAME||'.'||l_api_name;
167:
168: If(funcmode = 'RUN') Then
169: l_event_entity := wf_engine.GetItemAttrText( itemtype =>itemtype,
170: itemkey =>itemkey,
171: aname =>'ALERT_SOURCE_OBJECT_CODE');
172:
173: begin

Line 174: l_use_custom_content := wf_engine.GetItemAttrText( itemtype =>itemtype,

170: itemkey =>itemkey,
171: aname =>'ALERT_SOURCE_OBJECT_CODE');
172:
173: begin
174: l_use_custom_content := wf_engine.GetItemAttrText( itemtype =>itemtype,
175: itemkey =>itemkey,
176: aname =>'USE_CUSTOM_CONTENT_AGENT');
177: exception
178: when others then

Line 256: l_event_entity := wf_engine.GetItemAttrText( itemtype =>itemtype,

252: fnd_log.string(l_debug_procedure, G_MODULE||l_api_name, 'Entered '||G_PKG_NAME||'.'||l_api_name);
253: end if;
254:
255: If(funcmode = 'RUN') Then
256: l_event_entity := wf_engine.GetItemAttrText( itemtype =>itemtype,
257: itemkey =>itemkey,
258: aname =>'ALERT_SOURCE_OBJECT_CODE');
259: begin
260: l_use_custom_delivery := wf_engine.GetItemAttrText( itemtype =>itemtype,

Line 260: l_use_custom_delivery := wf_engine.GetItemAttrText( itemtype =>itemtype,

256: l_event_entity := wf_engine.GetItemAttrText( itemtype =>itemtype,
257: itemkey =>itemkey,
258: aname =>'ALERT_SOURCE_OBJECT_CODE');
259: begin
260: l_use_custom_delivery := wf_engine.GetItemAttrText( itemtype =>itemtype,
261: itemkey =>itemkey,
262: aname =>'USE_CUSTOM_DELIVERY_AGENT');
263: exception
264: when others then

Line 336: resultout := wf_engine.eng_completed||':'||wf_engine.eng_null;

332: if(l_debug_procedure >= l_debug_runtime) then
333: fnd_log.string(l_debug_procedure, G_MODULE||l_api_name, 'Entered '||G_PKG_NAME||'.'||l_api_name);
334: end if;
335:
336: resultout := wf_engine.eng_completed||':'||wf_engine.eng_null;
337: EXCEPTION
338: When others Then
339: Wf_Core.Context(G_PKG_NAME, 'Noop', l_api_name, itemkey, to_char(actid), funcmode);
340: l_debug_msg := l_qualified_api_name||':OTHERS:'||to_char(SQLCODE)||':'||substr(SQLERRM,1,500);

Line 392: l_user_id := WF_ENGINE.GetItemAttrNumber

388: -- Engine calls SET_CTX just before activity execution
389: ELSIF (funcmode = 'SET_CTX') THEN
390:
391: -- First get the user id, resp id, and appl id
392: l_user_id := WF_ENGINE.GetItemAttrNumber
393: ( itemtype => itemtype,
394: itemkey => itemkey,
395: aname => 'USER_ID'
396: );

Line 398: l_resp_id := WF_ENGINE.GetItemAttrNumber

394: itemkey => itemkey,
395: aname => 'USER_ID'
396: );
397:
398: l_resp_id := WF_ENGINE.GetItemAttrNumber
399: ( itemtype => itemtype,
400: itemkey => itemkey,
401: aname => 'RESPONSIBILITY_ID'
402: );

Line 403: l_resp_appl_id := WF_ENGINE.GetItemAttrNumber

399: ( itemtype => itemtype,
400: itemkey => itemkey,
401: aname => 'RESPONSIBILITY_ID'
402: );
403: l_resp_appl_id := WF_ENGINE.GetItemAttrNumber
404: ( itemtype => itemtype,
405: itemkey => itemkey,
406: aname => 'APPLICATION_ID'
407: );