DBA Data[Home] [Help]

APPS.HR_TRANSACTION_API dependencies on WF_ENGINE

Line 673: l_process_order_str := wf_engine.GetItemAttrText

669: end if;
670: -- end of bug fix
671:
672: --
673: l_process_order_str := wf_engine.GetItemAttrText
674: (itemtype => p_item_type,
675: itemkey => p_item_key,
676: aname =>'PROCESS_ORDER_STRING');
677:

Line 682: wf_engine.SetItemAttrText (itemtype => p_item_type,

678: --
679: if l_process_order_str is null then
680: hr_utility.trace('In (if l_process_order_str is null then): '|| l_proc);
681: l_process_order_str := '%'||to_char(p_actid)||'%1%';
682: wf_engine.SetItemAttrText (itemtype => p_item_type,
683: itemkey => p_item_key,
684: aname => 'PROCESS_ORDER_STRING',
685: avalue => l_process_order_str );
686: else

Line 706: wf_engine.SetItemAttrText (itemtype => p_item_type,

702: if(instr(l_process_order_str,p_actid) = 0)then
703: --
704: l_last_process_order := to_number(Get_Last_Process_Order(l_process_order_str))+1;
705: l_value := l_process_order_str ||to_char(p_actid)||'%'||to_char(l_last_process_order)||'%';
706: wf_engine.SetItemAttrText (itemtype => p_item_type,
707: itemkey => p_item_key,
708: aname => 'PROCESS_ORDER_STRING',
709: avalue => l_value );
710: --

Line 768: l_process_order_str := wf_engine.GetItemAttrText

764: return (null);
765: end if;
766: -- end of bug fix
767:
768: l_process_order_str := wf_engine.GetItemAttrText
769: (itemtype => p_item_type,
770: itemkey => p_item_key,
771: aname =>'PROCESS_ORDER_STRING');
772: --hr_utility.trace('Get Process Order--Process Order Str ' || l_process_order_str);