How to delete old custom workspaces?

How can I delete some old custom workspaces I never use any more?

Duh! Well, that was a dumb question, eh??  Ever look at something so long you just don't see it?

Similar Messages

  • I have a 3g iphone and I need to know how to delete old photos from my phone!! I need the space but there is no way to delete the pictures!! Help!!!

    I have a 3g iPhone and I need to know how to delete old photos. Need to free up space and there is no clear way to delete these photos!! Can someone please let me know how to get rid of these pictures!!!! Help!!!

    There are a number of ways to delete pictures from the Camera Roll.  One is to open Camera Roll in the thumbnail view, tap the arrow button (top right), tap all the pictures you want to delete, tap the Delete button ant the bottom.  Photo Library pictures are deleted by unchecking Sync Photos on the Photos tab of your iTunes sync settings, followed by syncing your phone.

  • How to delete old account, I can't log in due to - This email address is not available for use as an Apple ID. You may already have an Apple ID associated with this address. Please try again or sign in using your existing Apple ID.

    How to delete old account, I can't log in due to error - This email address is not available for use as an Apple ID. You may already have an Apple ID associated with this address. Please try again or sign in using your existing Apple ID.

    All good, I loved with AppStore and now everything seems to be back to normal.

  • How to delete old logs in SAP BI, what is the best way to go?

    Hi,
    below are the issues we are facing,
    when executing infopackage job is not getting triggred into source system.
    for activation DSO data it is taking huge time. At the time of seqential read to RSREQDONE table.
    I think this is due to huge logs in the staandard tables.
    What could be the reson behind this.. and let me know how to delete old logs.
    Thanks,
    Harish

    Hi,
    just carry out RSRV for DSO PSA tables and see if there is inconsistency available there in the PSA table.
    see if the change log and PSA deletion is happening regularly..else schedule same in PC
    check with basis there are certain jobs which needs to run regularly at certain frequency..
    http://www.erphowtos.com/guides-a-tutorials/doc_view/1041-how-to-delete-process-chain-logs-in-sap-bw.html
    http://www.erphowtos.com/guides-a-tutorials/doc_view/1040-periodic-maintenance-activities-on-sap-bw-best-practices.html
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a02ba9e7-bb6f-2c10-09b4-e86b9fcbad41?QuickLink=index&overridelayout=true
    Thanks and regards
    Kiran

  • How to delete a customer in R/3 beside vd06?

    Hi
      how to delete a customer in R/3 besides vd06.
      vd06 marks it for deletion though i can create a
       sales order with a warning.
    Regards,
    Abhimanyu.L

    Hi
    The only way is to archive the customer. If the requirement is to prevent the customer from being used then try VD05 and block the customer.Another alternative is to write code in the user exit mv45afzb and check if the customer is marked for deletion then give an error message
    Reward if this helps
    Thanks

  • How to delete old emails in app store?

    how to delete old emails in app store?

    Yes, I am with KJ, I have no real idea what you are asking about. The app store does not usually have email involved with it.

  • How to delete a custom format in Numbers 3

    I am one of the poor unfortunates that has upgraded to Numbers 3 BIG mistake!!
    However does anyone know how to delete a custom format in Numbers 3?
    I'm not sure where the custom format came from in the erlier version of numbers. I guess I must have created it for something, I can't remember what.
    It now appaers that when I send a Numbers 3 document via email to an Excel format  it adds a weird custom format that turns currency into garbage. Once in Excel simply going to format cells and deleting this odd format cures the problem.
    If I could find a way of deleting it in Numbers 3, hopefully the problem will go away.
    This is far from the only problem I'm having with Numbers 3. It's begining to look like I'll have to abandon Numbers 3 having had to go to the expense of buying a new iPad because Numbers 3 documents (and presumably Pages Keynote etc) no longer work on the original iPad.

    I never promote the method the deletion unless you understand the underlying tables of planning, if you search on the forum you will see posts on the subject just like this one - Delete dimension from planning application
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to delete a custom dimension in planning - 9.3.1

    Hi
    some one please let me know how to delete a custom dimension in planning
    Thanks

    I never promote the method the deletion unless you understand the underlying tables of planning, if you search on the forum you will see posts on the subject just like this one - Delete dimension from planning application
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to delete old emails quickly?

    How to delete old emails quickly?

    If you have an IMAP account (eg, Gmail) that another computer also has access to, or that you have webmail access for, the quickest way is probably to delete them on that computer rather than the iPad. If you must delete them directly from the iPad, you can click Edit at the top of the screen, highlight the emails that you want to delete (click the box at the left of each) then click Delete at the bottom.
    Matt

  • Since updating my Iphone 4 I cannot figure out how to delete old messages.  There is no edit button.  Can anyone help?

    Since updating my Iphone 4 I cannot figure out how to delete old messages.  There is no edit button.  Can anyone help?

    By "sending" do you mean sending email?
    If so, what app are you using to take the photos on your iPhone 5? Or are the photos from a different source (saved to your Camera Roll from somewhere else, like a web page or Messages)?
    My guess is that Mail gives you the option to send different file sizes when it detects you are trying to Mail a really large photo file. The size of photos on the iPhone 5 is really big and some email providers may stop your mail from being delivered if attachments are too large. Thus, Mail tries to help you by offering to resize the photo.
    I suspect that if you are sending smaller files, Mail does not bother giving you options to save a smaller version. In fact, I have seen this behavior. So, if the photo is already "small enough", it gets sent as-is.
    To my  knowledge, there is no global iOS setting for this. Some apps may have different rules, of course.

  • How to delete a Analytic Workspace even other session still attached it

    how to delete a Analytic Workspace even other session still attached that Analytic Workspace?
    or how to detach the Analytic Workspace with other session?
    or how to find session which connected to the Analytic Workspace?
    Thanks

    Here are the sql queries which will tell you who is attached to which aw in which mode.
    select username, sid, serial#, owner||'.'||daws.aw_name aw,
    decode(attach_mode, 'READ WRITE', 'RW',
    'READ ONLY', 'RO', attach_mode) attch,
    trunc(pool_size/1024)||' KB' as curr_opp_kb
    from dba_aws daws, gv$aw_olap gvawo , gv$aw_calc gvawc, gv$session
    where daws.aw_number = gvawo.aw_number and
    sid = gvawo.session_id and gvawc.session_id=sid
    order by owner, sid, daws.aw_name;
    select a.owner,a.aw_name,b.attach_mode
    from dba_aws a ,v$aw_olap b
    where a.aw_number = b.aw_number;
    You might have to kill the RO session before deleting the AW.
    Thanks
    Brijesh

  • My iCloud passward forgat . How to delete old id ? Plz Help me..

    My iCloud passward forgat . How to delete old id ? Plz Help me..

    Hi Subrata,
    Unfortunately, you cannot delete it. You would have to enter the password in order to delete the old Apple ID from your device. If you do not remember the password, please visit: https://iforgot.apple.com/ If this doesn't work, please directly contact Apple.
    With kind regards,
    David

  • How to delete old entires in batch input session sm35?

    How to delete old entires in batch input session sm35?
    Points assigned!
    Thank you.

    In SM35, highlight each entry to be deleted and from the Menu ->Session ->Delete

  • Autofill, how to delete old adresses in Ipad

    How to delete old adresses in Ipad?

    Mail menu Window>Previous Recipients. In the window which opens, select a recipient and click 'Remove from list'.

  • How to delet old backups in time machine

    How to delete old backups in time machine.
    I have no space left for new backups

    See Here  >  Should I delete old backups?  If so, How?
    From Here  >  http://pondini.org/TM/FAQ.html

Maybe you are looking for