Cant Delete or add users ?

Hi There,
Im running a G5 with 10.5.2 with a basic installation that has not been modified in any way.. all we have really done is set up a sharing folder and added a couple of users. Now for some reason i can add or delete the users anymore...
When i try to delete a user i get this error:
Error '-14120' occurred while processing a command of type 'deleteUser' in plug-in 'servermgr_accounts'
When i try to add a user, i get this error:
The server reported the error '-14120' while trying to create the user.
I have no idea what i can do ? Anyone have a clue ?

Hi There,
Im running a G5 with 10.5.2 with a basic installation that has not been modified in any way.. all we have really done is set up a sharing folder and added a couple of users. Now for some reason i can add or delete the users anymore...
When i try to delete a user i get this error:
Error '-14120' occurred while processing a command of type 'deleteUser' in plug-in 'servermgr_accounts'
When i try to add a user, i get this error:
The server reported the error '-14120' while trying to create the user.
I have no idea what i can do ? Anyone have a clue ?

Similar Messages

  • Cant delete or add item to Jlist as nthing happens

    Hi all,
    regarding the first part where pass of string array into object array. I have done it (thanks again for the help). But regarding the add and remove elements from the Jlist cant be done.. below is my code for the delete button when press. I cast it into int for the ManualList.getSelectedIndex();(at part A) but cant display and keep having a error call
    java.lang.NullPointerException at ManualChange&ValueReporter.valueChanged
    code for value reporter is at part B
    Part A
    private void deleteMouseClicked(MouseEvent e)
    int n =(int)ManualList.getSelectedIndex();
    if (!(n < 0) || (n > listModel.size()))
    listModel.remove(n);
    delete.setEnabled(false);
    ManualList.repaint();
    ManualList.revalidate();
    Part B
    private class ValueReporter implements ListSelectionListener {
    public void valueChanged(ListSelectionEvent event) {
    // if (!event.getValueIsAdjusting())
    // gettext.setText(ManualList.getSelectedValue().toString());
    ManualList.repaint();
    ManualList.revalidate();
    Any help is greatly appreciated.
    alright, i redo part A the code is shown below but i still cant get the display out.
    Is there some problem in my code? or is the repaint and revalidate thing wrong usage here ? Need help regarding this. Thanks
    int n =ManualList.getSelectedIndex();
    if (!(n < 0) || (n > listModel.size()))
    listModel.removeElement(arrayObject[n]);
    delete.setEnabled(false);
    ManualList.repaint();
    ManualList.revalidate();

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.event.MouseEvent.*;
    import javax.swing.event.*;
    import java.io.*;
    import javax.swing.DefaultListModel.*;
    import java.util.Properties;
    import java.util.ArrayList;
        public class smallProgram extends JFrame //implements ListSelectionListener
            JPanel p;
        private DefaultListModel listModel;
         JLabel ManualJob = new JLabel();
         JTextField gettext  = new JTextField();
         JScrollPane scrollPane1 = new JScrollPane();
         JButton okButton = new JButton();
         JButton cancelButton = new JButton();
         JButton add = new JButton();
         JButton delete = new JButton();
         JList ManualList;
         int tokenNo;
         String real,ss;
         String[] values;
         Object[] arrayObject;
         java.util.StringTokenizer tokenizer;
         BufferedReader in;
         ArrayList data;
         public static void main(String args[])
             new smallProgram();
          public smallProgram()
                setTitle("Small Program");
                p = (JPanel) this.getContentPane();
                p.setLayout(null);
                setSize(515, 585);
                setVisible(true);
               //---- ManualJob ----
               ManualJob.setText("Manual Jobs Classification");
               ManualJob.setFont(new Font("Times New Roman", Font.BOLD, 14));
               p.add(ManualJob);
               ManualJob.setBounds(10, 435, 190, 35);
               setVisible(true);
               //---- gettext ----
               gettext.setFont(new Font("Times New Roman", Font.PLAIN, 12));
               p.add(gettext);
               gettext.setBounds(365, 435, 115, 25);
               setVisible(true);
               //Buttons for add, del, ok and cancel
               //---- Add ----
               add.setText("Add");
               add.addMouseListener(new MouseAdapter() {
                   @Override
                   public void mouseClicked(MouseEvent e) {
                       addMouseClicked(e);
               p.add(add);
               add.setBounds(355, 485, 60, add.getPreferredSize().height);
              //---- delete ----
               delete.setText("Delete");
               delete.addMouseListener(new MouseAdapter() {
                   @Override
                   public void mouseClicked(MouseEvent e) {
                       deleteMouseClicked(e);
               p.add(delete);
               delete.setBounds(new Rectangle(new Point(430, 485), delete.getPreferredSize()));
               //---- okButton ----
               okButton.setText("OK");
               okButton.addMouseListener(new MouseAdapter() {
                   @Override
                   public void mouseClicked(MouseEvent e) {
                       okButtonMouseClicked(e);
               p.add(okButton);
               okButton.setBounds(335, 520, 75, okButton.getPreferredSize().height);
               //---- cancelButton ----
               cancelButton.setText("Cancel");
               cancelButton.addMouseListener(new MouseAdapter() {
                   @Override
                   public void mouseClicked(MouseEvent e) {
                       cancelButtonMouseClicked(e);
               p.add(cancelButton);
               cancelButton.setBounds(420, 520, 75, cancelButton.getPreferredSize().height);
               ss = ("test1,test2,test3,test4,test5"); //My string ss
               int length = ss.length();
               int asd = (ss.indexOf('_'))+1;
               real = ss.substring(asd, length);
               tokenizer = new java.util.StringTokenizer(real,",");
               tokenNo = tokenizer.countTokens();
               data = new ArrayList();
               values = new String [tokenNo];
    //           Object[] arrayObject = data.toArray();// this is my initial code where arraylist is pass to object
                   for(int i =0; i< tokenNo; i++)   // pass string-ss into arraylist individually
                    data.add((tokenizer.nextToken(",")));
                    //values[i] = tokenizer.nextToken(",");
                    data.trimToSize();
                    //System.out.println("tokenizer"  + values);
    int aaaa = data.size();
    System.out.println("size " + aaaa);
    System.out.println("tokenizer" + tokenNo);
    System.out.println("arraylist "+ i + data.get(i));
    //JLIST
    //======== scrollPane1 ========
    //---- ManualList ---- This is my Jlist // copy arraylist into Object[] then pass it into JList
    listModel = new DefaultListModel();
    /* listModel = new DefaultListModel(); Part A also continue from above
    * for (int i = 0; i< arrayObject.length;i ++)
    * listModel.addElement(objectArray[i].toString());
    * JList ManualList = new JList(listModel); //tried using listModel.method() to remove item in Jlist but return nullException
    arrayObject = data.toArray();
    JList ManualList=new JList(arrayObject);
    ManualList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    ManualList.setSelectedIndex(0);
    ManualList.setVisibleRowCount(5);
    ManualList.setFont(new Font("Times New Roman", Font.PLAIN,12));
    ManualList.setBorder(new MatteBorder(1, 1, 1, 1,Color.black));
    ManualList.setLayoutOrientation(JList.VERTICAL_WRAP);
    values = new String[tokenNo];
    ManualList.addListSelectionListener(new ValueReporter());
    // JScrollPane listPanel = new JScrollPane(ManualList);
    scrollPane1.setViewportView(ManualList);
    p.add(scrollPane1);
    scrollPane1.setBounds(210, 435, 130, 75);
    setVisible(true);
    { // compute preferred size
    Dimension preferredSize = new Dimension();
    for(int i = 0; i < p.getComponentCount(); i++) {
    Rectangle bounds = p.getComponent(i).getBounds();
    preferredSize.width = Math.max(bounds.x + bounds.width,preferredSize.width);
    preferredSize.height = Math.max(bounds.y +bounds.height, preferredSize.height);
    Insets insets = p.getInsets();
    preferredSize.width += insets.right;
    preferredSize.height += insets.bottom;
    p.setMinimumSize(preferredSize);
    p.setPreferredSize(preferredSize);
    private void addMouseClicked(MouseEvent e)
    private void deleteMouseClicked(MouseEvent e) //nthing happen here
    int n =ManualList.getSelectedIndex();
    if (!(n < 0) || (n > listModel.size()))
    listModel.removeElement(arrayObject[n]);
    delete.setEnabled(false);
    ManualList.repaint();
    ManualList.revalidate();
    /* int n =ManualList.getSelectedIndex(); //tried using this but failed
    if (!(n < 0) || (n > listModel.size()))
    listModel.remove(n);
    delete.setEnabled(false);
    ManualList.repaint();
    ManualList.revalidate();
    private void okButtonMouseClicked(MouseEvent e) {
    private void cancelButtonMouseClicked(MouseEvent e) {
    private class ValueReporter implements ListSelectionListener {
    public void valueChanged(ListSelectionEvent event) {
    // if (!event.getValueIsAdjusting())
    // gettext.setText(ManualList.getSelectedValue().toString());
    //String name=(String) ManualList.getSelectedValue();
    //System.out.println(name);
    private void ManualListMouseClicked(MouseEvent e) {
    // int n = (int)ManualList.getSelectedIndex();
    // if (!(n < 0) || (n > listModel.size()))
    // delete.setEnabled(true);
    ok this is a small complete program
    Thanks for the time to read this

  • Cant delete guest user on macbook pro

    Hi,
    I am new to using mac and it wont let me delete my guest user, do you have any advice

    Like Austin mentioned, go to the System Preferences / User & Groups pane, authenticate by clicking on the padlock (need to be in an Admin-enabled user account), click on the Guest entry and uncheck ALL the items shown on the right pane. On the left column, it should say "Guest User - Disabled".

  • Cant delete User Directory !

    I am managing our students on our xserve with 10.6 running. When they are leaving i delete the student on our server with the workgroupmanager but i cant delete his directory. Our file sharing is AFP based.

    Hi Craig
    Is this what you need? > http://support.apple.com/kb/HT1428
    Dennis

  • Upgraded to leopard and Cant delete podcast in itunes please help

    after leopard upgrade.....when i try and delete an old played podcast my itunes immediately pops up an error message and says it quit unexpectedly. this happens w. any podcast and i have the current version of itunes, i also recently upgraded to leopard so i dont know if that has something to do with it, but i CAN play music and videos and podcasts, i just cant delete a podcast, or update them?
    any help would be great

    Good girl.
    "though a bit sluggish" 512 to one gig memory is just making it. two gigs you'll be more satisfied or at minimum 1.5 gigs of memory.
    1) I can't answer that based upon normal itunes migration. I just keep my mp3 music on hard drives and when I re-do a computer from scratch just copy them over(they are all metatagged) and use the itunes "add to library" function then change the view using itunes, set my equalizer and I'm basically done.
    2) Tiger and Leopard bookmark file are interchangeable. user/library/safari/bookmarks. You should always save that file elsewhere and just drag it over to user/library/safari of course the Safari folder is not created until you launch Safari at least once.
    3) use Mail's import function, just direct it to where your mailboxes are stored.
    4) address book you can do this function and save it after done. In Tiger under user/library/application support/addressbook there will be a file called addressbook.data Now create a new folder(do it on the desktop) and name it TigerData. Copy that addressbook.data file into that new folder. Now re-name that folder to TigerData.abbu in the addressbook program use the file, import, addressbook archive menu item and choose TigerData.abbu Once done save that file for future Leopard installs.

  • HT201209 The computer insnt letting me update the new itunes. So i deleted it all and now it ses when i try to download a new one that it cant delet the old itunes ... what could i do

    The computer insnt letting me update the new itunes. So i deleted it all and now it ses when i try to download a new one that it cant delet the old itunes ... what could i do

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • HELP: I can no longer add users to my external hard drives

    Sorry for the duplicate, someone hacked my other account.
    So here's the skinny, I was following some instructions on here to remove the "unknown user" from the list of users that was attached to my Hard Drives.
    Path: System Preferences/Users and Groups/Login Options/Join/Open Directory Utility/Directory Editor.
    Under Users from the pulldown I deleted "Unkown User" Now I am unable to add users to any of my external hard drives via Sharing under System preferences. When I click the + it will let me select a user, but when I click the select button it will not add that user to the list. It remains blank.
    I've tried reformatting one of the hard drives, and a re-boot. Still am unalbe to add users.
    Please help!

    here is a copy of the disc utility log....laila is the name of the extrenal hd i was able to use successfully last.
    2012-07-04 08:10:34 -0400: Disk Utility started.
    2012-07-04 08:17:58 -0400: Preparing to erase : “LAILA”
    2012-07-04 08:17:58 -0400:           Partition Scheme: Master Boot Record
    2012-07-04 08:17:58 -0400:           1 volume will be created
    2012-07-04 08:17:58 -0400:                     Name                    : “LAILA”
    2012-07-04 08:17:58 -0400:                     Size                    : 160.04 GB
    2012-07-04 08:17:58 -0400:                     File system          : MS-DOS (FAT)
    2012-07-04 08:17:59 -0400: Unmounting disk
    2012-07-04 08:18:02 -0400: Creating the partition map
    2012-07-04 08:18:03 -0400: Waiting for the disks to reappear
    2012-07-04 08:18:03 -0400: Formatting disk3s1 as MS-DOS (FAT) with name LAILA
    2012-07-04 08:18:04 -0400: 512 bytes per physical sector
    /dev/rdisk3s1: 312505472 sectors in 4882898 FAT32 clusters (32768 bytes/cluster)
    bps=512 spc=64 res=32 nft=2 mid=0xf8 spt=32 hds=255 hid=2 drv=0x80 bsec=312581806 bspf=38148 rdcl=2 infs=1 bkbs=6
    2012-07-04 08:18:04 -0400: Mounting disk
    2012-07-04 08:18:06 -0400: Erase complete.
    2012-07-04 08:18:06 -0400:
    2012-07-11 15:48:08 -0400: Disk Utility started.
    2012-07-11 15:48:42 -0400: Eject of “Unattached Disk Image” succeeded
    2012-07-11 15:48:42 -0400: Eject of “Flash Player” failed
    2012-07-11 15:59:10 -0400: Disk Utility started.
    2012-07-11 16:00:51 -0400: Disk Utility started.
    2012-07-11 16:02:19 -0400: Disk Utility started.
    2012-07-12 23:22:04 -0400: Disk Utility started.
    2012-07-13 09:13:52 -0400: Disk Utility started.
    2012-07-13 09:20:22 -0400: Disk Utility started.
    2012-07-13 09:45:11 -0400: Disk Utility started.
    ===== Friday, July 13, 2012 9:47:15 AM Eastern Daylight Time =====

  • Calendar Server - Unable to add users

    When I try to add users to a node I get an error message like:
    Working please wait...
    unidsattach failed, see /users/unison/log/unidsattach.log, Error Code =
    0x13205
    Add user [uid=ttesting,o=Airius.com] to node: failed
    Add user(s) to node completed.
    <P>
    This means that the Calendar Server is unable to communicate
    properly with the Directory Server. There are some Calendar-specific
    entries and an ACI that are added to the Directory Server when a node is
    created. These are critical to the proper functioning of the Calendar
    Server. This error may mean that they are missing.
    <P>
    You can also check the access log file of the Directory server to see what
    the problem may be. If you see entries like:
    [27/Jan/1999:07:39:47 -0500] conn=1 op=2 SRCH base="o=Airius.com" scope=2 filter="(nsc
    alxitemid=15000:00001)"
    [27/Jan/1999:07:39:47 -0500] conn=1 op=2 RESULT err=0 tag=101 nentries=0
    This indicates that 0 entries were returned for the search on the SYSOP
    Calendar user.
    <P>
    If you have recently imported data into your Directory Server, it is likely
    that these entries no longer exist. An import to a Directory Server does
    not append data; it replaces the current directory with the data in the
    LDIF file being loaded. You will need to recreate this Calendar information.
    Export your directory to an LDIF file and review the output to see if these
    entries exist.
    <P>
    Here is a boilerplate that may be useful if you don't have a backup copy
    of the original LDIF. Try replacing the baseDN (o=Airius.com) and the node
    id (15000) to match your Calendar configuration. The password is "password".
    The following is for illustration purposes and may not fix all problems:
    aci: (target ="ldap:///o=Airius.com")(targetattr = "*")(version 3.0
    ; acl "Untitled"; allow (write, add , delete ) groupdn = "ldap:///cn=Cal-A
    dministrators-15000, o=Airius.com" ;)
    dn: cn=Cal-Administrators-15000, o=Airius.com
    cn: Cal-Administrators-15000
    objectclass: top
    objectclass: groupofuniquenames
    uniquemember: nsCalXItemId=15000:00001, o=Airius.com
    uniquemember: nsCalXItemId=15000:00002, o=Airius.com
    uniquemember: nsCalXItemId=15000:00003, o=Airius.com
    uniquemember: nsCalXItemId=15000:00004, o=Airius.com
    uniquemember: nsCalXItemId=15000:00005, o=Airius.com
    uniquemember: nsCalXItemId=15000:00006, o=Airius.com
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140113Z
    modifytimestamp: 19980501140113Z
    dn: nsCalXItemId=15000:00001, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00001
    sn: SYSOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00002, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00002
    sn: CWSOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00003, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00003
    sn: STREAMOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00004, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00004
    sn: FOREIGN
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00005, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00005
    sn: SYNCH
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00006, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00006
    sn: HOLIDAYOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z

    Probably in the next couple of weeks, we are releasing beta-2.
    Kumar
    Jim Clark wrote:
    >
    thanks, how often is there a beta refresh?
    Jim
    "Kumar Allamraju" <[email protected]> wrote in message
    news:[email protected]..
    Jim,
    I do not see this problem in the latest source line.
    Probably I'm running a WLS server that is slightly newer than the beta,
    so maybe
    some things might have been fixed.
    Kumar
    Jim Clark wrote:
    I was able to add users and groups through the "console" app, but I was
    unable to add users to the groups. After I added a user "jim" and a
    group
    "clark", I tried adding "jim" to the "clark". It just said "Addeduser...",
    and this, "Members: (none)".
    Jim

  • I cant delete anything in my itunes as it just crashes

    since having itunes match , which im going to let lapse as its pretty useless and constantly loses its info and restores itself!  I cant delete any songs or movies without it crashing, i cant even turn it off.
    why is it the more apple add the less it works!!!!

    Hello,
    Please open Firefox in Safe Mode and test to see if the the problem still occurs.
    See here: [[Troubleshoot Firefox issues using Safe Mode]]
    If the issue doesn't occur in Safe Mode then there is a good chance that an Addon or setting is causing the problem. Follow the instructions in the support article above to identify the add-on causing the issue and then disable or remove it.
    If the problem still occurs even when opening in safe mode then I suggest doing a Firefox Reset. Again this can be done by holding shift as you open Firefox (select 'Reset' from the options this time).
    A reset will return Firefox to its default settings. Your history and bookmarks will be saved but you will need to reinstall your add-ons.
    [[Reset Firefox – easily fix most problems]]
    I hope that helps.

  • Cant Delete Jar in Apache Jserv? Why???

    Hi all
    Can any one tell me why i cant delete my jar file in Apache Jserv, servlets folder. It says access denied. I stopped apache server and then tried to delete it. But no use. Help me in this matter.
    One more problem i am getting is my jar file is not able to access the dependent class files like oreilly's Multipart request class. In wrapper classpath i had given oreilly's package path, and my jar is also included in wrapper class path.
    The above jar file i was talking is created by me.
    Expecting your help soon.....
    Thanks and Regards
    Ramesh.

    Hi Ramesh,
    If you're unable to move or delete .jar, .log, .conf, or any other files after stopping Apache, the JVM has not been properly stopped. When you start Apache with Apache JServ configured, a separate JVM (java.exe) process is started. Many Win32 users use Ctrl-C to stop Apache, and this does not stop the JVM. Also, occassionally with buggy code or buggy VMs, the Java process will not respond to Apache's requests to shutdown.
    The preferred way of stopping the JVM properly is to use the command line options to shutdown Apache. In NT, you can type "net stop apache", and on all Win32, you can type "apache -k shutdown", from a command prompt. This should properly shutdown the JVM.
    If the JVM does not die, you will have to manually kill the process. In 95/98, Ctrl-Alt-Del will list the processes; select the process and click "End Process". In NT, start the task manager, select the process, right click, and select end process. If that doesn't stop your JVM, reboot.
    Hope this will help you.
    Regards,
    Anil.
    Technical Support Engineer.

  • SnS-Superuse cant delete video files

    Hello all,
    Is the following behaviour acceptable?
    The default SnS superuser account cant delete other user's uploaded video files!!!
    Instead, the video file must be deleted by the same user!
    How do you tackle with this?
    Thank you

    I agree that it would be great if the superuser could delete any video file and I think it should be an option, but I have found that only the user that uploaded the file can delete it.

  • How to add user defined tab in the Header level of T-Code O4NM?

    How to add user defined tab in the Header level of  T-Code O4NM?
    I tried with BADI but I cant able to find any BADI for it and also searched for screen exit too..

    Can you check the user exits,
    OIJNOM_N and OIJTKT_N
    Cheers,
    Balaji

  • Sales oportunities can be deleted by all users

    Hello,
    In the Sales opportunities can be deleted by all users. I found a note
    (989706)and it says that the problem will be fixed in a patch.
    Customer had patch 12 and he upgrade to patch 31 and the issue continues,
    I would like to know when the issue will be fixed or if there is another
    way to solve it.
    My customer tell me that the Version 6.2 cant delete these sales oportunities but now with the Version 6.8 PL 12 you can, i want to post a suggestion for applying this functionality
    SAP Message: 692408
    Regards David Almazan
    XAMAI Grupo SCANDA

    There is a "shared" folder that will do this if you alias to the users desktops.
    Macintosh HD/Users/Shared.
    You could create an "admin" folder within that.
    Otherwise each user will have their own Desktop folder created at the time of account creation. You could in theory have a local admin Desktop folder, open up permissions and place an alias in all the users differing Desktop folders to that folder. But this would act like the Shared folder anyway.

  • Cannot add users to roles

    I have configured OpenLDAP data store with Access Manager. I can see the users added in LDAP in the Subjects tab of Access Manager, but when I create a role ad try to add users in the role I get the exception
    Plug-in com.sun.identity.idm.plugins.files.FilesRepo: Unable to find entry: C:\Documents and Settings\161101\amserver\idRepo\user\frank
    Can anybody suggest what is problem

    Hi there,
    The reason why you have file repo is because you installed the AM using file repo instead of LDAP.
    Deleting the File Repo configuration for that realm will not affect the configuration part of the AM ( I would still do a backup ... just in case) because the datastore configuration has nothing to do with that. The configuration part of the AM is at the platform level and you have that configured on the configurations tab of the platform. What I'm sugesting is on that specific Realm ( I usually use a different Realm other than the Root realm ... this way I'm sure not to mess it up ) go to the datastores (which is the place where user data is stored and not the configurations (though they might be the same) ) and delete the file datastore configuration (or point it to a different location ... but do not delete the files on the filesystem, because they are still in use by other Realms and the configuration ) .
    Configuration data and User repositories can be configured in different places .... which is what you are now trying to do .... have the conf on the file system and have the users on an LDAP.
    Defenetly do a backup of your stuff ... and if at all possible use a different realm other than the root realm.
    Hope this helps .... and makes any sense !
    Rp

  • Add user to proxy service

    Hi, im developing an application to automate the security implementation of proxy services in Oracle Service Bus 10g, but i found this http://ohnoes-nz.blogspot.com.ar/2012/03/oracle-service-bus-using-wlst-to-secure.html to do that, thats works fine, but when i try to add a new user, the code it's deleting the previously users configured in the proxy service, i need to know if its possible to add a security policy user based without deleting the policies previously configured , or obtain the users that are configured int the proxy service
    the code im using:
    def applyTransportSecurityPolicy(serviceSecurityConfigurationMBean, authorizer, proxyReference, policy):
    policyHolder = serviceSecurityConfigurationMBean.newAccessControlPolicyHolderInstance(authorizer)
    policyHolder.setPolicyExpression(policy)
    policyScope = serviceSecurityConfigurationMBean.newTransportPolicyScope(proxyReference)
    serviceSecurityConfigurationMBean.setAccessControlPolicy(policyScope,policyHolder)
    thanks...
    regrads...

    I have seen other users as well complaining about the same issue "[Security:090398]Invalid Subject" frequently. You may check with Oracle Support for possible solution for your system version.
    Regards,
    Anuj

Maybe you are looking for