New and Delete missing on the Users page

Somehow the New and the Delete button in the "Users" page have disappeared, even for users in the "administrators" and "user administrators" set, but we did not realize this until we restarted the machine recently. A lot
of things have changed in the mean time. Any suggestions on what I should be checking? Note that we did not knowingly implement any policies to hide these buttons. Any insight/suggestions to make these buttons to appear will be highly appreciated.
Regards,
John

Got it solved. The configuration migration tool deleted the original "User Administrators" set and recreated a new one, which had a new GUID. Since the users page looks for the GUID of the original User "User Administrators" set to determine
who can see the New/Delete buttons and who cannot, it did not recognize the newly created "User Administrators" and hence hid those buttons. So I went to the FIM Service database and replaced the GUID of the newly created set with the old GUID (I
would not go to the details here though as this involves updating GUIDs inside the DB which MSFT usually do not recommends).

Similar Messages

  • My icloud account on my new iphone does not match the user ID for itunes as it is an old apple ID. There is no password for this ID so I cant change it and it wont let me change the apple ID. Any help?

    my icloud account on my new iphone does not match the user ID for itunes as it is an old apple ID. There is no password for this ID so I cant change it and it wont let me change the apple ID. Any help?

    To change to iCloud ID on your phone you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID then sign in with the new ID.  If you don't know the password for the old ID, and if the old ID is an earlier version of your current ID, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • I use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    i use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    Welcome to Apple Support Communities
    That's the classic behaviour after using Migration Assistant and that's normal.
    To transfer the data from the new user account to your old user account, you can follow some steps. Here is all the information you need to do this > https://discussions.apple.com/docs/DOC-5472

  • How do I delete one of the user accounts on my computer and not lose the data in that account?

    How do I delete one of the user accounts on my computer and not lose the data in that account?

    I actually have the opposite of this problem. haha.
    https://discussions.apple.com/thread/4484354

  • DOES ANYONE KNOW HOW I CANT DELETE MY APPLE ID I JUST GOT A NEW AND NO LONGER NEED THE OLD 1 HELP PLEASE

    DOES ANYONE KNOW HOW I CANT DELETE MY APPLE ID I JUST GOT A NEW AND NO LONGER NEED THE OLD 1 HELP PLEASE

    As far as I know they can't be deleted, just remove any personal info from it (credit card details etc) and stop using it.
    If you downloaded any content via it then you will need to remember it and it's password, as content is tied to the account that bought/downloaded it, so if you move to a new computer you'll need to authorise the account on it if you want to use any of its content there (or if you bought apps with it you'll only be able to download updates to them via that account)

  • I've accidentally deleted something in the Users & Groups pane and now many of my programs do not run at all!

    Hello all, I'm hoping you can help me as I have accidentally deleted something in the Users and Groups pane and I don't know how I can restore it. Because of this, items on my desktop have disappeared, my trackpad behaves much differently, and many of the programs are unresponsive. Should I consider wiping it clean (I do not have any start up discs at my disposal) and is there a way to keep my operating system (Mavericks 10.9.2)?

    Try to boot your MacBook Pro from recovery mode and if you have TimeMachine backup, you can restore most of stuffs
    OS X: About OS X Recovery

  • Two users share one Apple ID, on two phones. can they be separated without losing phone backups? IE creating a new ID for one of the users?

    my in-laws share one apple id for two separate iPhones. They would like to create a new ID for one of the users but maintain his current backup. can this be done?

    If you want to create a new account make sure you sign out of everything via the settings. (ICloud, iTunes, facetime, messages, etc) APPS: since the apps were downloaded with a different apple ID, you will always need to use the password for the apple ID that downloaded that particular APP when it needs to be updated. Unless it is free, you can simply delete it and download it under the new apple ID. As for the music, you can keep it on the IOS device,  but if it's accidentally deleted, you'd have to sign back into the original account and download from the cloud. (But, you risk getting the 90 day lockout. )

  • HOw to create a text file in the given path and delete it after the use?

    Hi all,
    I am trying to create a text file at the given path and delete the created file after the use.
    I am using following code.:
    import java.io.*;
    // write binary data as characters
    public class RanIO {
                                            public static void main(String f[])
                                                      // First illustrate append
                                                      String lineSep = "\n";
                                                      try {
                                                                     File temp= new File("C:/Ash","cute.txt");
                                                      boolean ch=temp.createNewFile();
                                                      if(ch)
                                                           System.out.println("file created");
                                                      else
                                                      System.out.println("file Not created");
                                                      //writing to file
                                                 /*     PrintWriter p = new PrintWriter(new BufferedWriter(new FileWriter("cute.txt",true)));
                                                      p.print("Emp NO");
                                                      p.close();*/
                                                                // Open fileWriter in append mode
                                                                               FileWriter fos = new FileWriter(temp, true);
                                                                               BufferedWriter bw = new BufferedWriter(fos);
                                                                               PrintWriter pw = new PrintWriter(fos);
                                                                               double d=550;
                                                                          // lineSep = System.getProperty("line.separator");
                                                                          pw.print("Hello");
                                                                          //pw.print( lineSep );
                                                                          pw.print( d );
                                                                          pw.close();
                                  boolean det=temp.delete();
                                                 if(det)
                                                      System.out.println("File deleted");
                                                 else
                                                      System.out.println("File not deleted");
                                                 } catch (IOException ioe)
                                                                System.out.println( "Append IO error:" + ioe );
    My problem:
    1)
    I am not able to write to the file. I want to know, where i am going wrong.
    It is giving error message like
    "Canot resolve Symbol: temp,"
    But, FileWriter Constructor should accept a File type parameter.
    here temp is a file parameter.
    If i am not using file=new file();
    i can't delete the file after the use. i.e if i use
    PrintWriter p = new PrintWriter(new BufferedWriter(new FileWriter("cute.txt",true)));
    how can i delete cute.txt after the use?
    2)
    I am not able to write to the text file. file is created but, a blank file.
    "Hello" is not written into the text file.
    can anyone help me in this regard
    Thanks in advance
    Ashvini

    Thank you Ram,
    But, i want to create a text file in Append mode.
    for that i used
    FileWriter fos = new FileWriter(temp,true); But, it is not accepting FileWriter constructor in
    this format. if i use
    FileWriter fos = new
    FileWriter("c:/ash/cute.txt",true); it works fine. !!!!!Here's the javadoc
    public FileWriter(File file,
    boolean append)
    throws IOExceptionConstructs a FileWriter object given a File object. If the second argument is true, then bytes will be written to the end of the file rather than the beginning.
    Parameters:
    file - a File object to write to
    append - if true, then bytes will be written to the end of the file rather than the beginning
    Throws:
    IOException - if the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason
    Since:
    1.4
    Are you using jdk.13 or lower ?
    >
    ONe more doubt, Does flush method deletes a file?
    if not, then i need to use
    File temp=new File("c:/ash/cute.txt");
    FileWriter fos = new FileWriter(temp,true); //which
    is again a problem
    if(temp.delete())
    out.println("File is deleted");
    }I don't know whether i am taking it wrong ! or
    anything wrong with my coding ! but, after creating
    and writing data into a text file. I must delete it
    as it contains confidential informations.
    Regards,
    Thanks.'flush' writes to a file immediately. Else you should explicitly call 'flush' to write contents from buffer to underlying source.
    javadoc again
    PrintWriter
    public PrintWriter(Writer out,
    boolean autoFlush)Create a new PrintWriter.
    Parameters:
    out - A character-output stream
    autoFlush - A boolean; if true, the println, printf, or format methods will flush the output buffer
    cheers,
    ram.
    Question; What do you gain by opening a file, writing to it and deleting it in the same program ?

  • Printing graph and other text in the same page

    Hi,
    I am aware that for providing graphs in ABAP report we have a FM which is called via a pushbutton in the output screen generally.
    Is there any way I can do away with the pushbutton and print the graph and other text in the same page at one go ? I think Smartforms will not allow graph printing.......any other method to achive this ?
    The user wants to print the graph and other text in the same page.
    Regards,
    Sandip.

    Hi ! no it is not related to smartforms
    search for custom container on google you idea about custom container.
    following code is for displaying alv on selection screen which is created using custom container
    and docking container.
    I hope you will get some idea about how to use custom container for your problem
    DATA DECLARATIONS
    DATA: CONT_DOCKING TYPE REF TO CL_GUI_DOCKING_CONTAINER,
    GRID TYPE REF TO CL_GUI_ALV_GRID,
    CUST_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
    IT_FIELDCAT TYPE LVC_T_FCAT,
    GS_LAYOUT TYPE LVC_S_LAYO.
    *ITAB TYPE TABLE OF SBOOK.
    *& SELECTION SCREEN PARAMETERS
    *PARAMETERS:P_TEST TYPE I .
    *& AT SELECTION SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
    IF EBELN[] IS NOT INITIAL.
    CREATE OBJECT CONT_DOCKING
    EXPORTING
    REPID = SY-REPID
    DYNNR = SY-DYNNR
    SIDE = CONT_DOCKING->DOCK_AT_BOTTOM
    EXTENSION = 100.
    IF CUST_CONTAINER IS INITIAL.
    *----Create the alv with docking container
    PERFORM CREATE_AND_INIT_ALV .
    ENDIF.
    ENDIF.
    *& Form BUILD_FIELDCAT
    FORM BUILD_FIELDCAT .
    DATA WA_FIELDCAT TYPE LVC_S_FCAT.
    WA_FIELDCAT-FIELDNAME = 'EBELN'.
    WA_FIELDCAT-REPTEXT = 'Airline Code'.
    APPEND WA_FIELDCAT TO IT_FIELDCAT.
    WA_FIELDCAT-FIELDNAME = 'EBELP'.
    WA_FIELDCAT-REPTEXT = 'Flight Connection Number'.
    APPEND WA_FIELDCAT TO IT_FIELDCAT.
    *WA_FIELDCAT-FIELDNAME = 'WUNIT'.
    *WA_FIELDCAT-REPTEXT = 'Weight Unit'.
    *APPEND WA_FIELDCAT TO IT_FIELDCAT.
    *LOOP AT IT_FIELDCAT INTO WA_FIELDCAT.
    *IF WA_FIELDCAT-FIELDNAME EQ 'WUNIT'.
    *WA_FIELDCAT-EDIT = 'X'.
    *WA_FIELDCAT-DRDN_HNDL = '1'.
    *WA_FIELDCAT-CHECKTABLE = '!'.
    *MODIFY IT_FIELDCAT FROM WA_FIELDCAT.
    *ENDIF.
    *ENDLOOP.
    ENDFORM. "build_fieldcat
    *& Form CREATE_AND_INIT_ALV
    FORM CREATE_AND_INIT_ALV .
    CREATE OBJECT GRID
    EXPORTING I_PARENT = CONT_DOCKING.
    *--perform build field catalog for alv display
    PERFORM BUILD_FIELDCAT .
    *--fill the drop down list values
    PERFORM fill_dropdown_table .
    *----fill final output table
    SELECT * FROM EKPO
    INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE EBELN IN EBELN.
    *UP TO 10 ROWS.
    *---display alv
    CALL METHOD GRID->SET_TABLE_FOR_FIRST_DISPLAY
    CHANGING
    IT_FIELDCATALOG = IT_FIELDCAT
    IT_OUTTAB = ITAB[].
    *---Set editable cells to ready for input initially
    CALL METHOD GRID->SET_READY_FOR_INPUT
    EXPORTING
    I_READY_FOR_INPUT = 1.
    ENDFORM. "create_and_init_alv
    *& Form set_drdn_table
    FORM fill_dropdown_table.
    DATA: LT_DROPDOWN TYPE LVC_T_DROP,
    LS_DROPDOWN TYPE LVC_S_DROP.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'KG'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'G'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'B'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    LS_DROPDOWN-HANDLE = '1'.
    LS_DROPDOWN-VALUE = 'T'.
    APPEND LS_DROPDOWN TO LT_DROPDOWN.
    CALL METHOD GRID->SET_DROP_DOWN_TABLE
    EXPORTING
    IT_DROP_DOWN = LT_DROPDOWN.
    ENDFORM. "set_drdn_table

  • Sync new and deleted Outlook entries -- but not changed entries

    Mate,
    I'm using a basic 8700.  When I sync my Outlook Calendar (with multiple PCs per protocol where I start AND end with my base PC), the new and deleted entries transfer in the sync to mulriple PCs, but entries which I have revised (changed appointment time or text, for example) do not reflect the revisions.  I've doubled-checked all of my preferences, conflict resolution, etc.  It's not a settings issue -- I don't think -- because all new and deleted entries upodate, plus I get a conflict screen if both sides of the operation change the same discreet entry.  I've researched it quite a bit but can't find anything on-point about why all new and deleted entries transfer, but old entries which are altered entries do not get updated.  Certainly, someone out there syncs with more than one PC (desktop and laptop, for example) and has seen this or resolved it...
    Johnny1 

    HELP!! Does anyone have any suggestions?

  • My ipod is brand-new and I mistakenly pressed the "restore" option! How can I put everything back to normal now?

    My ipod is brand-new and I mistakenly pressed the "restore" option! How can I put everything back to normal now?
    And after that, could you explain to me how can I put songs in it?

    Re-sync your apps and content from iTunes on your computer or redownload it from the iTunes Store, then restore from your backup:
    http://support.apple.com/kb/ht1766
    That should put back most if not all of your settings and data. As to putting songs on, either purchase them from the iTunes Store or, again, sync them from iTunes:
    http://www.apple.com/support/ipodtouch/syncing/
    You might find it worthwhile to read the User's Guide:
    http://manuals.info.apple.com/en_US/ipod_touch_user_guide.pdf
    Regards.

  • How to show the First and Last name of the user instead of user name

    Gurus,
    We have the full email id of the user as the portal user name. Right now we are using the "Item Attributes - Current User" to show the user name. We don't want to show this anymore. We would like to show the First and Last name of the user on the Portal page. How can i do this. Please post a reply if you have some idea about it.
    Thanks
    Raj
    ---------

    I believe this is possible using the security APIs. See http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/PLSQL/DOC/PLDOC_9026/INDEX.HTML and look for person_info (Returns user information, given a user name)
    under wwsec_api
    Suggest posting any follow-up questions to the Security forum - http://forums.oracle.com/forums/forum.jsp?forum=6

  • RoboHelp x5 TOC and index missing when the project is converted to RoboHelp 10

    As the title says, RoboHelp x5 TOC and index missing when the project is converted to RoboHelp 10. Any ideas for recovering or importing the x5 TOC and index?
    Before this is suggested, auto-create is not an option.

    Hi there
    Perhaps give this a try. From the Project Manager pod, right-click the Table of Contents area and choose "New Table of Contents". Give it a name and enable the "Copy existing Table of Contents" check box. Then click the Ellipsis icon on the far right side. See if you have a .HHC file in the folder. Odds are, you will. That will be the existing (missing) TOC.
    Hopefully that will work. If so, repeat the process for the index.
    I think when upgrading the project something goes wrong with naming.
    Let us know if this helps... Rick

  • Firefox freezes the computer for about 20-30 seconds (not even Alt+Tab works), the screen blinks black and then it shows the desired page. Does that several times at the beginning, then sort of stabilizes.

    Firefox freezes the computer for about 20-30 seconds (not even Alt+Tab works), the screen blinks black and then it shows the desired page. Does that several times at the beginning, then sort of stabilizes.
    This happens even if I simply hover the mouse over bookmarks, not even opening a page.
    And waiting for this to happen some times or closing and re-opening seems to make it work ok again.
    I've already disabled almost all add-ons (I'm using only one for Flash and NoScript right now), reinstalled Firefox (8.0.1), restoring only the bookmarks from an older version.

    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • PRINTER MISSING HALF THE TEST PAGE

    WHEN PRINTING DOCUMENTS WORDS AND LINES MISSED OUTWHEN PRINTING TEST PAGE ONLY HALF THE WORDS PRINTED OUT

    Hi , I see that you are having issues with missing lines and text. I would like to help you. Please try the steps in this document to see if it will help resolve this issue. Fixing Print Quality Problems for the HP Deskjet 1050, 1050A, 2050, and 2050A All-in-One Printer Series. Are you using Genuine HP Cartridges?
    What are the ink levels? If you appreciate my efforts, please click the 'Thumbs up' button below.If you have any issues, please let me know what steps you have taken and the results. Thank You.

Maybe you are looking for

  • Function Module to find out the release value in contract

    Dear All, I have to upload the contract with new accoutn assignment without changing the existing contract. For that i have to download all the existing contract data with value. In that case i have some issues regarding the value. For example : In t

  • Report in SAP -cost of the material in different periods

    Hi, Is there a standard report in SAP which will give me the cost of the material in different periods. The issue is the material price is changed frequently for a perticular material "X''. I want to have a look at the cost of material in different p

  • Using old software on macbook

    Can I use my old final cut software without upgrading to the universal bi on my mackbook including photshop etc. Again I just want install my old software.... is this possible. thank you for your help. 1.5ghz Powerbook G4, 1ghz Yikes, 3.4ghz Vaio, Sh

  • How to set file to open with the latest entry?

    My "sent" file always opened at the latest entry showing the last email I'd sent but, for some unknown reason, it now loads at the top of the file showing the earliest entry. How do I get it to go back to showing the latest entries, the bottom of the

  • Listener not starting

    C:\Documents and Settings\sonu>lsnrctl start LSNRCTL for 32-bit Windows: Version 10.1.0.2.0 - Production on 08-MAY-2009 10:55 :14 Copyright (c) 1991, 2004, Oracle. All rights reserved. Starting tnslsnr: please wait... TNSLSNR for 32-bit Windows: Vers