DBA Data[Home] [Help]

APPS.PO_APPROVALLIST_S1 dependencies on WF_DIRECTORY

Line 319: wf_directory.getusername('PER', p_first_approver_id, l_username, l_disp_name);

315: l_index := l_index + 1;
316: l_approval_list_elt.id := NULL;
317: l_approval_list_elt.sequence_num := l_index;
318:
319: wf_directory.getusername('PER', p_first_approver_id, l_username, l_disp_name);
320: l_approval_list_elt.approver_id := p_first_approver_id;
321: l_approval_list_elt.approver_disp_name := l_disp_name;
322:
323: l_approval_list_elt.responder_id := NULL;

Line 417: wf_directory.getusername('PER',l_superior_list(l_sup_index), l_username, l_disp_name);

413:
414: l_index := l_index + 1;
415:
416: --Changes Made For Bug 2605927. Passing superior_id using the table.
417: wf_directory.getusername('PER',l_superior_list(l_sup_index), l_username, l_disp_name);
418: -- Make sure every field is reset since we reuse the same record
419: l_approval_list_elt.id := NULL;
420: l_approval_list_elt.sequence_num := l_index;
421:

Line 898: wf_directory.getusername('PER',

894: EXIT WHEN c_approval_list_lines%NOTFOUND;
895:
896: IF (l_approval_list_elt.approver_id IS NOT NULL) THEN
897: l_progress := '004.'||to_char(l_index);
898: wf_directory.getusername('PER',
899: l_approval_list_elt.approver_id,
900: l_username,
901: l_approval_list_elt.approver_disp_name);
902: END IF;

Line 905: wf_directory.getusername('PER',

901: l_approval_list_elt.approver_disp_name);
902: END IF;
903: IF (l_approval_list_elt.responder_id IS NOT NULL) THEN
904: l_progress := '005.'||to_char(l_index);
905: wf_directory.getusername('PER',
906: l_approval_list_elt.responder_id,
907: l_username,
908: l_approval_list_elt.responder_disp_name);
909: END IF;

Line 912: wf_directory.getusername('PER',

908: l_approval_list_elt.responder_disp_name);
909: END IF;
910: IF (l_approval_list_elt.forward_to_id IS NOT NULL) THEN
911: l_progress := '006.'||to_char(l_index);
912: wf_directory.getusername('PER',
913: l_approval_list_elt.forward_to_id,
914: l_username,
915: l_approval_list_elt.forward_to_disp_name);
916: END IF;

Line 2270: WF_DIRECTORY.GetUserName(l_orig_system,

2266: itemkey => l_old_wf_item_key,
2267: aname => 'FORWARD_FROM_ID',
2268: avalue => l_current_approver_id);
2269:
2270: WF_DIRECTORY.GetUserName(l_orig_system,
2271: l_current_approver_id,
2272: l_current_approver_user_name,
2273: l_current_approver_disp_name);
2274: