NDS Gateway Active Sync Listing All users on each poll

When Sun Identity Manager 6.0 sp1 runs an active sync poll event with the NDS Resource Adapter against the Gateway the following behaviour is exhibited within both the customer environment and the Lab environment.
The Gateway will list all the users using the Novell Client, even users who have not had their modification timestamp updated since the last poll.
The Gateway will then return the relevant users to the Sun Identity Manager application. Using the Search Parameter modification timestamp as can be seen below.
�<SearchParameters>
<Map>
<MapEntry key='modificationTimestampFilter'>
<Long>1166504812</Long>
</MapEntry>
</Map>
</SearchParameters>
This is causing the Synchronisation process at the customer to take much longer than necessary. Every time Sun Identity Manager polls the resource all the users are listed within the gateway service.
Can you please confirm if this is the expected behaviour? Or should the gateway only be listing users that have been updated since the last poll event.

Their is an issue with the NDS adapter. Contact Sun support, they have an appliance that can be installed to rectify.
Good luck.

Similar Messages

  • How can I list all users who have access to a particular TABLE or VIEW

    Hi,
    Can someone tell me how I can list all users who have access to a particular TABLE or VIEW.
    Abhishek

    Hi,
    Take a look on this link: http://www.petefinnigan.com/tools.htm
    Cheers

  • Impact on roaming profile accounts if we Change User logon Name to Employee Number format in Active Directory for all User accounts

    I want to understand if we change User logon Name to Employee Number format in Active Directory for all User accounts, then what would be the impact on existing profile. Whether we need to change it manualy or it will connect to same profiles in terminal
    session.
    As i observed it create new profile after logon name changed to employee number where existing users profile settings get fails to load and prompt for new settings (such as outlook reconfiguration, share drive mapping etc.).
    Kindly let me know the proper process to overcome with this, how to connect same existing roaming profile with employee number format change.

    Hi,
    What if we change the user name of user account, will it have impact on roaming profiles.
    Yes, it will affect roaming profiles. Please rename the roaming profile folder as the new user account name, in addition, change the profile path in ADUC.
    Here is an related article below for you:
    How to Rename a Windows 7 User Account and Related Profile Folder
    http://social.technet.microsoft.com/wiki/contents/articles/19834.how-to-rename-a-windows-7-user-account-and-related-profile-folder.aspx
    Best Regards,
    Amy

  • PowerShell - List all users that have access to a particular SPLIstItem

    Hi there,
    In PowerShell - how to list all users that have access to a particular SPLIstItem?
    Thanks so much in advance.

    Hi frob,
    According to your description, my understanding is that you want to list all users who have access to a particular SharePoint list item via PowerShell.
    You can use the following PowerShell command:
    $web = Get-SPWeb http://sp/sites/First
    $list=$web.Lists["listV2"]
    $item=$list.Items | where {$_['ID'] -eq 1}
    $item | Select -ExpandProperty RoleAssignments |Select {$_.Member.DisplayName}, {$_.Member.LoginName}, RoleDefinitionBindings
    In the above command, you need to change the web URL to your site's URL, change “listV2” to the name of your list, and change the ‘1’ to the ID of the list item.
    The result looks like:
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • How can I list all users and their DEFAULT tablespace?

    How can I list all users and their DEFAULT tablespace?
    Peter

    Peter, the following short article that lists the most heavily used Oracle rdbms dictionay views might be of interest based on your question:
    How do I find information about a database object: table, index, constraint, view, etc… in Oracle ? http://www.jlcomp.demon.co.uk/faq/object_info.html
    HTH -- Mark D Powell --

  • List all users and their OUs they belong to

    Hi,
    I would like to list all users with the OU they belong to and furthermore add an specific attribute that was added...
    I can get both information separately:
    get-aduser -SearchBase 'OU=DOMAIN,DC=mygroup,DC=re,DC=lan' | FT name
    and
    Get-ADOrganizationalUnit -SearchBase 'OU=DOMAIN,DC=mygroup,DC=re,DC=lan' -properties name,budgetanalytics | FT name,budgetanalytics
    but I'd like to get the list containing user1, its OU, its budgetanalytics
    Thanking you in advance,
    Cédric

    Thanks for your reply!
    I tried the following:
    $Users = get-aduser -SearchBase 'OU=Mes Utilisateurs,DC=itced,DC=lan' -filter '*'
    $OU = $User.distinguishedname -split ',',2 | select -last 1
    $output = @()
    Foreach($User in $Users){
    $budgetanalytics = Get-ADOrganizationalUnit -SearchBase $OU -Properties objectGUID
    $Object = New-Object PSObject                                       
    $Object | add-member Noteproperty user $user.name         
    $Object | add-member Noteproperty OU $OU                       
    $Object | add-member Noteproperty objectGUID $objectGUID       
    $output += $Object
    $output
    but I get the following
    user                                             
    OU                                              
    objectGUID                                      
    User1                                            
    OU=Mon OU,OU=Mes Utilisateurs,DC=itced,DC=lan    {Microsoft.PowerShell.Commands.Internal.Forma...
    User2                                            
    OU=Mon OU,OU=Mes Utilisateurs,DC=itced,DC=lan    {Microsoft.PowerShell.Commands.Internal.Forma...
    Why do I get "Microsoft.PowerShell.Commands.Internal.Forma..." instead of the actual objectGUID of the Organizational Unit
    Thanking you in advance

  • List all users whos password has expired

    Hi,
    Is it possible to list all users whos password has expired in the R\3 system?
    Thanks in advance,
    Aviad

    You can use program RSUSR200.
    On selection screen in block 'Selection by status of the password' select only 'Users with inactive passwords' checkbox.

  • List all users with full control on a SharePoint 2013 Sub site from SharePoint Object Model in C#

    If I have a sub site URL and a user with Site Admin, can I list all users in that sub site that have Full Control at that level?
    Any C# code sample?

    Still you can do that, just pass the subsites to your code and from their you can find the users dynamically.
    You could also use SPWeb.Users property to get users assigned to a subsite
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.users(v=office.15).aspx
    alternatively you can also use SPWeb.SiteUsers to get all users
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.siteusers(v=office.15).aspx
    other APIs of help-
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.associatedmembergroup(v=office.15).aspx
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.associatedownergroup(v=office.15).aspx
    http://sharepoint.stackexchange.com/questions/101671/object-model-list-all-users-with-full-control-on-a-sub-site-in-sharepoint-2013
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How to list all user's "followed" count?

    Dear all,
    I need to genearate a report to list all user's Followed items count.
    I found follow REST API:
    http://msdn.microsoft.com/en-us/library/dn194080.aspx#bk_FollowedCount
    By using "My/followedcount", I can get current user's count of items he or she followed. It is exactly what I need. But I need to list all users' "following count". How can I do it?
    Thank you for any input.
    Mark

    Hi Mark Lui,
    Please check the code sample in below article, whether it is working in your scenario, it is using the client object model to get the specified user’s followed content, to get all users’ following content, please first iterate users information, then use
    this to get followed count:
    How to get Count and List of documents and sites followed by a User in Office 365 SharePoint 2013 Site using CSOM:
    http://sundarnarasiman.net/?p=186
    Thanks,
    Qiao Wei
    TechNet Community Support

  • Responsiblities  and the list of users under each responsiblity

    HI,
    Am on 11.5.10.2 CU2
    RDBMS 9.2.0.6
    I need the list of Responsiblities and the list of users under each responsiblity. Can anybody please help me ..
    Thanks

    Hi user;
    Please check below thread
    to find any users assigned to a responsibilty *<< Posted By Hussein Sawwan*
    to find any users assigned to a responsibilty
    Regard
    Helios

  • We have 2 ipods and 1 ipad with different apps all synced to one computer.  How do I prevent these apps from automatically being synced to all three devices each time I do a backup/sync?

    We have 2 ipods and 1 ipad with different apps all synced to one computer.  How do I prevent these apps from automatically being synced to all three devices each time I do a backup/sync?

    Uncheck the option to automatically sync new apps to the device.
    Other than that, syncing is by device.
    Connect one device, tell iTunes what to sync, then sync.
    Connect second device, repeat.
    Connect third device, repeat.

  • Listing all users in a group

    Hi guys,
    I need to write some code that returns a list of Users that belong to a particular group, using pt 5. This has been asked in lots of different posts but no answer has been given. There must be a way to do this somehow.
    Should I be doing an IPortalSearchRequest and then filtering by group? I can't work out how to do this, or even if it is possible. Or should I be using the IUserGroupManager interface? It does not seem to be documented anywhere.
    I do not want to resort to reading the PlumTree DB but it looks like I may have to. Obviously this defeats the whole point of the API - but considering this changed from 4.5 to 5 maybe this is not a problem!

    Also check these other two posts. If the gateway blows up the links I'm sticking in below, just use the general portal search to look for "QueryUsers"
    http://portal.plumtree.com/portal/server.pt?in_hi_req_objtype=18&in_hi_req_objtype=17&in_hi_req_objtype=1&in_hi_req_objtype=512&in_hi_req_objtype=43&in_hi_userid=281772&in_hi_req_bbs=1&in_hi_req_thesaurus=1&space=SearchResult&in_hi_req_spell=1&parentid=1&cached=false&control=searchstart&in_hi_req_gadsrchtype=bannersearch&in_hi_req_initialsearchstring=QueryUsers&in_hi_req_page=50&in_tx_query=QueryUsers&in_hi_req_lang=en&parentname=SearchResult#
    http://portal.plumtree.com/portal/server.pt?in_hi_req_objtype=18&in_hi_req_objtype=17&in_hi_req_objtype=1&in_hi_req_objtype=512&in_hi_req_objtype=43&in_hi_userid=281772&in_hi_req_bbs=1&in_hi_req_thesaurus=1&space=SearchResult&in_hi_req_spell=1&parentid=1&cached=false&control=searchstart&in_hi_req_gadsrchtype=bannersearch&in_hi_req_initialsearchstring=QueryUsers&in_hi_req_page=50&in_tx_query=QueryUsers&in_hi_req_lang=en&parentname=SearchResult#

  • Where is Active Sync finding all my contact information

    No device
    I recently acquired a Palm Treo Pro, to replace my Treo 650. I have quite a few contacts stored on my 650 Treo, but they don't show up in my Outlook Contacts, and I have never been able to see any contacts in my Palm Desktop Address book. Anyhow, when I ran Active Sync, it pulled in all kinds of old contact information, and in many cases replicated many of the entries. What I would like to know is if anyone knows where it is picking up this information, and is there a way to edit it on my desktop, and then do another Active Sync, making the Desktop replace the handheld data. Any ideas or suggestions will be greatly appreciated.

    Amf
    You should make a back-up of your contacts on your computer anyway, regardless if you proceed.
    On my Macbook I go into Contacts> File> Export> Export Archive
    Cheers

  • BI Report - List all users and their assigned roles

    Hello,
    i need a report, which lists me all users and their roles.
    Which table stores this membership information about the users?
    USR or UGP does not have any values

    Hi Reynaldo,
    You can go to SE16 -> table name "AGR_USERS" and see the records for all users. Arrange them in ascending order by name and you will get the report what you have mention above.
    Download it and put it in EXCEL.
    Best Wishes.
    Kumar

  • List all users and other information into application

    Hi,
    In the LDAP that we use, it contains - user id and xyz_code (this code is particular to application). Note that for each user_id there exists one xyz_code.
    I can get the user id from IUser and xyz_code from an attribute app_xyz_code.
    String xyzCode = sapume.getValue("app_xyz_code",iuser, true);
    I have a requirement where I need to get user ids for a set of xyz_codes.
    1) Suppose I have 100 xyz_codes I need to get 100 users from LDAP. So 100 times I need to hit LDAP. How do i make a search in LDAP using xyz_code. Is it preferrable to make a search like this?
    2) Another thing I want to know is if it is possible to get all the users and their corresponding xyz_codes from LDAP and store them in a List/Vector/Enumeration. So that I can search in the list for user id corresponding to xyz_code.
    Any code snippets is appreciated.
    Thank you
    Karthika

    Thanks for your reply!
    I tried the following:
    $Users = get-aduser -SearchBase 'OU=Mes Utilisateurs,DC=itced,DC=lan' -filter '*'
    $OU = $User.distinguishedname -split ',',2 | select -last 1
    $output = @()
    Foreach($User in $Users){
    $budgetanalytics = Get-ADOrganizationalUnit -SearchBase $OU -Properties objectGUID
    $Object = New-Object PSObject                                       
    $Object | add-member Noteproperty user $user.name         
    $Object | add-member Noteproperty OU $OU                       
    $Object | add-member Noteproperty objectGUID $objectGUID       
    $output += $Object
    $output
    but I get the following
    user                                             
    OU                                              
    objectGUID                                      
    User1                                            
    OU=Mon OU,OU=Mes Utilisateurs,DC=itced,DC=lan    {Microsoft.PowerShell.Commands.Internal.Forma...
    User2                                            
    OU=Mon OU,OU=Mes Utilisateurs,DC=itced,DC=lan    {Microsoft.PowerShell.Commands.Internal.Forma...
    Why do I get "Microsoft.PowerShell.Commands.Internal.Forma..." instead of the actual objectGUID of the Organizational Unit
    Thanking you in advance

Maybe you are looking for

  • How to use i tunes i depth

    i have installed i tunes on my pc and sync with my 30gb i pod after some time i have formatted my pc and i installed i tunes and when i connected i pod i tunes is showing that i have to erase my old library is it is must that everytime when i format

  • How to change the name / IP address and domain name for BOE Server

    Hello, We want to change the name / IP address and domain name for BOE Server, please could you indicate the steps or procedure to follow? I need your help thank you

  • JasperException: Unable to compile class for JSP HELP

    I added couple of extra class files into the jar file.. and now its not able to find it! I am running JBoss latest version and using eclipse... any help wud be nice org.apache.jasper.JasperException: Unable to compile class for JSP Generated servlet

  • PCG Seed Data Invalid characters displayed in FRC

    Hi, I'm not certain this is the correct forum or not. Customer has PCG 7.3.2 on 11i, using FRC. Many menus and concurrent program names & messages (all seed data) that use accents, are displaying garbled characters. eg: GRC Controls : Règles associÃ

  • PC GAMES ON INTEL MACS???  Is it possible?

    Is it possible to play PC games on an intel mac yet? In theory it should work since you can run it as a PC. I want to play that Battlefield 2142 game very badly. Please tell if you know it's possible. Thanks. Imac   Mac OS X (10.4.8)