DBA Data[Home] [Help]

APPS.CSE_FA_STAGE_PKG dependencies on WF_ENGINE

Line 433: WF_ENGINE.CreateProcess (

429: l_item_key := l_item_type||'-'||l_item_key_seq;
430:
431: debug('item key : '||l_item_key);
432:
433: WF_ENGINE.CreateProcess (
434: itemtype => l_item_type,
435: itemkey => l_item_key,
436: process => 'CSEPAPRC');
437:

Line 447: WF_ENGINE.SetItemAttrText (

443: AND frt.language = 'US';
444:
445: debug('resp name : '||l_resp_name);
446:
447: WF_ENGINE.SetItemAttrText (
448: itemtype => l_item_type,
449: itemkey => l_item_key,
450: aname => '#FROM_ROLE',
451: avalue => 'Asset Tracking Super User');

Line 455: WF_ENGINE.SetItemAttrText (

451: avalue => 'Asset Tracking Super User');
452:
453: l_message_subject := fnd_message.get_string('CSE', 'CSE_FA_NOTIFICATION_SUBJECT');
454:
455: WF_ENGINE.SetItemAttrText (
456: itemtype => l_item_type,
457: itemkey => l_item_key,
458: aname => 'MESSAGE_SUBJECT',
459: avalue => l_message_subject);

Line 463: WF_ENGINE.SetItemAttrText (

459: avalue => l_message_subject);
460:
461: l_message_body := fnd_message.get_string('CSE', 'CSE_FA_NOTIFICATION_MSG');
462:
463: WF_ENGINE.SetItemAttrText (
464: itemtype => l_item_type,
465: itemkey => l_item_key,
466: aname => 'MESSAGE_BODY',
467: avalue => l_message_body);

Line 469: WF_ENGINE.SetItemAttrText (

465: itemkey => l_item_key,
466: aname => 'MESSAGE_BODY',
467: avalue => l_message_body);
468:
469: WF_ENGINE.SetItemAttrText (
470: itemtype => l_item_type,
471: itemkey => l_item_key,
472: aname => 'CONC_REQUEST_ID',
473: avalue => p_request_id);

Line 477: WF_ENGINE.SetItemAttrText (

473: avalue => p_request_id);
474:
475: ib_url(l_ib_url);
476:
477: WF_ENGINE.SetItemAttrText (
478: itemtype => l_item_type,
479: itemkey => l_item_key,
480: aname => 'IB_URL',
481: avalue => l_ib_url);

Line 490: WF_ENGINE.SetItemAttrText (

486: WHERE fr.responsibility_key = 'CSE_ASSET_PLANNER'
487: AND frt.responsibility_id = fr.responsibility_id
488: AND frt.language = 'US';
489:
490: WF_ENGINE.SetItemAttrText (
491: itemtype => l_item_type,
492: itemkey => l_item_key,
493: aname => 'SEND_TO',
494: avalue => l_resp_name);

Line 496: WF_ENGINE.SetItemAttrText (

492: itemkey => l_item_key,
493: aname => 'SEND_TO',
494: avalue => l_resp_name);
495:
496: WF_ENGINE.SetItemAttrText (
497: itemtype => l_item_type,
498: itemkey => l_item_key,
499: aname => 'ATTACHMENT',
500: avalue => 'PLSQLCLOB:CSE_FA_STAGE_PKG.GET_REPORT_CLOB/'||g_clob);

Line 502: WF_ENGINE.StartProcess (

498: itemkey => l_item_key,
499: aname => 'ATTACHMENT',
500: avalue => 'PLSQLCLOB:CSE_FA_STAGE_PKG.GET_REPORT_CLOB/'||g_clob);
501:
502: WF_ENGINE.StartProcess (
503: itemtype => l_item_type,
504: itemkey => l_item_key);
505:
506: END send_mail;