DBA Data[Home] [Help]

APPS.FND_USER_RESP_GROUPS_API dependencies on WF_LOCAL_SYNCH

Line 534: wf_local_synch.PropagateUserRole

530: l_user_orig_system,
531: l_user_orig_system_id);
532: end if;
533:
534: wf_local_synch.PropagateUserRole
535: (p_user_name=>username,
536: p_role_name=>rolename,
537: p_user_orig_system=>l_user_orig_system,
538: p_user_orig_system_id=>l_user_orig_system_id,

Line 559: wf_local_synch.PropagateUserRole

555: --
556: -- Need to propagate the old roles for backwards compatibility.
557: --
558:
559: wf_local_synch.PropagateUserRole
560: (p_user_name=>username,
561: p_role_name=>old_rolename,
562: p_user_orig_system=>l_user_orig_system,
563: p_user_orig_system_id=>l_user_orig_system_id,

Line 731: -- the p_updatewho parameter to the wf_local_synch.PropagateUserRole call.

727: /* will be used */
728: -- Bug5121512 - Replaced SQL to eliminate the case where it is returning
729: -- a 1422.
730: -- Bug5467610 Removing the following SQL as it is no longer needed and adding
731: -- the p_updatewho parameter to the wf_local_synch.PropagateUserRole call.
732:
733: -- select created_by, creation_date, last_updated_by,
734: -- last_update_date, last_update_login
735: -- into l_created_by, l_creation_date, l_last_updated_by,

Line 760: wf_local_synch.PropagateUserRole

756:
757: -- Bug4747169 - Removed passing in the parameters p_created_by and
758: -- p_creation_date as this is the update processing.
759:
760: wf_local_synch.PropagateUserRole
761: (p_user_name=>username,
762: p_role_name=>rolename,
763: p_user_orig_system=>l_user_orig_system,
764: p_user_orig_system_id=>l_user_orig_system_id,

Line 786: wf_local_synch.PropagateUserRole

782: --
783: -- Need to propagate the old role name
784: --
785:
786: wf_local_synch.PropagateUserRole
787: (p_user_name=>username,
788: p_role_name=>old_rolename,
789: p_user_orig_system=>l_user_orig_system,
790: p_user_orig_system_id=>l_user_orig_system_id,

Line 933: wf_local_synch.PropagateUserRole

929: wf_directory.GetRoleOrigSysInfo(x_user_name,
930: l_user_orig_system,
931: l_user_orig_system_id);
932:
933: wf_local_synch.PropagateUserRole
934: (p_user_name=>x_user_name,
935: p_role_name=>rolename,
936: p_user_orig_system=>l_user_orig_system,
937: p_user_orig_system_id=>l_user_orig_system_id,

Line 959: wf_local_synch.PropagateUserRole

955: --
956: -- Need to propagate the old role name
957: --
958:
959: wf_local_synch.PropagateUserRole
960: (p_user_name=>x_user_name,
961: p_role_name=>old_rolename,
962: p_user_orig_system=>l_user_orig_system,
963: p_user_orig_system_id=>l_user_orig_system_id,

Line 1242: wf_local_synch.propagate_role(p_orig_system=>'FND_RESP',

1238: wf_event.AddParameterToList('CREATION_DATE',to_char(my_creationdate,WF_CORE.canonical_date_mask),wf_parameters);
1239: wf_event.AddParameterToList('LAST_UPDATE_LOGIN',
1240: my_lastupdatelogin,wf_parameters);
1241:
1242: wf_local_synch.propagate_role(p_orig_system=>'FND_RESP',
1243: p_orig_system_id=>respid,
1244: p_attributes=> wf_parameters,
1245: p_start_date=>startdate,
1246: p_expiration_date=>enddate);

Line 1291: wf_local_synch.propagate_role(p_orig_system=>'FND_RESP'||appid,

1287: wf_event.AddParameterToList('CREATION_DATE',to_char(my_creationdate,WF_CORE.canonical_date_mask),wf_parameters);
1288: wf_event.AddParameterToList('LAST_UPDATE_LOGIN',
1289: my_lastupdatelogin, wf_parameters);
1290:
1291: wf_local_synch.propagate_role(p_orig_system=>'FND_RESP'||appid,
1292: p_orig_system_id=>respid,
1293: p_attributes=> wf_parameters,
1294: p_start_date=>startdate,
1295: p_expiration_date=>enddate);

Line 1587: wf_local_synch.PropagateUserRole

1583: -- Sync the User/Role (but not if there is no wf_user)
1584: if( (l_user_orig_system is not NULL)
1585: or (l_user_orig_system_id is not NULL)) then
1586: begin
1587: wf_local_synch.PropagateUserRole
1588: (p_user_name=>rowrec.user_name,
1589: p_role_name=>rolename,
1590: p_user_orig_system=>l_user_orig_system,
1591: p_user_orig_system_id=>l_user_orig_system_id,

Line 1610: 'Successfully called wf_local_synch.PropagateUserRole');

1606:
1607: if (fnd_log.LEVEL_STATEMENT >= fnd_log.g_current_runtime_level) then
1608: fnd_log.string(FND_LOG.LEVEL_STATEMENT,
1609: c_log_head || l_api_name || '.called_prop',
1610: 'Successfully called wf_local_synch.PropagateUserRole');
1611: end if;
1612: exception when others then
1613: if (fnd_log.LEVEL_EXCEPTION >= fnd_log.g_current_runtime_level) then
1614: fnd_log.string(FND_LOG.LEVEL_EXCEPTION,