HumanTask not displaying users

Dear team,
I am going thru Oracle SOA11g developers guide for human task workflows.In my machine I have installed Oracle SOA11g suite.I have configured single domain with Admin server which is also a managed server(SOA and bam are there on admin server itself).
In developers guide it is metioned that if we give hostname(with out domain) in applicaion server connection configuration for fetching the users/groups from security realm in assignment phase of human task editor we may not get the realms or users.
for that we need to mention hostame along with domain name in application server connection configuration to get all the users/groups from identify store in assignment phase in human task editor
Initially I configured application server connection with hostname(myhost) with out domain name. I got only 2 users from jazn.com in assignment phase for that application server connection (weblogic ,oraclesystemuser)
later I added domain name to the hostname in application server connection configuration(myhost.irsd.com).Later I tried to retrieve the users from realm (jazn.com)..then also I am getting only 2 users(weblogic,oraclesystemuser)
But developers guide stated that if we specify domain name along with hostname we should be able to access all users from jazn.com realm.
Please help

The list of users is a plist file and should be at at /Library/Preferences/com.apple.loginwindow.plist on the clients. See this thread for more information:
http://discussions.apple.com/thread.jspa?messageID=2368769&#2368769
If you've got a good plist from a client that sees the right users, you should be able to copy it over. If not, try backing up the file from one client and then deleting it and restarting.

Similar Messages

  • Intel MacBooks not displaying users list from WGM

    Hello folks,
    I have a situation where all my Intel iMacs connect to my OD server fine, pulls down the WGM user lists and logs in fine. However I also have about 8 Intel MacBooks that are meant to connect wirelessly to this same server. For some reason I can not figure the MacBooks, connect fine, I can even bind them but they do not display the users list. I thought maybe the wireless connection may have something to do with it, so I plugged them directly into the data cable and still no luck. I ensured that on the local machine the user account is set to display as a list. I have created the computer list in WGM for the MacBooks, all to no avail. I have been scouring the forums but no breakthrough yet. Any ideas from anyone will be greatly appreciated.
    G5 Mac OS X (10.4.8)

    The list of users is a plist file and should be at at /Library/Preferences/com.apple.loginwindow.plist on the clients. See this thread for more information:
    http://discussions.apple.com/thread.jspa?messageID=2368769&#2368769
    If you've got a good plist from a client that sees the right users, you should be able to copy it over. If not, try backing up the file from one client and then deleting it and restarting.

  • Security report SEC_LIST_MBR is not displaying users list

    Hi,
    When we run security report SEC_LIST_MBR. It is not displaying list of users instead it is just displaying user id who ran the report all other columns Full Name, Teams, Task Profile and Member access are blank.
    Please suggest what is causing it not to display list of users.
    In database we loaded the following page  http://ReportServer/reports and ran report SEC_LIST_MBR. It also gave same result - one row with user id data only.
    Regards,
    Rajesh

    We found the root cause it was because table "task" does not have records in APPSERVER Database.
    Once we updated task table. Security report SEC_LIST_MBR is displaying results correctly.
    Regards,
    Rajesh

  • File upload sendmail not displaying user input

    Hello ive set up the upload example from     http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Images_01.html
    i added a textarea field and a sendmail function.  all is working well but the email does not contain any of the data from the fields on the form that the user submits. its just white space where that data should be.....Could someone please check this code and see what i am doing wrong ...thanks, kevin
    ---------------------------Here is the form page:---------------------------------
    <cfparam name="FORM.image" default="" />
    <cfparam name="FORM.comments" default="" />
    <!--- Create an empty error string --->
    <cfset strError = "">
    <!--- This code creates a form with one field where the user enters the image file to upload. --->
    <cfform action="makeThumbnail.cfm" method="post" enctype="multipart/form-data">
    <p>Please upload an image:
      <cfinput type="file" name="image" required="yes" id="image" value="#Trim(FORM.image)#" message="Please enter an image!">
    </p>
    <p>
      <cftextarea name="Comments" cols="20" rows="4" required="yes" id="Comments" message="Please enter your Comments!" enabled="no" value="#Trim(FORM.comments)#" maxlenght="160" visable="no" />  </p>
    <p>
      <cfinput type="submit" value="Send Image" name="Submit">
    </p>
    <cfif IsDefined( "FORM.image" )>
    <cfif IsDefined( "FORM.comments" )>
    <cfmail
    from="[email protected]"
    to="[email protected]"
    subject="Visitor Email."
    server="outgoing server"
    username="usernam"
    password="pass">
                    File uploaded.
       <cfoutput> image: #Trim(FORM.image)#, comments: #Trim(FORM.comments)#, #Now()#</cfoutput>
    </cfmail>
        </cfif>
      </cfif>
    </cfform>
    -----------this is the makethumbnail.cfm which i made no changes ---------------------
    <cfset thisDir = expandPath(".")>
    <!--- Determine whether the form is uploaded with the image. --->
    <cfif structKeyExists(form,"image") and len(trim(form.image))>
        <!--- Use the cffile tag to upload the image file. --->
        <cffile action="upload" fileField="image" destination="#thisDir#" result="fileUpload"
            nameconflict="overwrite">
        <!--- Determine whether the image file is saved. --->
        <cfif fileUpload.fileWasSaved>
        <!--- Determine whether the saved file is a valid image file. --->
            <cfif IsImageFile("#fileUpload.serverfile#")>
        <!--- Read the image file into a variable called myImage. --->
                <cfimage action="read" source="#fileUpload.serverfile#" name="myImage">
                <!--- Determine whether the image file exceeds the size limits. --->
                <cfif ImageGetHeight(myImage) gt 480 or ImageGetWidth(myImage) gt 360>
                    <!--- If the file is too large, delete it from the server. --->
                    <cffile action="delete"
                        file="#fileUpload.serverDirectory#/#fileUpload.serverFile#">
                    <cfoutput>
                    <p>
                    The image you uploaded was too large. It must be less than 480 pixels wide
                        and 360 pixels high. Your image was #imageGetWidth(myImage)# pixels wide
                        and #imageGetHeight(myImage)# pixels high.
                    </p>
                    </cfoutput>
                    <!--- If the image is valid and does not exceed the size limits,
                        create a thumbnail image from the source file that is 75-pixels
                        square, while maintaining the aspect ratio of the source image.
                        Use the bilinear interpolation method to improve performance.
                        --->
                <cfelse>
        <cfset ImageScaleToFit(myImage,100,100,"bilinear")>
                    <!--- Specify the new filename as the source filename with
                        "_thumbnail" appended to it. --->
                    <cfset newImageName = fileUpload.serverDirectory & "/" &
                        fileUpload.serverFilename & "_thumbnail." &
                        fileUpload.serverFileExt>
                    <!--- Save the thumbnail image to a file with the new filename. --->
                    <cfimage source="#myImage#" action="write"
                        destination="#newImageName#" overwrite="yes">
                    <cfoutput>
                    <p>
                    Thank you for uploading the image. We have created a thumbnail for
                        your picture.
                    </p>
                    <p>
                    <!--- Display the thumbnail image. --->
                    <img src="#getFileFromPath(newImageName)#">
                    </p>
                    </cfoutput>   
                </cfif>
            <!--- If it is not a valid image file, delete it from the server. --->
            <cfelse>
                <cffile action="delete"
                    file="#fileUpload.serverDirectory#/#fileUpload.serverFile#">
                <cfoutput>
                <p>
                The file you uploaded, #fileUpload.clientFile#, was not a valid image.
                </p>
                </cfoutput>
            </cfif>
        </cfif>
    </cfif>

    Hello ive set up the upload example from     http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Images_01.html
    i added a textarea field and a sendmail function.  all is working well but the email does not contain any of the data from the fields on the form that the user submits. its just white space where that data should be.....Could someone please check this code and see what i am doing wrong ...thanks, kevin
    ---------------------------Here is the form page:---------------------------------
    <cfparam name="FORM.image" default="" />
    <cfparam name="FORM.comments" default="" />
    <!--- Create an empty error string --->
    <cfset strError = "">
    <!--- This code creates a form with one field where the user enters the image file to upload. --->
    <cfform action="makeThumbnail.cfm" method="post" enctype="multipart/form-data">
    <p>Please upload an image:
      <cfinput type="file" name="image" required="yes" id="image" value="#Trim(FORM.image)#" message="Please enter an image!">
    </p>
    <p>
      <cftextarea name="Comments" cols="20" rows="4" required="yes" id="Comments" message="Please enter your Comments!" enabled="no" value="#Trim(FORM.comments)#" maxlenght="160" visable="no" />  </p>
    <p>
      <cfinput type="submit" value="Send Image" name="Submit">
    </p>
    <cfif IsDefined( "FORM.image" )>
    <cfif IsDefined( "FORM.comments" )>
    <cfmail
    from="[email protected]"
    to="[email protected]"
    subject="Visitor Email."
    server="outgoing server"
    username="usernam"
    password="pass">
                    File uploaded.
       <cfoutput> image: #Trim(FORM.image)#, comments: #Trim(FORM.comments)#, #Now()#</cfoutput>
    </cfmail>
        </cfif>
      </cfif>
    </cfform>
    -----------this is the makethumbnail.cfm which i made no changes ---------------------
    <cfset thisDir = expandPath(".")>
    <!--- Determine whether the form is uploaded with the image. --->
    <cfif structKeyExists(form,"image") and len(trim(form.image))>
        <!--- Use the cffile tag to upload the image file. --->
        <cffile action="upload" fileField="image" destination="#thisDir#" result="fileUpload"
            nameconflict="overwrite">
        <!--- Determine whether the image file is saved. --->
        <cfif fileUpload.fileWasSaved>
        <!--- Determine whether the saved file is a valid image file. --->
            <cfif IsImageFile("#fileUpload.serverfile#")>
        <!--- Read the image file into a variable called myImage. --->
                <cfimage action="read" source="#fileUpload.serverfile#" name="myImage">
                <!--- Determine whether the image file exceeds the size limits. --->
                <cfif ImageGetHeight(myImage) gt 480 or ImageGetWidth(myImage) gt 360>
                    <!--- If the file is too large, delete it from the server. --->
                    <cffile action="delete"
                        file="#fileUpload.serverDirectory#/#fileUpload.serverFile#">
                    <cfoutput>
                    <p>
                    The image you uploaded was too large. It must be less than 480 pixels wide
                        and 360 pixels high. Your image was #imageGetWidth(myImage)# pixels wide
                        and #imageGetHeight(myImage)# pixels high.
                    </p>
                    </cfoutput>
                    <!--- If the image is valid and does not exceed the size limits,
                        create a thumbnail image from the source file that is 75-pixels
                        square, while maintaining the aspect ratio of the source image.
                        Use the bilinear interpolation method to improve performance.
                        --->
                <cfelse>
        <cfset ImageScaleToFit(myImage,100,100,"bilinear")>
                    <!--- Specify the new filename as the source filename with
                        "_thumbnail" appended to it. --->
                    <cfset newImageName = fileUpload.serverDirectory & "/" &
                        fileUpload.serverFilename & "_thumbnail." &
                        fileUpload.serverFileExt>
                    <!--- Save the thumbnail image to a file with the new filename. --->
                    <cfimage source="#myImage#" action="write"
                        destination="#newImageName#" overwrite="yes">
                    <cfoutput>
                    <p>
                    Thank you for uploading the image. We have created a thumbnail for
                        your picture.
                    </p>
                    <p>
                    <!--- Display the thumbnail image. --->
                    <img src="#getFileFromPath(newImageName)#">
                    </p>
                    </cfoutput>   
                </cfif>
            <!--- If it is not a valid image file, delete it from the server. --->
            <cfelse>
                <cffile action="delete"
                    file="#fileUpload.serverDirectory#/#fileUpload.serverFile#">
                <cfoutput>
                <p>
                The file you uploaded, #fileUpload.clientFile#, was not a valid image.
                </p>
                </cfoutput>
            </cfif>
        </cfif>
    </cfif>

  • Distribution List not displaying user in Outlook

    Hi All,
    Running Exchange 2010 with SP3.
    I have a user that when added to a distribution list only appear in the distribution list using ADUC or Exchange Management Console but in outlook 2013 if I expand the distribution list are not present
    but will receive the email as long as the distribution group is not expanded. 
    Does that make sense?  Any ideas?

    Good to know. Please mark your response as an answer and or any others
    that helped you solve your problem.
    Jason Apt, Microsoft Certified Master | Exchange 2010
    My Blog

  • SCCM 2012 R2 Computer reports not displaying users and domain information for some systems.

    I have a recently deployed SCCM 2012 R2 server which has been running well so far.
    I have, however, noticed in the reporting (example: "Computers in a specific site" report) that some computers are not showing information like "User domain" and "User Name" (for about 500 of the 1500 computers).
    If I go to a collection, select such a computer and right click to properties and go to the general tab I can see that the below fields are blank:
    Last Logon User Domain
    Last Logon User Name
    All other fields are populated similarly for both affected and non-affected agents. Agent versions are the same as well. Hardware/Software inventory appears to be completing on all systems.
    Has anyone else seen this type of behavior and found a solution? Appreciate any advice. Thanks.
    Edit: Most agents have been installed for close to 2 months.
    Hardware inventory: Daily
    Software inventory: Weekly

    Hi,
    Those two values are populated by the Heartbeat agent and if no user is logged on when the heartbeat is sent, then the value is blank so I would say this would be as expected.
    If you want to know which user has been using a computer you should have a look at the assett Intelliengence reports with console usage, then you can see who has been using a computer most frequently.
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • DA not displaying user

    Hello,
    I have added an user using ldapmodify and uploaded ldif, I am able to login and send the mail, however DA not showing that user in UI.
    Am I missing any particular object class or the attribute which makes it visible in DA?
    regards,
    sumant.

    mr.chhunchha wrote:
    I have added an user using ldapmodify and uploaded ldif, I am able to login and send the mail, however DA not showing that user in UI.
    Am I missing any particular object class or the attribute which makes it visible in DA?That is definitely possible. Compare a DA created user with your manually created user and see what is different. Add attributes/objectclasses one-by-one until the user shows up in DA.
    Regards,
    Shane.

  • OID can not display some users - java.lang.ArrayIndexOutOfBoundsException:0

    We have set up AD to OID synchronization for users and groups using Import connector, and it worked fine. The users in OID can log into applications protected by OAM. But recently I found that some users that could be displayed in OID before can not be displayed now. If I click on the DN in Oracle Directory Manager, a error window pops up. It is a long error message, and the first a few lines are as follows :
    0
    java.lang.ArrayIndexOutOfBoundsException:0
    at oracle.ldap.admin.AttrOptions.<init>(entry.jave:3151)
    at Oracle.ldap.admin.Entry.getProp(entry.java:457)
    I don't see any error message in the integration profile or log files. I am testing things on an account that is having this trouble, and the strange thing is that it can not log into application protected by OAM any more, but it can log into OAM console.
    We use OID 10.1.2.3 on Windows, and OAM 10.1.4.0.1.
    I searched in Metalink but didn't find anything helpful. Any help is appreciated. Thanks for your time.
    Hailie

    Pramod,
    Thank you for your reply. Please see below my answers to your questions:
    -> Do you see any pattern in the users (DN) that are unable to be displayed/login?
    Yes I do see some pattern. There is one change on the problem user's dn - the "\" after the last name is gone.
    Before: cn=smith\, john, cn=users,dc=abc,dc=com
    Now: cn=smith, john, cn=users,dc=abc,dc=com
    However I check in Active directory "\" is presented. In OID if I right click on cn=smith, john and try to delete it, I got a error message "LDAP: error code 34 - Error in DN Normalization". Is that caused by the missing of "\"?
    -> Does ldapsearch on these users (with all attributes) show something (special chars, etc)?
    ldapsearch on cn=cn=smith, john,cn=users,dc=abc,dc=com returns no objects:
    $ldapsearch -L -D "cn=orcladmin" -w "*****" -h host -p 389 -b "cn=smith, john,cn=users,dc=abc,dc=com" -s sub "objectclass=*"
    ldap_search: No such object
    ldap_search: matched: cn=Users, dc=abc,dc=com
    Ldap search on cn=smith\, john,cn=users,dc=abc,dc=com:
    $ldapsearch -L -D "cn=orcladmin" -w "*****" -h host -p 389 -b "cn=smith\, john,cn=users,dc=abc,dc=com" -s sub "objectclass=*"
    dn: cn="smith, john",cn=users,dc=abc,dc=com
    uid: [email protected]
    employeenumber: 916963
    cn: smith, john
    registeredaddress: 512
    krbprincipalname: [email protected]
    orclsamaccountname: ABC.COM$JSmith
    sn: johnsmith
    displayname: John
    orclobjectguid: lJO0N+8H4UW/30yHukSfsw==
    orclobjectsid: AQUAAAAAAAUVAAAAohxTYWIV3XFeP55cYjwAAA==
    orcluserprincipalname: [email protected]
    objectclass: oblixorgperson
    objectclass: inetorgperson
    objectclass: orcluserv2
    objectclass: person
    objectclass: orcladuser
    objectclass: organizationalPerson
    objectclass: top
    obver: 10.1.4.0
    -> Do you see the same behavior when you use any generic LDAP browser (Ex: Apache Directory Studio) instead of ODM?
    I don't have Apache Directory Studio installed yet. I will try that later.
    -> Does the changelog for the particular synch (for the affected users) show something?
    Here is what I found in ActiveChgImp.aud
    (weeks ago)
    97426524 : Success : MODIFY : cn=smith\, john,cn=users,dc=abc,dc=com
    (Recently change - The back slach after smith was gone, and "" showed up)
    97469970 : Success : MODIFY : cn="smith, john",cn=users,dc=abc,dc=com
    -> If login to OAM is possible, can the user modify his/her profile, and does it save the changes? If it does, can you try logging in to apps?
    This user can log into OAM identity system, but when I click on "My profile" under "User manager", I got a error message "You do not have sufficient access rights".
    If I log into identity system as orcladmin, I was able to modify it and save the changes. But in OID the user is still not displayed. Same error message. When I tried to add it as administrator, I could search on it, add it, but when I press "done", it didn't show up on the admin list. The users that can be displayed in OID can be added to admin list without a problem.
    Thanks,
    Hailie

  • Problem with "Group By" in Views - Not Displaying the Same for All Users

    We have an Announcements List with its only View being set up to group by a metadata category field. We've done this many times on other kinds of lists and never had a problem. But with this list, about half the users can see only the ungrouped
    set of announcements, whereas others actually see the items within their groups.
    Those with "View" rights only can't see the grouped items - but that appears to be a coincidence as I promoted them to the same rights as others who can see them correctly, and that did NOT solve the problem. Everyone is using the exact same browser.
    Note: the users who do NOT see the groupings see only a single category entry that displays only the name of the category list (but not the names of the actual categories within the category list). All the announcements are grouped under that one
    entry for those users. This display looks exactly like it would if the categories had been left blank when the original announcements were created. But the categories are NOT blank, and the rest of the users can see them just fine, and the announcements display
    within their appropriate groups.
    I can't find anything in the View, the List Settings, or the User Permissions to explain this. What could be causing it, and how can I fix it?

    Browser settings are controlled by central IT and are all identical. 
    The only difference I can detect is the second set of users (that don't see the category options) have only Read rights, whereas those with Contribute (or above) rights can see the categories. It doesn't make
    sense that permissions would affect this, but I can't come up with any other differences.
    Microsoft will not allow me to upload images. it says I can't upload images until they have verified my account, but there is no clue as to how, if or when that might happen. If you can tell me how to fix that, I can provide samples.

  • Not all users are displayed for log on after a reboot or startup...

    Problem summary: Not all users are displayed for log on after a reboot or startup...
    This problem only occurs after a fresh start-up or restart. The only users displayed are the initial (admin user) and "Guest". Two other (non-admin) users are not shown for log on.
    To work around this problem and get them to log on we have to log on as the admin user, then we can see the other users in the Fast User Switching menu (top right-hand corner of the screen), listed under the current logged on user. After selecting the non-admin user we can log in and use the laptop as normal.
    If we lock the screen, use fast user switching or log out all users; all users are available for log in, until a reboot is done; at which point the non-admin users disappear again and we have to log in as the admin user and use fast user switching again.
    The laptops are both brand new MacBook Airs. The initial configuration of Mac OS X Yosemite was done using the Apple ID of the purchaser (parent) and then the OS was patched, immediately, through the App store (no further updates available as of the date of this posting). After this Family Sharing was activated and new users set up for the two children who will be using these laptops.
    Has anybody else experienced this problem with Yosemite?
    Cheers,
    David.

    David,
    Users not enabled for FileVault unlock are only able to log into the computer after an unlock-enabled user has started or unlocked the drive. Once unlocked, the drive remains unlocked and available to all users, until the computer is restarted.
    FileVault has to be On.
    To Enable the users to be able to unlock FileVault Go to:
    System Preferences > Security & Privacy > FileVault ( Tab ) > Click the Lock in the bottom left > Put in your administrator password > Should see an option to Enable Users > Enable User.
    Hope that helps,
    Weston
    Supporting Articles,
    OS X: About FileVault 2 - Apple Support

  • Adobe Illustrator file will not display correctly when logged in as a user

    I am working with an Adobe Illustrator CS2 file that will open and display correctly if I log in as Administrator, but will not display correctly if I am logged on as a user. The error message is that there is not enough memory to display the file correctly and I am forced into preview mode. The user Home folder is on a server. Other than this, I have made certain that the criteria for opening the file match under both interfaces. I have opened the AI CS2 file on other Macs and it opens fine. I conclude that the problem is with the user Home folder, but beyond that, I'm stumped. Any help will be appreciated.

    After I filed a bug-report an Apple engineer contacted me, and asked me to try running java in headless mode: http://java.sun.com/developer/technicalArticles/J2SE/Desktop/headless/
    That solved the problem!

  • User-Defined Type does not display values in Table Data grid

    I have a User defined Type that is a collection of one character VARCHAR2 values. In the Table Data grid it does not display the character values. I know on all our other Oracle development applications these values display. Is this a bug or is there a snippet to display these values?

    Version: 1.0.0.15
    DB: 10.2.0
    Workstation OS: Windows XP

  • Time Machine not displaying backups of mounted /Users

    Bottom Line: Time Machine 'Warp' GUI does not display available backups when using Finder to browser user directories stored on HDD, mounted on /Users in /etc/fstab, even though the backups exist and I can navigate to them from the Finder to the backup disk
    Machine Config:
    1. OS X Lion 10.8.5 on MBP 2.53 GHz Intel Core 2 Duo running on a SSD as the OS X boot drive, and the OEM HDD in a drive tray in what used to be the superdrive bay.
    2. The HDD is a single partition dedicated to Users and mounted to /Users. When unmounted, the SSD has a /Users dir with a single admin-enabled user still present to ensure I can still boot and log in as that user in the event the HDD does not mount.
    3. The /Users dir mounts successfully using /etc/fstab
    4. The HDD still displays in the Finder window and the desktop, which is not a problem for me
    I've posted a work-around at http://www.andrew.cmu.edu/user/mlanham/currEvents.shtml that explains I can, inside the TM restore GUI (what I've heard called 'warp' and 'space') select the machine label under the Devices list in Finder (on the left side). I can then expand folders without double clicking them, and get TM to restore the file(s)...TM sees the backups as present and available and functions as I would expect. 
    However, when I select a labeled location (e.g. Google Drive, Downloads) under the Favorites label, still inside the TM restore GUI, all the backups are black and do not otherwise indicate they are present for restore actions.
    I thought I read a blurd somewhere warning me of this situation, but I cannot find the blurb anymore--surely I'm not the only one to have experienced this. Has anyone else experienced it? Overcome it?
    More importantly, I am interested in knowning if this is 'as designed' behavior or a bug in TM's GUI presentation. Why should TM care if a dir is a mounted partition or not...if it was present during backup, and present during a restore request, it should render the available backups as available to select. Not make me do a work around.

    Earlier, I posted that the OP in https://discussions.apple.com/message/8182305#8182305 resolved this situation by making a softlink from SSD /Users to HDD's /Users and removing the entry from /etc/fstab. Initially, I thought this was a bad idea, as if the HDD fails to spin up and mount to /Volumes, that the system would fail to boot as it would not find a /Users directory available.
    Then I read a different post that implied that if that happens, simply boot to single user mode and fix the trouble with the HDD.
    Is this soft-link + boot to single user mode a better choice than /etc/fstab to mount the HDD to /Users (where the SDD has a non-empty /Users with a single admin-enabled user in it)?

  • Groups are not displaying in the user's member of tab

    Hi ,
    We have a issue,
    After mapping any AD  group in CMC,the groups and users are displaying  in the cmc list. but when we go to the properties of the user and member of option ,the groups are not displaying .
    After restarting the CMS every thing works fine.
    Every time after adding a new user we should restart the CMS, it is very difficult for  us as number of users are working on this .
    We are using number of AD groups.
    Is there any resolution for this with out restarting the  CMS.
    Thank you  in advance.
    Environment -
    BO XI3.1,
    LDAP authentication.
    Thanks & Regards,
    Collin.

    The LDAP graph is responsible for showing the membership when viewing the user properties, an issue like this would indicate the graph is not auto updating. It normally builds when starting the CMS then every 15 minutes or so for new users (depending on system activity). It shouldn't lose any info (if it does this indicates a caching or communication problem with AD). There is a graphtimeout setting in the registry (search SAP notes) if this were disabled then it may cause similar symptoms.
    I'm not aware of any bugs in 3.1 causing this behavior so you may need to open a case with support (authentication team) to help troubleshoot.
    Regards,
    Tim

  • Users are not displaying in Management Console's Sessions (AS Java)

    Hi,
    Recently we upgraded our Development Server to EHP 7.11.
    In SAP Management Console, inside AS Java, when we are trying to view the Sessions, in the User Column the user names are not displaying.
    Those users are authenticated through UME.
    Before upgrading users logins were displaying.
    Please help us to rectify this problem.
    Thanks and Regards
    Ravi Shankar K

    Did you try to run the MMC on url. http://hostname:5xx13.
    where xx denotes the instance no of thet host.
    Thanks
    Rishi Abrol

Maybe you are looking for