DBA Data[Home] [Help]

APPS.PER_CHECKLIST_EVENTS dependencies on HR_GENERAL

Line 196: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_STATUS', hr_general.decode_lookup('PER_CHECKLIST_TASK_STATUS','COM'));

192: open cur_check_wf_status(itemtype||':'|| itemkey ||':%');
193: fetch cur_check_wf_status into l_status,l_responder;
194: if(cur_check_wf_status%FOUND) then
195: if(l_status is not null and l_status='COMPLETE' )then
196: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_STATUS', hr_general.decode_lookup('PER_CHECKLIST_TASK_STATUS','COM'));
197: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_DONE_BY',l_responder);
198: resultout:='COMPLETE:'||l_status;
199: else
200: if (l_status is not null and l_status='NOT COMPLETED' )then

Line 201: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_STATUS',hr_general.decode_lookup('PER_CHECKLIST_TASK_STATUS','REJ'));

197: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_DONE_BY',l_responder);
198: resultout:='COMPLETE:'||l_status;
199: else
200: if (l_status is not null and l_status='NOT COMPLETED' )then
201: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_STATUS',hr_general.decode_lookup('PER_CHECKLIST_TASK_STATUS','REJ'));
202: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_DONE_BY',l_responder);
203: resultout:='COMPLETE:'||l_status;
204: end if;
205: end if;