DBA Data[Home] [Help]

APPS.PER_HRWF_SYNCH dependencies on WF_LOCAL_SYNCH

Line 352: wf_local_synch.propagate_role(

348: wf_event.addparametertolist('USER_NAME',l_user_name,l_parameters);
349: -- wf_event.addparametertolist('DisplayName',p_rec.full_name,l_parameters); -- 3297591
350: wf_event.addparametertolist('DisplayName',l_display_name,l_parameters);
351: --
352: wf_local_synch.propagate_role(
353: p_orig_system => 'PER',
354: p_orig_system_id => p_rec.person_id,
355: p_attributes => l_parameters,
356: p_start_date => p_rec.effective_start_date,

Line 371: wf_local_synch.propagate_role(

367: l_per_role := 'PER_ROLE:'||p_rec.person_id;
368: end if;
369: close per_role_role_exists;
370:
371: wf_local_synch.propagate_role(
372: p_orig_system => 'PER_ROLE',
373: p_orig_system_id => p_rec.person_id,
374: p_attributes => l_parameters,
375: p_start_date => p_rec.effective_start_date,

Line 515: wf_local_synch.propagate_role(

511: hr_utility.set_location('end add params',64);
512: --
513: -- NEW CODE END
514: --
515: wf_local_synch.propagate_role(
516: p_orig_system => 'PER',
517: p_orig_system_id => p_rec.person_id,
518: p_attributes => l_parameters,
519: p_start_date => p_rec.effective_start_date,

Line 522: -- Bug 4635241 Modified the call to wf_local_synch.propagate_role

518: p_attributes => l_parameters,
519: p_start_date => p_rec.effective_start_date,
520: -- p_expiration_date => p_rec.effective_end_date);
521: p_expiration_date => NULL);
522: -- Bug 4635241 Modified the call to wf_local_synch.propagate_role
523: -- by passing NULL as value for p_expiration_date
524: --
525: hr_utility.set_location('After calling propagate_role ',65);
526: end if; --l_date_chk = CURRENT

Line 647: WF_LOCAL_SYNCH.propagate_user_role(

643: --
644: if nvl(p_action,'NO_DELETE') = 'DELETE' then
645: hr_utility.set_location('Delete Assignment ',25);
646: --
647: WF_LOCAL_SYNCH.propagate_user_role(
648: p_user_orig_system => 'PER',
649: p_user_orig_system_id => p_rec.person_id,
650: p_role_orig_system => 'POS',
651: p_role_orig_system_id => 'POS'||':'||p_rec.position_id,

Line 684: -- Call wf_local_synch.propogate_user_role()

680: else
681: l_end_date := p_rec.effective_end_date;
682: end if;
683: --
684: -- Call wf_local_synch.propogate_user_role()
685: hr_utility.set_location('Before Calling propagate_user_role ',35);
686: WF_LOCAL_SYNCH.propagate_user_role(
687: p_user_orig_system => 'PER',
688: p_user_orig_system_id => p_rec.person_id,

Line 686: WF_LOCAL_SYNCH.propagate_user_role(

682: end if;
683: --
684: -- Call wf_local_synch.propogate_user_role()
685: hr_utility.set_location('Before Calling propagate_user_role ',35);
686: WF_LOCAL_SYNCH.propagate_user_role(
687: p_user_orig_system => 'PER',
688: p_user_orig_system_id => p_rec.person_id,
689: p_role_orig_system => 'POS',
690: p_role_orig_system_id => p_rec.position_id,

Line 820: wf_local_synch.propagate_role(

816: --l_user_name := 'PER:'||p_rec.person_id;
817: wf_event.addparametertolist('USER_NAME',l_user_name,l_parameters);
818: --
819: hr_utility.set_location('Calling Propagate_role '||l_proc,30);
820: wf_local_synch.propagate_role(
821: p_orig_system => 'PER',
822: p_orig_system_id => p_rec.person_id,
823: p_attributes => l_parameters,
824: p_start_date => p_rec.date_start,

Line 871: wf_local_synch.propagate_role( p_orig_system => 'PER',

867: wf_event.addparametertolist('ORCLWFPARENTORIGSYSID',l_parentOrigSysID,l_parameters);
868:
869:
870: hr_utility.set_location('Calling Propagate_role for PER_ROLE role'||l_proc,50);
871: wf_local_synch.propagate_role( p_orig_system => 'PER',
872: p_orig_system_id => p_rec.person_id,
873: p_attributes => l_parameters,
874: p_start_date => p_rec.actual_termination_date+1,
875: p_expiration_date => l_perrole_date);

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

1065: l_filter_row_count := srch_criteria_table2.count;
1066: --dbms_output.put_line('Starting of rows');
1067: for k in 0 .. l_filter_row_count-1
1068: loop
1069: WF_LOCAL_SYNCH.propagate_user_role(p_user_orig_system => 'PER',
1070: p_user_orig_system_id => srch_criteria_table2(k).p_person_id ,
1071: p_role_orig_system => 'POS',
1072: p_role_orig_system_id => srch_criteria_table2(k).p_position_id,
1073: p_start_date => greatest(srch_criteria_table2(k).p_effective_start_date,p_in_start_date) ,