DBA Data[Home] [Help]

APPS.HR_APPRAISAL_WORKFLOW_SS dependencies on WF_DIRECTORY

Line 237: wf_directory.getrolename(g_orig_system,l_appraisee_person_id,l_appraisee_user_name,l_display_name);

233: ,p_service_name => 'CURRENT_PERSON'
234: ,p_service_person_id => l_appraisee_person_id);
235: --HR_APPRAISEE_USER_NAME_ATTR
236: -- get the role for the Appraisee
237: wf_directory.getrolename(g_orig_system,l_appraisee_person_id,l_appraisee_user_name,l_display_name);
238:
239: if(item_attribute_exists(p_itemtype,p_itemkey,'HR_APPRAISEE_USER_NAME_ATTR')) then
240: wf_engine.setitemattrtext(p_itemtype,p_itemkey,'HR_APPRAISEE_USER_NAME_ATTR',l_appraisee_user_name);
241: else

Line 246: wf_directory.getrolename(g_orig_system,l_main_appraiser_id,l_supervisor_user_name,l_display_name);

242: wf_engine.additemattr(p_itemtype,p_itemkey,'HR_APPRAISEE_USER_NAME_ATTR',l_appraisee_user_name,null,null);
243: end if;
244: --SUPERVISOR_USERNAME
245: -- get the role for appraisee supervisor
246: wf_directory.getrolename(g_orig_system,l_main_appraiser_id,l_supervisor_user_name,l_display_name);
247: if(item_attribute_exists(p_itemtype,p_itemkey,'SUPERVISOR_USERNAME')) then
248: wf_engine.setitemattrtext(p_itemtype,p_itemkey,'SUPERVISOR_USERNAME',l_supervisor_user_name);
249: else
250: wf_engine.additemattr(p_itemtype,p_itemkey,'SUPERVISOR_USERNAME',l_supervisor_user_name,null,null);

Line 602: wf_directory.getrolename(g_orig_system,ln_particpant_person_id,lv_particpant_user_name,lv_particpant_display_name);

598: ln_particpant_person_id := substr(lv_participants_list,1,instr(lv_participants_list,hr_general_utilities.g_separator)-1);
599: lv_participants_list := substr(lv_participants_list,instr(lv_participants_list,hr_general_utilities.g_separator)+length(hr_general_utilities.g_separator));
600: end if;
601: -- get the role details for the participant and set the item attributes
602: wf_directory.getrolename(g_orig_system,ln_particpant_person_id,lv_particpant_user_name,lv_particpant_display_name);
603: -- set the details to the performer for the participant
604: -- HR_APPRA_PARTIC_USER_NAME_ATTR and HR_APPRA_PARTIC_DISP_NAME_ATTR , HR_APPRA_PARTICP_PER_ID_ATTR
605: wf_engine.setitemattrtext(itemtype,itemkey,'HR_APPRA_PARTIC_USER_NAME_ATTR',lv_particpant_user_name);
606: wf_engine.setitemattrtext(itemtype,itemkey,'HR_APPRA_PARTIC_DISP_NAME_ATTR',lv_particpant_display_name);

Line 663: wf_directory.getrolename(g_orig_system,ln_participant_person_id,lv_particpant_user_name,lv_particpant_display_name);

659: where participation_in_id = ln_appraisal_id
660: and participant_id=ln_participant_id;
661:
662: -- get the role details for the participant and set the item attributes
663: wf_directory.getrolename(g_orig_system,ln_participant_person_id,lv_particpant_user_name,lv_particpant_display_name);
664: -- set the details to the performer for the participant
665: -- HR_APPRA_PARTIC_USER_NAME_ATTR and HR_APPRA_PARTIC_DISP_NAME_ATTR , HR_APPRA_PARTICP_PER_ID_ATTR
666: wf_engine.setitemattrtext(itemtype,itemkey,'HR_APPRA_PARTIC_USER_NAME_ATTR',lv_particpant_user_name);
667: wf_engine.setitemattrtext(itemtype,itemkey,'HR_APPRA_PARTIC_DISP_NAME_ATTR',lv_particpant_display_name);

Line 901: wf_directory.getRoleName(p_orig_system => 'PER'

897: ,p_item_key => p_itemkey
898: ,p_service_name => 'HR_MAIN_APPRAISER'
899: ,p_service_person_id => l_main_appraiser_id);
900: -- reset the owner for the wf transaction
901: wf_directory.getRoleName(p_orig_system => 'PER'
902: ,p_orig_system_id => l_main_appraiser_id
903: ,p_name => l_role_name
904: ,p_display_name => l_role_displayname);
905:

Line 1149: wf_directory.getroledisplayname (l_current_forward_to_username)

1145: l_current_forward_to_username := original_forward_to_user;
1146: wf_engine.setitemattrtext (p_itemtype,
1147: p_itemkey,
1148: 'FORWARD_TO_DISPLAY_NAME',
1149: wf_directory.getroledisplayname (l_current_forward_to_username)
1150: );
1151: END IF;
1152: END IF;
1153: