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 756: wf_local_synch.PropagateUserRole

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

Line 782: wf_local_synch.PropagateUserRole

778: --
779: -- Need to propagate the old role name
780: --
781:
782: wf_local_synch.PropagateUserRole
783: (p_user_name=>username,
784: p_role_name=>old_rolename,
785: p_user_orig_system=>l_user_orig_system,
786: p_user_orig_system_id=>l_user_orig_system_id,

Line 929: wf_local_synch.PropagateUserRole

925: wf_directory.GetRoleOrigSysInfo(x_user_name,
926: l_user_orig_system,
927: l_user_orig_system_id);
928:
929: wf_local_synch.PropagateUserRole
930: (p_user_name=>x_user_name,
931: p_role_name=>rolename,
932: p_user_orig_system=>l_user_orig_system,
933: p_user_orig_system_id=>l_user_orig_system_id,

Line 955: wf_local_synch.PropagateUserRole

951: --
952: -- Need to propagate the old role name
953: --
954:
955: wf_local_synch.PropagateUserRole
956: (p_user_name=>x_user_name,
957: p_role_name=>old_rolename,
958: p_user_orig_system=>l_user_orig_system,
959: p_user_orig_system_id=>l_user_orig_system_id,

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

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

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

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

Line 1583: wf_local_synch.PropagateUserRole

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

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

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