Delete and create user

hi,
i deleted a user and if i wanna create a user with same name i doesn't work..
why?
Thx,
skydriver

If the original account's home folder is still present in /Users/, move it to the /Users/Shared/ folder and try creating the account again; in some circumstances, the existence of a former account's home folder in /Users/ will interfere with the creation of a new account with the same short name. One situation which will cause it is if you are rebuilding the NetInfo database and recreated your accounts in a different order from the one they were originally created in.
(11539)

Similar Messages

  • Document Deleted and Created again with diff doc. number

    Dear All,
    We are having the scenario that we have some parked documents during the fiscal year (2009) and before the yearend closing, we intend to change the new posting date (01.01.2010) for those parked documents which were created through Logistics Invoice Verification.
    When we give new posting date (01.01.2010) and make save as parked/completed, the system issues a message,"Document 5105601528 2009 was deleted and created again under 5105601532 2010".
    We need to keep the same document number 5105601528 for the next fiscal year also and do not want to generate new document for 2010.
    I request you to all please provide your valuable suggestion that how we stop the new document number for the same document during next fiscal year.
    Regards,
    Ranesh.

    Hi
    As you mentioned that you have changed the Posting Date in the Parked Document from old fiscal year to new fiscal year date 01.01.2010 , then the system will generate the Number based on the sequence available.
    It is not possible to retain the same Document Number in the next fiscal year 2010.
    Hence if you want the system to generate to the same old number, then in the new fiscal year, you shouldnt have any parked/posted document with that number.
    As per my guess, in the new fiscal year already a Document was parked/posted with the numbers 5105601528, 5105601529,5105601530 and 5105601531.And the next number in sequence is 5105601532, iey when changed the posting date of the parked document system generated ihe next available number.
    Hope you understand.
    Regards
    Venkat

  • ABAP Routine for Deleting and creating index for ODS in Process chains

    Any pointers for the ABAP Routine code for deleting and creating index for ODS in Process chains.

    Hi Sachin,
    find the following ABAP code to delete ODS ondex.
    data : v_ods type RSDODSOBJECT.
    move 'ODSname' to v_ods .
    CALL FUNCTION 'RSSM_PROCESS_ODS_DROP_INDEXES'
      EXPORTING
        I_ODS = v_ods.
    To create index:
    data : v_ods type RSDODSOBJECT.
    move 'ODSname' to v_ods .
    CALL FUNCTION 'RSSM_PROCESS_ODS_CREA_INDEXES'
      EXPORTING
        I_ODS = v_ods.
    hope it helps....
    regards,
    Raju

  • ¿Will make a delete and create a new temp.dbf increase perfomance?

    I have a 32GB temp file. I don't understand so much what really mean that temp.dbf must be so big.
    The question is: Can I delete and create a new temp.dbf? and what means do this?.
    I'm newbie in this.
    Thanks a lot, Luis.
    Edited by: cabezanet on 23-nov-2009 9:10

    Temporary tablespace (physically tempfile) is sused for sorting operations, like result set ordering, joins and etc. Hopefully, your tempfile was in autoextend mode and its' size increased as soon as there was request for sorting operations which did not fill into memory.
    You can drop and recreate the temp tablespace as it is not related any database consistency structure. They are only sort segments.

  • Question on icloud and creating users

    I have noticed that my Macbook Pro will create its own user.  I immediately deleted this user since I didn't create it and thought it was taken care of.  Well, I turned on my computer again today and the user was created again, without my consent.  My initial reaction is to think that this is a virus but I started using iCloud recently to share photos with my family and thought maybe using iCloud will create a user for some reason.  This hasn't happened before in the 4 years I have owned the Macbook Pro.  I updated to Mavericks so maybe something finally came through in the update.  I really have no idea what is going on.  All I am used to seeing when I turn on my computer is the administrator (me) and another user I created.  Now there is a third user that has been created all by itself.  Has anyone encountered this before?  Any help would be appreciated!!  Basically, I am stressed out because now I think I have a virus. 

    The Guest account is built-in. It has probably been activated again by a recent system update. Updates will sometimes reset the preference settings to default values.   But I would keep the Guest Account active. This account cannot be used by remote users. And it is a nice honey pot, if you ever lose your Mac. If the thief will log in using the guest account, you can detect this with Find My Mac.
    guest user: Guest users can use your computer temporarily without you having to add them as individual users. You can set restrictions guests can access only the items you want to share. Files created by a guest are stored in a temporary folder, but this folder and its contents are deleted when the guest logs out. The guest account works with the Find My Mac feature of iCloud, which can help you find your Mac if you lose it. You can locate your Mac if someone finds it, logs in as a guest, then uses Safari to access the Internet. Guests:
    Don’t need a password to log in
    Can’t change user or computer settings
    Can’t log in remotely when remote login is turned on in Sharing preferences

  • Amanda; And creating user accounts BEFORE the build process

    I am trying to make a package for amanda (Advanced Maryland Automatic Network Disk Archiver) http://www.amanda.org.
    I have gotten everything to run fine, but the way the devs have set up their configure file (and the resulting build process),
    I HAVE to specify a user account that the program will run as. If I do not specify (and create an account) the PKGBUILD will not run. Is this normal?
    Is there a way to make the PKGBUILD create an account and a group? This account and group are need both DURING the build and during the install.
    It has to be a pre-existing user account.  Here is my PKGBUILD script:
    pkgname=amanda
    pkgver=2.6.0p1
    pkgrel=1
    pkgdesc="The Advanced Maryland Automatic Network Disk Archiver"
    url="http://www.amanda.org/"
    license=('BSD')
    depends=("glibc")
    #If you need amplot and/or samba support (for backing up windows clients) delete the line above and uncomment the line below this line
    #depends=("glibc" "samba" "gnuplot")
    install=(amanda.install)
    arch=('x86_64' 'i686')
    source=(
    http://downloads.sourceforge.net/amanda/amanda-2.6.0p1.tar.gz
    md5sums=('afadad80e0a27963a24b510755470983')
    build() {
    cd $startdir/src/amanda-2.6.0p1
    # These config options are documented at:
    # http://wiki.zmanda.com/index.php/Installation/Installing_Amanda_Source
    ./configure CFLAGS="-03 -Wall" \
    --with-user=amanda \
    --with-group=backup \
    --prefix=$startdir/pkg/usr/local \
    --with-amperldir=$startdir/pkg/usr/local/share/perl5/site_perl/5.10.0
    make || return 1
    make install prefix=$startdir/pkg/usr/local
    I would really appreciate some help (this is my first pkg)
    Also remember; this will not finish building without creating a user and a group
    #groupadd backup
    #useradd -g backup amanda
    Last edited by timetrap (2008-06-19 19:08:09)

    I didn't take it any farther than the first post. I became frustrated with the chicken/egg relationship with account/makepkg.
    The package works (as long as the user accounts are created first) if you can figure out a way around this issue feel free to update the pkg (then upload it to AUR).
    The nobody/nobody idea didn't work for me, I cannot remember the reason why. It had something to do with permissions. Let me know if you need any help.
    Last edited by timetrap (2009-01-01 03:12:17)

  • I am running OS X 10.9.1 on a MacBook Air....I had keychain issues that I bumbled my way through - deleted and created a new Keychain....now a box appears pretty regularly, wanting my Keychain login....i enter it and it's accepted and the box disappears.

    Help..!!  I'm running OS X 10.9.1 on a MacBook Air.  I had keychain issues with passwords etc and bumbled my way out of it by deleting the current keychain and creating a new one with a new log-in (yes, I wrote it down this time!)  But now these little boxes appear wanting my log-in ie. calendar, Safari, Outlook) and its annoying....entering the login gets rid of the box but what a pain and I know it's not right.....I know I need to enter somekind of automatic logins to these apps but how do I do that....and go easy on me, I'm not computer savvy.

    Did you install the latest driver set for the device?  there is a new release on motu.com for mavericks.
    rachel

  • How To create custom login and create user pages

    Where can I find documentation that discusses how I can create a custom login page and create new user page?
    Also, I cannot find how to get away from the default login page.
    I am using 9iAS/Portal R2.
    Bill G...

    Well - I did find some docs;
    Chapter 8 of the Oracle9 iAS Single Sign-On.pdf file titled "Customizing the Single Sign-On Interface" has some good info but I'm wondering about the "create new user part".
    Bill G...

  • How to delete and create the CCM MASTER CATALOG in Catalog Content?

    Hi All,
    Please provide the solution as we are in real trouble.
    We have to delete master catalog and upload it again. Deletion is done because the mapping and all are being corrupted. SAP has suggested to delete the catalog and again upload it and do all the mapping again related to supplier and procurement catalog
    http://help.sap.com/saphelp_srm50/helpdata/en/7f/9b62405c910272e10000000a155106/frameset.htm.
    In the link above I found information really useful, however according to the document the CCM MASTER CATALOG should be created automatically by the SAP Catalog Authoring Tool, this happens the first time that you are using the system.
    Catalog Creation
    You use this function to create catalogs in SAP Catalog Authoring Tool.
    You can create the following types of catalogs:
    Supplier catalogs
    Procurement catalogs
    Model service catalogs
    Note
    SAP Catalog Authoring Tool creates the master catalog, the SRM product catalog, SRM contract catalogs, and the contract catalog for service specifications automatically.
    When SAP Catalog Authoring Tool is used for the first time, you must open the Edit Catalogs application once, before you create any catalogs. Choosing Edit Catalogs triggers the creation of the master catalog. If you do not do this, SAP Catalog Authoring Tool outputs an error message when you try to create a catalog.
    We have already the Master Schema and we know how to map the CCM MASTER CATALOG to the supplier and procurement catalogs. The main problem is that we need to delete the CCM/MASTERCATALOG and created again.
    1. How delete the CCM/MASTERCATALOG?
    In a Test environment I have delete the CCM/MASTERCATALOG using the "Edit Catalogs" mode then choosing the catalog and confirm the deletion.
    Once this has been done, all the catalogs has been erased including the CCM/MASTERCATALOG, so now we have the system in blank. I am not sure if this is the correct way to delete the catalog or there is an easiest way where the Procurement and supplier catalogs don't disappear once the CCM/MASTERCATALOG is deleted.
    2. Once the CCM/MASTERCATAOG is deleted how to created again?
    According to the instructions the SAP Catalog Authoring Tool should created this automatically when is used for the first time, however how we can created the CCM/MASTERCATALOG again if the SAP Catalog Authoring Tool is not used for the fist time.
    Is there a way where the system can create the CCM/MASTERCATALOG for a second time?
    I follow the steps to create the CCM/MASTERCATALOG for the first time however I didn't get a positive result.
    Any help provided will be really appreciated.

    Hi,
    Generation of the /CCM/MASTER_CATALOG is automatic and does not require any additional effort from a catalog admin other than accessing the CDC (Edit Catalogs).
    If the catalog is not regenerated at this point it is likely that you then receive an error like 'Error reading catalogs, error reading Master Catalog' or something similar which would indicate that the previous deletion of the master from either table /CCM/D_CTLG or /CCM/D_CTLG_REQ was not successfully completed or that the update operation in table /CCM/D_UPD_STATE remained in update status and never for some reason completed (status 03).
    Deletion of the Master catalog should not cause the deletion of any other catalog, unless you have chosen 'delete all catalogs'! Choosing the Master and delete should result in only a deletion request for the master catalog, be aware however that all mapping records between Supplier -> Master -> Procurement catalogs will be destroyed and cannot be 'rejoined' but only rebuilt from scratch. It is also advisable after the Master deletion to chcek with report /CCM/CLEANUP_MAPPING which orphaned items and mapping records require cleanup as it is better to remove these before proceeding with the new mappings.
    Regards,
    Jason

  • Source system was deleted and created again

    Hello
    The source system was deleted and all transfer rules to this source syttem dissapaared.
    Later it was decided that we need the siurce system and it was created from new under the same name.
    Is it possible to restore lost transfer rules?

    I don't know of a way of restoring them intact, but if you had ABAP code in the transfer rules, you can search table <b>RSAABAP</b> which might contain your ABAP code.  SAP doesn't seem to delete from the table even when you delete a DataSource assignment.
    There are a lot of rows in the table. the challenge will become finding which ones are yours.  Hopefully your code was commented.

  • How do I delete and create a new iCloud account on my iPhone, when I cannot delete the old account off my phone!

    I have given my 4s to my wife, she has an iCloud account which uses her work address, she has now left the company and we want to start a new iCloud account, trouble is we cannot delete the old account, we have created a new iCloud account but the iPhone won't let us log into it as it only recognises the old version, we can't access her email anymore to reset the account. Have tried all online help. We restored the phone through iTunes

    Ah thanks Razmee however there is NO option to delete the iCloud account in settings!

  • Delete and create system in marketplace

    Hello,
    I changed the hardware to one system. I asked for a knew license and I installed it.But when I tried to open the connection to SAp the hardware key was the old one. So, I deleted the system from marketplace but now I don´t know how to create it again.
    can you help me?

    Hi
    You can add up multiple hardware keys against same system (SID). Just search for the SID, then goto change and on the hardware key page just enter correct hardware key and save it. This way you can register the correct hardware key.
    This is the same method we would use in a HA envronment where two nodes of the same system ned different license.
    Cheers!!
    Javed

  • Loading metadata and creating users in FDM

    hi friends ,
    1) I am using HFM and FDM9.3.1 Can we load HFM metadata using FDM.If yes pls tell me how?
    2)Pls tell me the steps to configure shared services with FDM.Can we configure only msad and ldap with FDM?
    Is there any role of vb authentication scripts for shared services user or is it only forusers created in user management in FDM?

    Hello,
    Currently FDM can not load metadata to HFM. You would need something like MDM/DRM as that is their job.
    FDM 9.3.1.x only integrates with MSAD/LDAP/NTML providers. While SharedServices leverages the OpenLDAP software, it may be possible. I would recommend creating a Support SR to obtain the process.
    Fusion Edition (11.1.1.x) directly integrates with SharedServices.
    Thank you.

  • Delete and create server

    I want to create and delete server using command line utilities? How I do this?

    this may be helpful to you.
    http://e-docs.bea.com/wls/docs81/admin_ref/cli_tasks.html#1331621

  • Completely messed up Raid-Array and Partition! How to delete and create new Raid-Array​?

    Hello,
    I am using Ideapad U310 and tried to clean install Windows 8 and use my SSD as CACHE and Hibernate-Partition.
    So, I was able to get to the Intel CTRL+I-RAID Config Menu and there I was able to create and delete my RAIDS.
    Unfortunately I did not setup the Partition Size correctly, thus I only have a 50 GB Partition combined with my SSD and my HDD. This is what it looks like in the Intel Storage Manager:
    As you can see both, my SSD and HDD appears, but only have small partitions on the right. And Windows 8 only recognizes this small partitions, as you can see here:
    And now I am NOT able to get to the Intel RAID CTRL+I-menu before Windows starts, where I could delete this array.
    My Partitions are "empty", so I dont care if anything is delete. I just want to use raid with FULL CAPACITY of my harddrives. But how can I delete the RAID Arrays and reconfigure them correctly?
    When I change in the BIOS from RAID to AHCI I am able to install Windows 8 again with the whol CAPACITY of my SSD and HDD. But then I will not be able to use the RAID via Intel Storage Manager...
    Hopefully someone could help me.
    Thank you in advance.

    Hi
    Please see this thread
    http://forums.lenovo.com/t5/IdeaPad-Y-U-V-Z-and-P-​series/The-Guide-on-How-To-Reformat-Repartition-AN​...
    Hope this helps
    Ishaan Ideapad Y560(i3 330m), Hp Elitebook 8460p!(i5-2520M) Hp Pavilion n208tx(i5-4200u)
    If you think a post helped you, then you can give Kudos to the post by pressing the Star on the left of the post. If you think a post solved your problem, then mark it as a solution so that others having the same problem can refer to it.

Maybe you are looking for

  • How can I copy an email address from the form results while online?

    Our form contains a field where the users submitted their email address.  But I am not able to mouse over this data in the "View Responses" tab, and copy the email address by selecting the email address and Ctrl C, and neither can I right-click this

  • How do I transfer music from my iPod to my MacPro?

    How can I transfer music from my iPod Classic to my current MacPro laptop? I thought I could "Match" them but from what I am reading in this process it seems to want to delete the music in my  iPod during the process and then upload music from my Mac

  • Windows XP/Vista on a Macbook

    Hi... I am very new to Mac. I have always used a PC. Finding OSX hard to get use to. Im just wondering if there is an XP/Vista version for Mac's? I cant seem to find it anywhere to buy. Also it is easy to use? Just install as you would anything? Than

  • My 30 GB video ipod froze.  Cannot do ANYTHING

    How do I disconnect the battery so the power shuts off? At this point that is probably the ONLY thing I can do. I tried holding the middle and up button for 3 seconds, and nothing happens when I plug it in. Do I have to wait for the stupid battery to

  • Oracle  deleting rows from tables starting with the name PQ

    hai friends we are given access rights to delete only tables starting with PQ. HAVING PQ_NUM as primary key for all the PQ tables. totally we have 6 tables. PQ_01,PQ_02, PQ_03,PQ_04,PQ_05,PQ_06. ALL This tables will have one primary key. for example