DBA Data[Home] [Help]

APPS.XNP_ADAPTER dependencies on WF_ENGINE

Line 440: l_NameArray Wf_Engine.NameTabTyp;

436: l_fe_name VARCHAR2(1024) ;
437: l_channel_name VARCHAR2(1024) ;
438: l_description VARCHAR2(1024) ;
439:
440: l_NameArray Wf_Engine.NameTabTyp;
441: l_ValArray Wf_Engine.TextTabTyp;
442:
443: CURSOR get_performer_name IS
444: SELECT xms.role_name

Line 441: l_ValArray Wf_Engine.TextTabTyp;

437: l_channel_name VARCHAR2(1024) ;
438: l_description VARCHAR2(1024) ;
439:
440: l_NameArray Wf_Engine.NameTabTyp;
441: l_ValArray Wf_Engine.TextTabTyp;
442:
443: CURSOR get_performer_name IS
444: SELECT xms.role_name
445: FROM xnp_msg_types_b xms,

Line 479: wf_engine.createprocess(l_item_type,

475: 'ADAPTER_ERROR',
476: l_item_type,
477: l_item_key) ;
478:
479: wf_engine.createprocess(l_item_type,
480: l_item_key,
481: 'ADAPTER_ERROR_NOTIFICATION') ;
482:
483: -- modified the code to replace the multiple calls to set the

Line 484: -- item attribute with Wf_Engine.SetItemAttrTextArray

480: l_item_key,
481: 'ADAPTER_ERROR_NOTIFICATION') ;
482:
483: -- modified the code to replace the multiple calls to set the
484: -- item attribute with Wf_Engine.SetItemAttrTextArray
485: -- skilaru 03/23/2001
486:
487: /****
488: wf_engine.SetItemAttrText(

Line 488: wf_engine.SetItemAttrText(

484: -- item attribute with Wf_Engine.SetItemAttrTextArray
485: -- skilaru 03/23/2001
486:
487: /****
488: wf_engine.SetItemAttrText(
489: ItemType=>l_item_type,
490: ItemKey=>l_item_key,
491: aname=>'FE_NAME',
492: avalue=>l_fe_name);

Line 494: wf_engine.SetItemAttrText(

490: ItemKey=>l_item_key,
491: aname=>'FE_NAME',
492: avalue=>l_fe_name);
493:
494: wf_engine.SetItemAttrText(
495: ItemType=>l_item_type,
496: ItemKey=>l_item_key,
497: aname=>'CHANNEL_NAME',
498: avalue=>l_channel_name);

Line 500: wf_engine.SetItemAttrText(

496: ItemKey=>l_item_key,
497: aname=>'CHANNEL_NAME',
498: avalue=>l_channel_name);
499:
500: wf_engine.SetItemAttrText(
501: ItemType=>l_item_type,
502: ItemKey=>l_item_key,
503: aname=>'DESCRIPTION',
504: avalue=>l_description);

Line 506: wf_engine.SetItemAttrText(

502: ItemKey=>l_item_key,
503: aname=>'DESCRIPTION',
504: avalue=>l_description);
505:
506: wf_engine.SetItemAttrText(
507: ItemType=>l_item_type,
508: ItemKey=>l_item_key,
509: aname=>'MSG_HANDLING_ROLE',
510: avalue=>l_performer);

Line 524: Wf_Engine.SetItemAttrTextArray (l_item_type, l_item_key, l_NameArray, l_ValArray);

520: l_ValArray(3) := l_description;
521: l_NameArray(4) := 'MSG_HANDLING_ROLE';
522: l_ValArray(4) := l_performer;
523:
524: Wf_Engine.SetItemAttrTextArray (l_item_type, l_item_key, l_NameArray, l_ValArray);
525:
526: wf_engine.startprocess(l_item_type,
527: l_item_key ) ;
528:

Line 526: wf_engine.startprocess(l_item_type,

522: l_ValArray(4) := l_performer;
523:
524: Wf_Engine.SetItemAttrTextArray (l_item_type, l_item_key, l_NameArray, l_ValArray);
525:
526: wf_engine.startprocess(l_item_type,
527: l_item_key ) ;
528:
529: EXCEPTION
530: WHEN OTHERS THEN