DBA Data[Home] [Help]

APPS.PER_PQH_SHR dependencies on WF_LOCAL_SYNCH

Line 606: WF_LOCAL_SYNCH.propagate_user_role(p_user_orig_system => 'PER',

602: --
603: if l_old_pos_id is not null then
604:
605: if p_datetrack_mode = 'CORRECTION' then
606: WF_LOCAL_SYNCH.propagate_user_role(p_user_orig_system => 'PER',
607: p_user_orig_system_id => p_rec.person_id,
608: p_role_orig_system => 'POS',
609: p_role_orig_system_id => l_old_pos_id,
610: p_start_date => hr_general.end_of_time,

Line 616: WF_LOCAL_SYNCH.propagate_user_role(p_user_orig_system => 'PER',

612: else
613: open get_eff_st_date(l_old_pos_id);
614: fetch get_eff_st_date into l_effective_start_date;
615: close get_eff_st_date;
616: WF_LOCAL_SYNCH.propagate_user_role(p_user_orig_system => 'PER',
617: p_user_orig_system_id => p_rec.person_id,
618: p_role_orig_system => 'POS',
619: p_role_orig_system_id => l_old_pos_id,
620: p_start_date => l_effective_start_date,

Line 626: WF_LOCAL_SYNCH.propagate_user_role(p_user_orig_system => 'PER',

622:
623: end if;
624: end if;
625: if l_position_id is not null then
626: WF_LOCAL_SYNCH.propagate_user_role(p_user_orig_system => 'PER',
627: p_user_orig_system_id => p_rec.person_id,
628: p_role_orig_system => 'POS',
629: p_role_orig_system_id => l_position_id,
630: p_start_date => l_assg_start_date,

Line 732: wf_local_synch.propagate_user_role(p_user_orig_system => r_person.USER_ORIG_SYSTEM,

728: wf_event.AddParameterToList( 'Raiseerrors', 'TRUE', l_plist);
729: -- synch the wf_local_user table --
730: hr_utility.set_location('Before deleting WF_SYNC package role_user: '
731: || r_person.USER_NAME, 15);
732: wf_local_synch.propagate_user_role(p_user_orig_system => r_person.USER_ORIG_SYSTEM,
733: p_user_orig_system_id => r_person.USER_ORIG_SYSTEM_ID,
734: p_role_orig_system => r_person.ROLE_ORIG_SYSTEM,
735: p_role_orig_system_id => r_person.ROLE_ORIG_SYSTEM_ID);
736: hr_utility.set_location('After deleting WF_SYNC role_user: '||l_proc, 20);

Line 774: WF_LOCAL_SYNCH.propagate_role(p_orig_system => r_person.ROLE_ORIG_SYSTEM,

770: hr_utility.set_location('In Insert WF_SYNC role: '
771: || r_person.ROLE_NAME, 25);
772:
773:
774: WF_LOCAL_SYNCH.propagate_role(p_orig_system => r_person.ROLE_ORIG_SYSTEM,
775: p_orig_system_id => r_person.ROLE_ORIG_SYSTEM_ID,
776: p_attributes => l_plist);
777: end if;
778:

Line 790: WF_LOCAL_SYNCH.propagate_user(p_orig_system => r_person.USER_ORIG_SYSTEM,

786: p_name => 'USER_NAME',
787: p_value => r_person.USER_NAME,
788: p_parameterlist => l_plist);
789:
790: WF_LOCAL_SYNCH.propagate_user(p_orig_system => r_person.USER_ORIG_SYSTEM,
791: p_orig_system_id => r_person.USER_ORIG_SYSTEM_ID,
792: p_attributes => l_plist);
793: end if;
794:

Line 798: WF_LOCAL_SYNCH.propagate_user_role(

794:
795: -- synch the wf_local_user table --
796: hr_utility.set_location('Before calling WF_SYNC propagate user_role: '
797: || r_person.USER_ORIG_SYSTEM_ID, 30);
798: WF_LOCAL_SYNCH.propagate_user_role(
799: p_user_orig_system => r_person.USER_ORIG_SYSTEM,
800: p_user_orig_system_id => r_person.USER_ORIG_SYSTEM_ID,
801: p_role_orig_system => r_person.ROLE_ORIG_SYSTEM,
802: p_role_orig_system_id => r_person.ROLE_ORIG_SYSTEM_ID);