DBA Data[Home] [Help]

APPS.PER_CHECKLIST_EVENTS dependencies on HR_GENERAL

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

164: open cur_check_wf_status(itemtype||':'|| itemkey ||':%');
165: fetch cur_check_wf_status into l_status,l_responder;
166: if(cur_check_wf_status%FOUND) then
167: if(l_status is not null and l_status='COMPLETE' )then
168: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_STATUS', hr_general.decode_lookup('PER_CHECKLIST_TASK_STATUS','COM'));
169: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_DONE_BY',l_responder);
170: resultout:='COMPLETE:'||l_status;
171: else
172: if (l_status is not null and l_status='NOT COMPLETED' )then

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

169: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_DONE_BY',l_responder);
170: resultout:='COMPLETE:'||l_status;
171: else
172: if (l_status is not null and l_status='NOT COMPLETED' )then
173: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_STATUS',hr_general.decode_lookup('PER_CHECKLIST_TASK_STATUS','REJ'));
174: wf_engine.SetItemAttrText(itemtype,itemkey,'TASK_DONE_BY',l_responder);
175: resultout:='COMPLETE:'||l_status;
176: end if;
177: end if;