DBA Data[Home] [Help]

APPS.PO_APPROVALLIST_S1 dependencies on WF_DIRECTORY

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

332: l_index := l_index + 1;
333: l_approval_list_elt.id := NULL;
334: l_approval_list_elt.sequence_num := l_index;
335:
336: wf_directory.getusername('PER', p_first_approver_id, l_username, l_disp_name);
337: l_approval_list_elt.approver_id := p_first_approver_id;
338: l_approval_list_elt.approver_disp_name := l_disp_name;
339:
340: l_approval_list_elt.responder_id := NULL;

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

430:
431: l_index := l_index + 1;
432:
433: --Changes Made For Bug 2605927. Passing superior_id using the table.
434: wf_directory.getusername('PER',l_superior_list(l_sup_index), l_username, l_disp_name);
435: -- Make sure every field is reset since we reuse the same record
436: l_approval_list_elt.id := NULL;
437: l_approval_list_elt.sequence_num := l_index;
438:

Line 919: wf_directory.getusername('PER',

915: EXIT WHEN c_approval_list_lines%NOTFOUND;
916:
917: IF (l_approval_list_elt.approver_id IS NOT NULL) THEN
918: l_progress := '004.'||to_char(l_index);
919: wf_directory.getusername('PER',
920: l_approval_list_elt.approver_id,
921: l_username,
922: l_approval_list_elt.approver_disp_name);
923: END IF;

Line 926: wf_directory.getusername('PER',

922: l_approval_list_elt.approver_disp_name);
923: END IF;
924: IF (l_approval_list_elt.responder_id IS NOT NULL) THEN
925: l_progress := '005.'||to_char(l_index);
926: wf_directory.getusername('PER',
927: l_approval_list_elt.responder_id,
928: l_username,
929: l_approval_list_elt.responder_disp_name);
930: END IF;

Line 933: wf_directory.getusername('PER',

929: l_approval_list_elt.responder_disp_name);
930: END IF;
931: IF (l_approval_list_elt.forward_to_id IS NOT NULL) THEN
932: l_progress := '006.'||to_char(l_index);
933: wf_directory.getusername('PER',
934: l_approval_list_elt.forward_to_id,
935: l_username,
936: l_approval_list_elt.forward_to_disp_name);
937: END IF;

Line 2382: WF_DIRECTORY.GetUserName(l_orig_system,

2378: itemkey => l_old_wf_item_key,
2379: aname => 'FORWARD_FROM_ID',
2380: avalue => l_current_approver_id);
2381:
2382: WF_DIRECTORY.GetUserName(l_orig_system,
2383: l_current_approver_id,
2384: l_current_approver_user_name,
2385: l_current_approver_disp_name);
2386: