Reg ID deletion after essbase startup

Dear Experts,
OEPM 11.1.1.2 - It is a standalone installation and didn't externalize users to shared services
We have defined one ID during essbase startup after installation as "admin" and now is it possible to change this ID with Different Name?
i didn't try deleting this user after creating one more supervisor for Essbase from Admin console? If so we can delete, what is the process?
kindly help me on this...
Thanks,

Hi Nra,
Thanks for your reply!!
Is it possible to rename the User used during Installation if not delete?
Can we do this from Maxl ... Alter user-name rename to user?
Thanks,

Similar Messages

  • Reg  Order reservation not deleting after PGI (VL01N)

    Hi All,
    ETO scenario, For production, reservation will be create through WBS element. After production , If I do delivery and PGI,  production order reservation is not deleting.
    Same material If I do delivery(LP) through CNS0, then order reservation is going to delete after PGI. But Sales order price is not copying to Billing If I follow this process.
    Is there any copy controls to flow the sales price to billing when delivery happens through CNS0. If not
    Which requirement class and movement type I need to determine in Sales order.
    With regards,
    Prasad.
    Edited by: SDGURU on Feb 9, 2011 10:50 AM
    Edited by: SDGURU on Feb 9, 2011 10:51 AM
    Edited by: SDGURU on Feb 9, 2011 11:14 AM

    Hi All,
    Please do need full.
    Regards,
    Prasad.

  • Error executing ODIMoveFile process after Essbase interface

    Hi
    I have created a package with execution of ODIMoveFile after Essbase extraction interface, in following order:
    1. An interface extracts dimension from Essbase into a txt file
    2. ODIMoveFile to move(not copy) this file at other location
    Now when i execute this package, the interface to extract the dimension executes fine and it gives the output in file.
    But during the execution of ODIMoveFile, it gives error saying, the file could not be deleted.
    Now, once the extraction of dimension members is complete, why does ODIMoveFile not able to move the file?
    I also tried to replace the ODIMoveFile with OS command which executes a Bat file to copy the file & then delete it. This time, the second part continues to execute for long duration without giving errors & i need to manually stop it.
    Moreover, when i tried to manually delete the file, i am unable to do so, giving error that the file is in use.
    Does the control over the file does not get removed even if interface completes execution??

    Hi,
    I think there is a lock of the file until the package has completed.
    There is a way round this.
    Create a package with the extract measures interface.
    Create a scenario from the package.
    Create another package, use the tool OdiStartScen to start the Scenario you created above.
    Next step have the OdiFileMove.
    Ok?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Is it possible to delete the boot/startup volume from Terminal

    Is it possible to delete the boot/startup volume from Terminal?
    What sort of command would/could allow this?

    Is it possible to delete the boot/startup volume from Terminal?
    Do you mean is it possible to destroy your system from the Terminal? Anyone that has spend long enough working with Unix from a command line knows that answer. Yes! And a painful lesson it has been for many of us.
    The real question is, what is your goal?
    If you just want to erase lots of files, then the 'rm' command is available. Once all the files are erased, the rm command will be one of them, and so that is the end of the game. You will not be able to execute any more commands. The file system is still there, and the data in all those files is still on the disk, you have just eliminated the easy way to access that data (via file names).
    If you want to initialize a new file system on the disk, you could most likely do that (diskutil - it will be the last command you run from the terminal, but you could most likely do it). Again, the data is still there, but the file system structure that held all the names and allocation information has been eliminated.
    If you want to securely erase the disk, that is also possible (diskutil), and again, that will be the last command you will run from the terminal. Now nothing is left behind, neither data nor file system structure.
    What sort of command would/could allow this?
    rm and diskutil come to mind (in combination with sudo).
    You could also just boot from the installation DVD, and then from the Menu select the Disk Utility and erase the disk as well as give it a new file system. And since you are running from the OS stored on the DVD, you can do other things after the Disk Utility is finished.

  • URGENT-- Data is going to delete after end of loop .

    hi all,
    i have written code .....
    SELECT DISTINCT M1VKBUR M1KUNNR M1VBELN M1BSTNK M1AUDAT M1KNUMV M2NETWR M2MWSBP M3ERDAT M3FKART
                                         INTO CORRESPONDING FIELDS OF TABLE ITAB
                                         FROM VBAK AS M1 INNER JOIN VBRP AS M2
                                         ON M1VBELN = M2AUBEL
                                         INNER JOIN VBRK AS M3 ON M2VBELN = M3VBELN
                                         WHERE M1~VKBUR IN VKBUR
                                              AND M3~ERDAT IN ERDAT
                                               AND M1~KUNNR IN KUNNR
                                                AND M3~FKART IN FKART .
    DELETE ADJACENT DUPLICATES FROM ITAB COMPARING VBELN .
    LOOP AT ITAB .
    SELECT KAWRT KBETR INTO CORRESPONDING FIELDS OF TABLE ITAB2 FROM KONV
                   WHERE KNUMV = ITAB-KNUMV
                   AND KSCHL IN ('SKTO' , 'INV1') .
      MODIFY ITAB2 INDEX SY-TABIX TRANSPORTING KAWRT KBETR .
    ENDLOOP .
    LOOP AT ITAB2 .
      ITAB-CD_AMT = ITAB2-KAWRT * ITAB2-KBETR / 10 .
      ITAB-AMT_DUE = ITAB-NETWR + ITAB-MWSBP - ITAB-CD_AMT .
      MODIFY ITAB INDEX SY-TABIX TRANSPORTING CD_AMT AMT_DUE  .
    ENDLOOP .
    problem is that i m not getting values in itab2 at end of itab, its going to delete after completing  last itab value of KNUMV.
    can anybody help me its urgent .
    thanks in advance .
    Anil .

    Hi Anil..
    There are some corrections needed in ur Code..
    Check the modified code: Changes in BOLD
    SELECT DISTINCT M1VKBUR M1KUNNR M1VBELN M1BSTNK M1AUDAT M1KNUMV M2NETWR M2MWSBP M3ERDAT M3FKART
    INTO CORRESPONDING FIELDS OF TABLE ITAB
    FROM VBAK AS M1 INNER JOIN VBRP AS M2
    ON M1VBELN = M2AUBEL
    INNER JOIN VBRK AS M3 ON M2VBELN = M3VBELN
    WHERE M1~VKBUR IN VKBUR
    AND M3~ERDAT IN ERDAT
    AND M1~KUNNR IN KUNNR
    AND M3~FKART IN FKART .
    <b>SORT ITAB BY VBELN.</b>
    DELETE ADJACENT DUPLICATES FROM ITAB COMPARING VBELN .
    <b>IF ITAB[] IS NOT INITIAL.</b>
    SELECT KAWRT KBETR INTO CORRESPONDING FIELDS OF TABLE ITAB2
    FROM KONV
    <b>FOR ALL ENTRIES IN ITAB</b>
    WHERE KNUMV = ITAB-KNUMV
    AND KSCHL IN ('SKTO' , 'INV1') .
    <b>ENDIF.</b>
    LOOP AT ITAB2 .
    ITAB-CD_AMT = ITAB2-KAWRT * ITAB2-KBETR / 10 .
    ITAB-AMT_DUE = ITAB-NETWR + ITAB-MWSBP - ITAB-CD_AMT .
    MODIFY ITAB INDEX SY-TABIX TRANSPORTING CD_AMT AMT_DUE .
    ENDLOOP .
    Now it works properly.. And with better performance.
    Note: Avoid using CORRESPONDING FIELDS option in the SELECT when the Internal table structure is same as the Fields selected.
    <b>Reward if Helpful.</b>

  • Production Reporting out put not getting deleted after 30mins what we set.

    Hi,
    This issue regarding Production Reporting. In the workspace the report output not getting deleted after 30minutes (while publishing the report settings were like delete after 30 mins). Any suggestions please .....
    Thanks
    Venkat

    Hi Deepak,
    Please chek the field / value which u have changed is relavant to  printouts of the change.
    You can check  with following path
    SPRO> MM > Purchasing > Message > Fields Relevant to Printouts of Changes.
    Confirm tick is provided for PO ( P)
    Vivek

  • Windows 7 boot camp screen goes black after windows startup screen!!!!!!

    A few days ago when I tried to start my MacBook Pro in windows 7 (enterprise) I encountered a completly black screen after the startup screen.
    1) Choose start in Windows 7 from boot camp menu (holding option after starting up computer)
    2) Windows start up screen would appear and finish
    3) For a very brief second my cursor pointer would appear and login screen would flash onto the screen, then the screen would go black
    BUT
    I CAN boot windows 7 in safe mode
    The computer is still on when screen goes black (fan still running and i can use keyboard commands to shut down the computer)
    I've been searching the Internet for DAYS to no avail
    PLEASE someone help me....... ive already tried the sfc /scannow and dskchk commands in the command prompt window

    Win 7 Enterprise is not supported by Boot Camp, you may or may not get it to work reliably, (I would not bother to try)
    Read this document then pick a supported version of Windows for your Mac.

  • Premiere Pro & After Effects close after a few seconds after the startup?

    Hi,
    I bought Creative Cloud yesterday and everything installed just fine. I haven't tried all Apps yet, but so far Premiere Pro and After Effects close after a few seconds after the startup. There is no dialogue or error window of any kind, the programs just shut down automatically.
    The weird thing is that I had the trial before, but also uninstalled it, but then the apps worked just fine.
    I searched the forum but couldn't find anyone with the exact same issue. I hope someone can help me out.
    My notebook specs:
    Windows 7 Home Premium 64-bit
    Intel Core i7-3610QM
    CPU 2.30 GHz
    RAM 6 GB
    Graphics card: nVidia Geforce GT 630M - 2 GB

    >assigning my nVidia card as the main driver for Premiere Pro (instead of the standard card)
    You MAY need to turn off the onboard graphics "chip" in BIOS
    -http://helpx.adobe.com/premiere-pro/kb/error---preludevideo-play-modules.html
    -http://forums.adobe.com/thread/1001579
    -Use BIOS http://forums.adobe.com/thread/1019004?tstart=0
    -link to why http://forums.adobe.com/message/4685328
    -http://www.anandtech.com/show/4839/mobile-gpu-faceoff-amd-dynamic-switchable-graphics-vs-n vidia-optimus-technology/2

  • After a startup problem with my macbook pro i put it as slave and formatted the internal Hard drive. Now i want to install OS X Mavericks from USB

    After a startup problem with my macbook pro i put it as slave and formatted the internal Hard drive. Now i want to install OS X Mavericks from USB
    How can i do that?

    What did you "put as slave?" What Mac model do you have, exactly?

  • Any one has problem with notes getting deleted after a week ?

    After upgrade to iOs 7, my new notes that I wrote on icloud or email are deleted after a week. I  have to take note again and again, first i did not notice because i thought i was accidently deleted, but then a week later i lost the new notes again. All old notes are ok, it just happen to new notes after iOs 7. Pls help

    try SUS and reinstall it again

  • Webdynpro application automatic start after j2ee startup

    Hi ,
    Is there a way to automatically start any specific webdynpro applications after j2ee startup
    Oren

    I guess you can write batch file for that.
    Example
    suppose you have a bat file which starts J2EE engine, startJ2EE.
    You can write a new bat file with following commands.
    startJ2EE.bat
    explorer http://<server>:<port>/webdynpro/<URL as application>
    Let me know if you need more help
    Ashutosh

  • MacBook turns off after the startup bong when trying to restart

    Greetings,
    When I try to restart my MacBook it turns off after the startup bong.
    Thanks

    Have you tried resetting the System Management Controller? That is a good first step for power related issues such as this.
    Best of luck.

  • Firefox bookmarks/toolbar deleted after software update for Microsoft

    Firefox bookmarks and toolbar were deleted after a software update from my mac computer - an update from Microsoft - affecting word & firefox. The restore function within the bookmark section does not work - it shows the back ups but then states "unable to process the backup file"

    You can check for problems with the <b>places.sqlite</b> database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    *Places Maintenance: https://addons.mozilla.org/firefox/addon/places-maintenance/
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)

  • Sound on clips gets deleted after quiting FCP X, why?

    Sound on some clips I imported from my GoPro gets deleted after I have quit the program and go back to it.  However, in the FCP X events folder, the original media still has the sound in the clip.  I do not understand why this is happening.
    Does anybody have any advice?

    One slight point about Patrick's info.
    Since version 10.0.3, FCP X has been able to edit multicam and most people agree that it does so in a far superior and easy way.
    I would also suggest that as a beginner you completely ignore the "Help" menu as it can be very confusing.
    Instead download these 2 hours of FREE video tutorials and you will see and learn exactly how to use FCP X in no time at all:-
    http://www.izzyvideo.com/final-cut-pro-x-tutorial/
    Finally do not spend a penny on FCP X until you are sure it is right for you.
    You can achieve this by downloading the FREE 30 DAY TRIAL:-
    http://www.apple.com/finalcutpro/trial/
    So within 30 minutes of reading this post you could have FCP X sitting on your desktop and be starting to edit with it  .  .  .  and all without spending a penny!
    P.S. If you already have FCP 7 & and it does what you want, you should stick with it. If it ain't broke, don't fix it.
    Message was edited by: Ian R. Brown

  • TS1702 how do i delete from the startup disk? I am trying to get Mountain Lion from the App store and it says that the purchase was not complete because i need 4.06 GB space to download OS x 10.8. and to remove items from my startup disk to increase space

    how do i delete from the startup disk? I am trying to get Mountain Lion from the App store and it says that the purchase was not complete because i need 4.06 GB space to download OS x 10.8. and to remove items from my startup disk to increase space. How?
    Thanks

    You can use iCloud with 10.7.5. You do not need to upgrade to Yosemite. You should provide a minimum of 15 GBs of free space or 10% of the hard drive's capacity, whichever is greater.
    Freeing Up Space on The Hard Drive
      1. See Lion/Mountain Lion/Mavericks' Storage Display.
      2. You can remove data from your Home folder except for the /Home/Library/ folder.
      3. Visit The XLab FAQs and read the FAQ on freeing up space on your hard drive.
      4. Also see Freeing space on your Mac OS X startup disk.
      5. See Where did my Disk Space go?.
      6. See The Storage Display.
    You must Empty the Trash in order to recover the space they occupied on the hard drive.
    You should consider replacing the drive with a larger one. Check out OWC for drives, tutorials, and toolkits.
    Try using OmniDiskSweeper 1.8 or GrandPerspective to search your drive for large files and where they are located.

Maybe you are looking for

  • Sent this Letter to CEO, Emailed Support, Tweeted and Still NO Response

    Not sure how to get anyone's attention here, but the complete disregard for my situation guarantees that I'm taking my business elsewhere.   Hubert Joly CEO 7601 Penn Ave. S Richfield, MN 55423 RE: {removed per forum guidelines} and {removed per foru

  • Extended Index for an Index in table AFRU

    Dear All, I have found a check box selected in the AFRU table which means Extended Index, What does it mean. Please give your input on this one Appreciating your Inputs Regards Ramchander Rao.K

  • Dynamic IF statement

    Hi all @SAPForums, I need to manage an IF statement whose conditional expression depends on certain parameters. I wonder if there's an easy way to do as follows: IF parameter 1 is not set (EQ SPACE), then the condition must be:  IF it_po_items-delete

  • What about my paid apps if I change the phone?

    Please halp me...

  • Apps crashing continuously

    Hello. I have the following problem with my MacBook. Since some weeks many apps contuoues crashing. Once I had problem with Safari, then with Pages and Numbers and finally with Skype. At the Apple store they reccomended me to initialize the disk and