DBA Data[Home] [Help]

APPS.IGP_VW_GEN_002_PKG dependencies on WF_ENGINE

Line 75: Wf_Engine.SetItemAttrText(

71: END LOOP;
72:
73: -- Set WF attrib for Role here.
74:
75: Wf_Engine.SetItemAttrText(
76: ItemType => itemtype,
77: ItemKey => itemkey,
78: aname => 'P_CC_ROLE',
79: avalue => l_role_name );

Line 224: l_portfolio_ids := wf_engine.GetItemAttrText( itemtype => l_item_type,

220: IF l_item IS NOT NULL THEN
221: --
222: -- If the Item Name is not null then get the value of the Portfolios to form the message again.
223: --
224: l_portfolio_ids := wf_engine.GetItemAttrText( itemtype => l_item_type,
225: itemkey => l_item_key,
226: aname => 'P_PORTFOLIO_IDS');
227: END IF;
228:

Line 272: wf_engine.setitemattrtext(ItemType => itemtype,

268: Create_CC_Role ( itemtype => itemtype,
269: itemkey => itemkey );
270:
271: -- standard way to call PLSQLCLOB. Dont modify.
272: wf_engine.setitemattrtext(ItemType => itemtype,
273: ItemKey => itemkey,
274: aname => 'P_CC_MESSAGE',
275: avalue => 'PLSQLCLOB:igp_vw_gen_002_pkg.write_cc_message/'||itemtype||':'||itemkey||'*P_CC_MESSAGE');
276:

Line 277: wf_engine.setitemattrtext(ItemType => itemtype,

273: ItemKey => itemkey,
274: aname => 'P_CC_MESSAGE',
275: avalue => 'PLSQLCLOB:igp_vw_gen_002_pkg.write_cc_message/'||itemtype||':'||itemkey||'*P_CC_MESSAGE');
276:
277: wf_engine.setitemattrtext(ItemType => itemtype,
278: ItemKey => itemkey,
279: aname => 'P_SYSDATE',
280: avalue => l_sysdate);
281:

Line 587: wf_engine.setitemattrtext(ItemType => itemtype,

583:
584: IF (funcmode = 'RUN') THEN
585: l_sysdate:= SYSDATE+1;
586:
587: wf_engine.setitemattrtext(ItemType => itemtype,
588: ItemKey => itemkey,
589: aname => 'P_SYSDATE',
590: avalue => l_sysdate);
591: resultout := 'COMPLETE';

Line 619: l_action := Wf_Engine.GetItemAttrText(itemtype,itemkey,'P_ACTION');

615:
616: BEGIN
617: l_action :=null;
618: l_action :=null;
619: l_action := Wf_Engine.GetItemAttrText(itemtype,itemkey,'P_ACTION');
620: IF (l_action = 'A' ) THEN
621: resultout := 'COMPLETE:A';
622: ELSIF (l_action = 'R' ) THEN
623: resultout := 'COMPLETE:R';

Line 782: l_str := wf_engine.GetItemAttrText( itemtype => l_item_type, itemkey => l_item_key, aname => 'P_INVALID_ASSIGN_LIST');

778: IF l_item IS NOT NULL THEN
779: --
780: -- If the Item Name is not null then get the value of the invalid assignments to form the message again.
781: --
782: l_str := wf_engine.GetItemAttrText( itemtype => l_item_type, itemkey => l_item_key, aname => 'P_INVALID_ASSIGN_LIST');
783: END IF;
784: END IF;
785: -- call local procedure to generate the HTML message.
786: build_invalid_assign_message(l_str,l_message);

Line 821: wf_engine.setitemattrtext(ItemType => itemtype,

817: itemkey => itemkey );
818:
819:
820: -- standard way to call PLSQLCLOB. Dont modify.
821: wf_engine.setitemattrtext(ItemType => itemtype,
822: ItemKey => itemkey,
823: aname => 'P_MESSAGE_TEXT',
824: avalue => 'PLSQLCLOB:igp_vw_gen_002_pkg.Write_CC_invalid_assign_Mes/'||itemtype||':'||itemkey||'*P_MESSAGE_TEXT');
825: resultout := 'COMPLETE';

Line 851: l_source := wf_engine.GetItemAttrText( itemtype => itemtype,itemkey => itemkey,aname => 'P_SOURCE');

847:
848: BEGIN
849: IF (funcmode = 'RUN') THEN
850: l_source := null;
851: l_source := wf_engine.GetItemAttrText( itemtype => itemtype,itemkey => itemkey,aname => 'P_SOURCE');
852: IF (l_source = 'CC') THEN
853: resultout := 'COMPLETE:CC'; -- Path 1 : Career Center removed the access.
854: ELSIF (l_source = 'VW') THEN
855: resultout := 'COMPLETE:VW'; -- Path 2 : Viewer removed the access.