Display deleted items

Wenn I transfer a mail to "Deleted Items" , a Number is shown on the right site of that Line. What does this mean and how can I change this ?

You have to display the item to restore it. "Display deleted items" only applies to edit mode - deleted items are never displayed in view mode.
Regards,
Jerry
Portal PM

Similar Messages

  • Restore deleted items?

    In my page-group property the radiobutton "Retain Deleted Items" has been Selected, but "Display Deleted Items" has not been selected.
    I have deleted an item and want to restore it, how do i do it?

    You have to display the item to restore it. "Display deleted items" only applies to edit mode - deleted items are never displayed in view mode.
    Regards,
    Jerry
    Portal PM

  • Deleted items also to be displayed in PO print preview

    Hi
        I want the deleted items also to be displayed in PO print preview..
       If it is possible  What should i do in configuration ?
    Regards,
    Alagesan

    Thanks.
    It can be made appear directly in print out? 
    What may be the solution bcoz we need the send customer the revised PO indicating the deleted items also ?
    Alagesan

  • HT1751 I copied my iTunes folder to an external HD and now I cannot delete it. When I try to move it to the trash it displays The item "iTunes" can't be moved to the Trash because it can't be deleted.

    I copied my iTunes folder to an external HD and now I cannot delete it. When I try to move it to the trash it displays: The item “iTunes” can’t be moved to the Trash because it can’t be deleted.

    Close iTunes. Click the icon to start it, then press and hold down the left shift key. Keep holding until asked to choose or create a library. Choose the iTunes folder on your external drive. That should bring back all your playlists, ratings, play counts etc. You may have to settle for removing and reloading the media onto the device again. That's not too bad, but what you don't want to have happen is your apps being removed and reloaded as then you can lose settings and data. If that looks likely backup and then restore the device rather than sync it.
    If for some reason rebuilding the library the way you did has moved files around then the restored library may have trouble finding things. If so post back and I'll explain what to do...
    tt2

  • Deleted Items Stay in Edit mode?

    When Adding Items to a portal, for instance an Image... and then I want to delete that image... I can delete it so the image no longer shows on the finished page, but the Item still shows in the Edit mode. How do I delete the Item so it no longer shows in Item mode

    Assuming that you are using 10g:<br><br>
    Yes, you can disable this feature. Click on Properties of the Page Group that you want to disable this feature. Go to the third tab Items.<br><br>
    On this tab you will see 2 options :<br>
    Retain Deleted Items <br>
    Display Unpublished, Expired, and Deleted Items In Edit Mode <br><br>
    Either enable or disable based on your preferences.

  • Create link to delete item (in non-edit mode)

    Hi there,
    I've been trying to create a portlet that displays items (titles + edit- and delete-links) and I got so far as to be able to create the edit-link and that seems to work. The edit link is as follows (p_news is an wwsbr_all_items%rowtype)
    htp.p('<a href="/portal/pls/portal/PORTAL.wwv_edit_tab.edititem?p_thingid='|| p_news.ID ||'&p_cornerid='||p_news.folder_id||'&p_siteid='||  p_news.caid||'&p_language=sf&p_looplink='|| p_link||'&p_itemtype=basetext&p_topicid=-1&p_topicsiteid=0&p_cornerlinkid=&p_parentid=0&p_currcornerid=&p_containerpageid='|| p_news.folder_id||'">Edit</a>');and after a lot of head scratching, I managed to create a delete link as follows:
    htp.p('<a href="/portal/pls/portal/PORTAL.wwpob_page_dialogs.delete_portlets_dlg?p_instance_list='|| p_news.caid||'_'|| (TO_NUMBER(p_news.id)-1)||'_'||  p_news.caid||'_'|| p_news.folder_id||'_'|| p_news.folder_id||'&p_in_edit_mode=1&p_back_url='||p_link||'&p_confirm_url='||p_link||'&p_mode=3">delete</a>');Now what really makes me wonder is this bit:
    p_instance_list='|| p_news.caid||'_'|| (TO_NUMBER(p_news.id)-1)||'_'||  p_news.caid||'_'|| p_news.folder_id||'_'|| p_news.folder_id||'&and specifically the
    (TO_NUMBER(p_news.id)-1)I mean, it works (unlike everything else i tried in the past few days). But can this be true? Can I use this unbelievanble hack-like "solution" in production? Is there a Oracle-approved way of creating delete-links programmatically (outside the html layout templates)?
    Rgds, stupefied in Finland
    Edit: gaaah, how do I get multiple rows of code and not one real long one..? >:(
    Edited by: Baguette on 05-May-2010 03:57

    The API calls are normally executed within scripts but you could obviously call them from a PL/SQL item as well.
    The API call works fine in 10.1.4.2. Did a simple test :
    <ol>
    <li>Create a page group called 'test'
    <li>Add two items of type base URL
    <li>Created a small anonymous block with the following code :
    DECLARE
      CURSOR c1 IS
        SELECT masterthingid,id,version,iscurrentversion,active,siteid,name
        FROM portal.wwv_things WHERE siteid = (SELECT id FROM portal.wwsbr_sites$
        WHERE name = '&PgName') and itemtype = 'baseurl' ORDER BY masterthingid ;
    BEGIN
      FOR c1_rec IN c1 LOOP
      dbms_output.put_line('Now deleting item '||c1_rec.name) ;
      portal.wwsbr_api.delete_item(
              p_master_item_id=>c1_rec.masterthingid
             ,p_caid=>c1_rec.siteid
             ,p_mode=>portal.wwsbr_api.DELETE_ITEM_DEFAULT
             ,p_version_number=>NULL) ;
      END LOOP ;
    EXCEPTION
         WHEN wwsbr_api.ITEM_ALREADY_DELETED THEN
           dbms_output.put_line('ITEM_ALREADY_DELETED');
         WHEN wwsbr_api.ITEM_ACTIVE_VERSION THEN
           dbms_output.put_line('ITEM_ACTIVE_VERSION');
         WHEN wwsbr_api.INVALID_VERSION_NUMBER THEN
           dbms_output.put_line('INVALID_VERSION_NUMBER');
         WHEN wwsbr_api.INVALID_MODE THEN
           dbms_output.put_line('INVALID_MODE');
         WHEN wwsbr_api.INVALID_CAID THEN
           dbms_output.put_line('INVALID_CAID');
         WHEN wwsbr_api.INVALID_ITEM_ID THEN
           dbms_output.put_line('INVALID_ITEM_ID ');
    END ;
    /<li>Ran this code.
    <li>Invalidated the web cache for the root page of test. The items were deleted
    </ol>
    Calling the API directly through your browser is tricky. I tried it and got the following error first :
    +10/05/07 11:57:16 portal: [module=RepositoryServlet, ecid=79740104487,1] ERROR: Repository Gateway error: Request Processing Error:+
    portal.wwsbr_api.delete_item: PROCEDURE DOESN'T EXIST
    This is normal as the procedure is executed by PORTAL_PUBIC. Granting execute privileges on wwsbr_api to public did not help. The error message changed to :
    +10/05/07 11:58:27 portal: [module=RepositoryServlet, ecid=79740176945,1] ERROR: Repository Gateway error: Database Error: ORA=6502 ORA-06502: PL/SQL: numeric or value error: character to number conversion error+
    ORA-06512: at line 31
    In this case, you probably need to wrap the wwsbr_api.delete_item() procedure into your own procedure and call this from your portlet.
    Hope this helps,
    EJ

  • ME_READ_PO_FOR_PRINTING - Deleted Items

    Hi,
    I am using the FM ME_READ_PO_FOR_PRINTING . If i pass 1 to cx_druvo , I am getting all the items displayed in my Form.
    But if an item is deleted, that item does not get read with cx_druvo = 1. For that I need to pass cx_druvo = 2.
    But with cx_druvo = 2 only the deleted / only the chage items come. I want to display all the items including the deleted one.
    How is this to be taken care of?
    Rahul

    keep one thing in mind.. the FM also depends upon whether the FM is getting executed from Screen(print preview) or from background(saving the PO)..
    So handle the Deleted items separately..
    BAPIPOgetdetail would give you all the items and ME_READ_CHANGES_EINKBELEG will give you the changes needed.

  • What is the "Other" category under storage and how can i delete items from this?

    My disc is almost full.  "About this Mac" says that I have 47 GB of "Other."  What is this Other and how can I delete items from this?

    For information about the Other category in the Storage display, see this support article.
    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
    iPhoto ▹ Empty Trash
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then reboot. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown asBackups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Reboot and it should go away.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) to explore the volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Deleting files inside an iPhoto or Aperture library will corrupt the library. Any changes to a photo library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install ODS in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The application window will open, eventually showing all files in all folders, sorted by size with the largest at the top. It may take a few minutes for ODS to finish scanning.
    I don't recommend that you make a habit of doing this. Don't delete anything while running ODS as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with ODS, quit it and also quit Terminal.

  • "SharePoint Designer cannot display the item" error when edit workflow

    Hi
    I create workflow for sharepoint list in version 2007. Then upgrade sharepoint form version 2007 to 2010. Now when I want to edit this workflow, get this error:
    “SharePoint Designer cannot display the item.
    What you can try:
    Click the Refresh button or press F5 to refresh the content from your site.
    Go back to the previous page
    Most likely causes:
    The file has been deleted from the site.
    The site is encountering problems.”
    What is the problem?
    Thanks.

    Hi,
    Have you used custom activity in your workflow? We may come across this issue when we use custom activity. A workaournd is to modify the Workflows XOML file, and remove custom activity reference from it. And restart your SharePoint designer. See below blog.
    http://saiabhilash.blogspot.com/2011/11/sharepoint-designer-cannot-display-item.html
    Or a quick workaround is recreate the workflow in SharePoint Designer 2010.
    Thanks & Regards,
    Emir
    Emir Liu
    TechNet Community Support

  • How To Get Deleted Item Count and Associated Item Count And LastLogOn and LogOff Time For A Mailbox In Exchange Using EWS

    Using Powershell cmdlet i get  all the details..But i want to get these Details by using EWS Managed Api.Is It Possible to do???
    Powershell Cmdlet,
    Get-MailboxStatistics -Identity Username, Using this cmdlets all the details will get displayed.
    DeletedItemCount:5 //Here how this count comes.In My OutlookWebApp the deleteditems folder contains 13 items in it..But the count shows only 5.
    TotalDeletedItemSize:5.465 Kb//Even this value too does not match with DeletedItems Folder size in owa.
    AssociatedItemCount:12
    LastLogOnTime:11/11/11 12:43PM
    LastLogOff Time:11/11/11 2:43PM
    In EWS,
    By Looping through all folders i can get the total item count and total item size.Even i can get deleteditems  count .But that value does not match  With the powershell value.Even the TotalDeletedItemSize
    Doesnt match.
    Using EWS Managed Api ,Looping through folders i can get ItemCount,TotalitemSize,(DeletedItems,TotalDeleteditemSize(These TwoValues Does not match with values comes from powershell))
    Now how to get the Associated item count and lastlogoff and logon time using EWS managed Api.Is it Possible???
    And even y the deleteditems count and size values varies between EWS and powershell.

    What happens if you execute the below code?
    Get-MailboxFolderStatistics [email protected] | where {$_.FolderPath -like "/Deleted Items"}
    Refer this blog. You may get some dice
    http://exchangepedia.com/blog/2008/09/configuring-deleted-item-retention.html
    Regards Chen V [MCTS SharePoint 2010]

  • Delete items not selected button

    hi,
    in miro, there is 1 refresh button at the bottom.
    when i create invoice with reference to PO, i need to click this button to make the miro display po line item amount and quantity. later i need to click deselect all button and select the line item that i want.
    may i know how to directly select the line that i want with amount and quantity displayed instead of do several steps as mentioned above.
    also, the button name is misleading. why it is called delete items not selected?
    thanks

    Hmmm -- to be totally confident not any item inside a given frame uses your color needs a lot of checks.
    Check this quite similar request:
    Spot color used in indesign document
    My comment was that to be sure you'd need to check, amongst others, every single character for either fill or stroke, table strokes and fills, paragraph rules, underline and strikeout ...

  • ON START UP IT TELLS ME THAT MY start up disc IS FULL - HOW DO I EITHER DELETE ITEMS - FFRAG ROM WHERE ?! - OR DE

    Hi
    On start up it tells me that my start up disc is full - how can i either find where to delete items from it - or can you defrag as you could in windows ? Help !

    For information about the Other category in the Storage display, see this support article.
    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
    iPhoto ▹ Empty Trash
    Then reboot. That will temporarily free up some space. Do the same in other applications, such as Aperture, that have an internal Trash feature.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation. You also need enough space left over to allow for growth of your data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    If you're using Time Machine to back up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of files you've recently deleted. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) to explore your volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Deleting files inside an iPhoto or Aperture library will corrupt the library. Any changes to a photo library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install ODS in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The application window will open, eventually showing all files in all folders, sorted by size with the largest at the top. It may take a few minutes for ODS to finish scanning your files.
    I don't recommend that you make a habit of doing this. Don't delete anything while running ODS as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with ODS, quit it and also quit Terminal.

  • My RAM is full. How can I delete items from RAM?

    RAM is nearly full on MacBook. How can I delete items from RAM?

    Nothing is stored permanently in RAM. I think you mean on your hard drive:
    If you really meant RAM then add more RAM. Otherwise,
    Freeing Up Space on The Hard Drive
      1. See Lion's 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.

  • How do I delete items from start up disk?

    My start up disk is almost full.  How do I delete items from it?

    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
    iPhoto ▹ Empty Trash
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then restart the computer. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) or GrandPerspective (GP) to explore the volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one. Note that ODS only works with OS X 10.8 or later. If you're running an older OS version, use GP.
    Deleting files inside an iPhoto or Aperture library will corrupt the library. Any changes to a photo library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS or GP can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install the app you downloaded in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the corresponding line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    sudo /Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The application window will open, eventually showing all files in all folders, sorted by size. It may take a few minutes for the app to finish scanning.
    I don't recommend that you make a habit of doing this. Don't delete anything as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with the app, quit it and also quit Terminal.

  • How do I delete items from menu bar  that are not part of the OS

    How do I delete items from menu bar  that are not part of the OS

    Perhaps you could be more specific, as it is a little difficult to answer your question without any details.  I can give you some general ideas though.
    On my machine there are a few applications that have installed items into the menu bar - I'm assuming you are talking about the icons on the right hand side of the top bar. To remove those items, I would generally need to uninstall the program that created them. To do this varies a little from application to application.
    Also, sometimes an application will have preferences that allow you choose if you want to display the item in the menu bar.
    So, my general advice would be that you need to identify the application that placed the item there, and remove it from your computer.  If there is an uninstall program for that application, I would run that in the first instance.
    If you don't actually wish to uninstall the application, you may need to click on the item or run the application and see if there is a setting to not show the menu bar item.
    Hope that helps.
    Ivan

Maybe you are looking for

  • EFI Update 2.0 won't install

    Every time I try to install the 2.0 EFI update the machine restarts, beeps, bongs, shows the firmware update screen briefly, restarts and bongs again, then goes into a cycle of doing this a couple more times before eventually giving up and booting. T

  • Do I need a power converter to run my Macbook pro in czech republic?

    It appears that i would not need one since power rting is 110-240mhz, but need to know for sure.

  • How do I transfer an album in iphoto from my imac to my iPad?

    I connected my iPad (iOS 7.0.2) to my imac (Mountain Lion, 10.8.5) via USB, which opened iTunes. But I can't figure out how to move a photo album from iphoto  on my imac to my ipad.

  • Can I buy a new power cable?

    My MacBook power cable is falling appart; the plastic is wearing away and it will only charge when it's positioned in certain ways. I was wondering if there was anyway I could buy a new power cable for my MacBook and how much it would cost. I would r

  • I need the Design Repository name in my Runtime repository query??????

    Hi, I want to execute a query on Runtime repository user. I need to know: Design Repository User (own of mapping execution error) , Mapping Name and Error Message. With this query I have the Mapping Name and Error Message. BUT HOW CAN I OBTAIN THE De