*** Priority list for TOP-2 Bugs - and TOP-3 feature requests ***

I'm more a business type of user - and I want to share my main problems/bug with this community in the hope that the WebOS developers read this...These bugs are so obvious and I am really wondering why these haven't been fixed immediately... BUGS: 1. Email: Delete of IMAP emails doesn't work: Each time I wipe out an email in an IMAP folder, it immediately comes back with the next email sync (which is pre-set "when new email arrives" - which happens in the day time every couple of minutes. PLEASE handle this like all the general behaviour: when wiping out then ask delete or cancel. And after deleting, move to the deleted folder. I am using the German no. 1 IMAP email service GMX (it's free), but I'm sure this happens with other email services as well. 2. PDF reader: delete of PDF files doesn't work: It was working in Version 1.3.1 - but since then it's not working anymore. I use the PDF reader, so I want to delete files from the file list by wiping out! FEATURE REQUESTS: 1. Sync of Memo with Exchange: we are waiting! Calendar, addresses and tasks are working - only missing part is memos! Do it! 2. handling address categories: I work for years with categories (no other way with over 1000 addresses) - so I need to handle categories. Just put this (Exchange-synced) field into the address and introduce a view filter in the menu. Then I can easily find addresses, like 'NYC restaurants' 3. Full text search in addresses and calendar entries: I have to search in the memo/notice field of calendar entries and addresses. This search may take longer of course, but no problem. Hi WebOS developers: feed-back welcome!!!!

Hello and welcome to the forums;
I created a GMX account myself, to see if the issue could be with your provider specifically. Used automatic setup for the email address, and the Pre automatically recognized as IMAP. I then sent several test messages to the new gmx account from my gmail account, and after each one arrived I deleted it by swiping off from the inbox. When the new email arrived, the old previously deleted email was not in the inbox, but still in the deleted items folder where it should be.
However on the web portal for the GMX account, I saw the "original" unread email in the trash, along with a "copy" in the inbox. This seems to be a design setting for the provider, but it did not mean I kept getting deleted emails back in my inbox. Have you checked the account settings on your Pre to make sure the account is set as IMAP and not POP? If the email was set as POP by accident, that could explain why your email folders are not synchronizing.
For the PDF viewer, you are correct that you cannot delete PDF files from the view list, and unfortunately I don't have access to a 1.3.1 device to see if it was possible then. At this time, managing PDF files is best done by connecting your Pre via USB to a computer and manually deleting files there.
To suggest the ability to delete PDFs on device and other changes, we have a feedback portal at www.palm.com/feedback which is a direct link to our developers.
Life moves fast. Don't miss a thing.
TreoAide

Similar Messages

  • HT201210 had an update for a facetime bug and after clicking the update my phone locked up with icone to plug phone into itunes.  I tried to reinstall but had no luck

    had an update for a facetime bug and after clicking the update my phone locked up with an icone to plug phone into itunes.  I tried to reinstall but no luck

    You would want to follow this link to help with this issue
    http://support.apple.com/kb/HT1808

  • Is the Nightly 12.0a1 64 bit icon in the start menu for Windows 7 supposed to have a jump list for frequent pages visited and tasks (open new tab, open new window, enter private browsing)?

    Both my standard Firefox icon and Waterfox icon have jump lists in the start menu and taskbar. Even the pinned Nightly icon in the taskbar shows this, but it doesn't show in the start menu. Just odd to see that the icon in the start menu doesn't offer this feature considering it does in the taskbar. I've reinstalled several times but it doesn't seem to change anything.

    There are hidden settings that control the display of jump lists, check these to make sure that they have been enabled.
    Type '''about:config''' into the location bar and press enter, accept the warning message, and a list of preferences will be displayed.
    In the search box at the top type '''taskbar.lists''', it will then display a small number of preferences. Check the values of the following preferences (you can double-click on them to change the value)
    * '''browser.taskbar.lists.enabled''' - should be set to true to enable jump lists
    * '''browser.taskbar.lists.frequent.enabled''' - set to true to have the frequent sites displayed
    * '''browser.taskbar.lists.tasks.enabled''' - set to true to have the tasks displayed
    * '''browser.taskbar.lists.recent.enabled''' - set to true to have the recent sites displayed
    By default the first 3 settings are true, the last is false.

  • Drop down list for User ID's and SAP List viewer format

    Couple of quick questions. Any help will be greatly appreciated.
    1) I need to put User ID on the selection criteria screen. And also, I need to build a dropdown list for user ID selection by finding all user IDs in the Finance department and put it on the list.
    2) I need to display the report in the SAP List viewer format, which enable these functions including sorting, hiding fields, filtering, exporting to an excel file as necessary. My output is currently plain vanilla as follows
    loop at ibkpf where belnr = ibseg-belnr.
           read table iskat with key saknr = ibseg-hkont.
           read table icepct with key prctr = ibseg-prctr.
           read table icskt with key kostl = ibseg-kostl.
           write:/
           iBKPF-BELNR,     " Accounting document number
           iBKPF-BUKRS,    " Company code
           iBKPF-GJAHR,     " Fiscal Year Range
           iBKPF-MONAT,     " Period
           iBKPF-USNAM,     " Username
           iBSEG-BELNR,      "Document #
           iBSEG-BUZEI,      "Item #
           iBSEG-BSCHL,      "Posting Key
           iBSEG-SHKZG,      "Debit/credit indicator
           iBSEG-PRCTR,      "Profit Center
           icepct-ktext,
           iBSEG-KOSTL,      "Cost Center
           icskt-ltext,
           iBSEG-HKONT,      "G/L Account
           iskat-TXT20,
           iBSEG-DMBTR,      "Local currency
           iBSEG-WRBTR,      "Document currency
           iBSEG-SGTXT,      "Explanation
           iBSEG-KOART.      "Account type

    Hello Syed
    Here is a sample coding for a dropdown listbox:
    *& Report  ZUS_SDN_DROPDOWN_LIST
    REPORT  zus_sdn_dropdown_list.
    TYPE-POOLS: vrm. " Value Request Manager: Typen und Konstanten
    DATA:
      gt_values   TYPE vrm_values.
    PARAMETERS:
      p_usrid    TYPE xubname AS LISTBOX VISIBLE LENGTH 13.
    INITIALIZATION.
    * Select the allowed values for dropdown listbox
      SELECT bname AS key FROM  usr02 INTO TABLE gt_values
             WHERE  bname  LIKE 'S%'.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = 'P_USRID'
          values          = gt_values
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    START-OF-SELECTION.
    END-OF-SELECTION.
    You have two fields for the listbox available:
    - KEY (obligatory)
    - TEXT (optional)
    Regards
      Uwe

  • BAPI to get all user lists for input object,authorizations, and profiles

    Hi Experts,
    BAPI to get all user lists for input specific object, authorizations, profiles and values?
    Any useful answer will be rewarded with suitable points.
    Thanks,
    Rohan

    Hi
    use the fun module/Bapi's
    BAPI_USER_GET_DETAIL
    BAPI_USER_LOCPROFILES_ASSIGN
    BAPI_USER_LOCPROFILES_DELETE
    BAPI_USER_LOCPROFILES_READ
    BAPI_USER_PROFILES_ASSIGN
    BAPI_USER_PROFILES_DELETE
    SUSR_BAPI_USER_PROFILES_ASSIGN
    SUSR_BAPI_USER_PROFILES_DELETE
    also you can use the tables UST12 for user based authorizations
    AGR_USERS   -roles assignment for users
    AGR_PROF  - Profile data for roles
    AGR_DEFINE - Auth Profiles for users
    See the AGR_* and US* tables further
    Reward points if useful
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • Location Manager and Time Zones Feature Request

    I use my Powerbook for consulting - and travel extensively.
    Location Manager handles my network setups, but, to the best of my knowledge, NOT the time zone information.
    I'd like to have the option to set the time zone from my location manager, so that when I get to a customer site, and attach to the network, files, iCal, Mail, and other timestamped files are correctly in sync with the location.
    I could probably write an automator script to do this, but it would be best supported directly in Location Manager.

    Hi, Kirk. Welcome to the Discussions.
    For Mac OS X feature requests, submit a Mac OS X Feedback. These Discussions are user-to-user communications only. Feedback is the formal mechanism for submitting feature requests.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • -NEED HELP- iOS 6.1.2 in Calendar App for Adding Events BUG (And Spelled Incorrectly: Invitees)

    Dear Everyone, When I just add the events, I type the name and location, adjusting the time start and end, when I sliding up it looks like for spelled incorrectly: Invitees (Invites), and need bug fixes. I already feedback iPod Touch Team from my computer. I know Apple will fix it. Thanks, 1004blueAppleSupportCommunties (1004blueAppleSupportCommunities)

    "Invitee" means an invited Person. This is the section where you list your "Invitees." It's not a bug, nor a spelling error. It's 100% correct as it is.

  • Firefox - the awesomebar seems to have two lists for in-line autocomplete and suggestions

    Well, basically my problem is that the list of sites that autocomplete works for seems to be significantly more exclusive than that of the suggestions.
    In particular, autocomplete will only offer sites in my recent history. Any bookmarks (and possibly older history) never appear, even though they do appear in the suggested sites list.
    Normally, this isn't a big deal, but I find site suggestions to be a bit irritating, so I have browser.urlbar.maxRichResults set to zero so it never appears, but I keep autocomplete enabled. So, the only suggestions I ever get are from my history.
    Is there a way to allow the autocomplete access to my bookmarks as well?

    There is a setting in Options for whether the autocomplete shows history, bookmarks or both. That's covered in this article: [[Awesome Bar - Find your bookmarks, history and tabs when you type in the address bar]] ("How can I control what results the location bar shows me?" section).
    That article also covers the preference to turn the in-URL-bar autofill feature off or back on (browser.urlbar.autoFill). That may or may not include bookmarks, but I think it prefers URL matches so might not be efficient depending on how you use the bar.
    Is any of that relevant?

  • Links to PPRO bugfix list for cs 6.01 and 6.03 please

    hello,  i may be moving to CS6 production premium this week
    i'm doing lots of research
    can someone supply links to the bugfix lists/ release notes for the ppro updates so far in cs6 6.01 and 6.02
    all i get from adobe website is 'sorry page not available'
    and any quick explanation as to why no 6.02 update?
    (i've been out of the loop lately)
    thanks in advance, j

    http://www.adobe.com/support/downloads/product.jsp?product=98&platform=Windows
    or
    http://www.adobe.com/support/downloads/product.jsp?product=98&platform=Macintosh
    When I clicked 6.02 for Mac, it lead to a page with a link that worked to discuss fixes

  • Need authorisation list for BW modelling ,extraction and reporting

    Hi all gurus,
    I am about to work in an BI implementation project and I need a list of Authorizations that I have to submitt to the basis people.
    Can anyone help me out with this.
    Thanks in advance,
    VM.

    Hi,
    Please go through  the links below.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ded59342-0a01-0010-da92-f6b72d98f144
    http://help.sap.com/saphelp_nw04s/helpdata/en/26/fd8b41b5b3b45fe10000000a1550b0/content.htm
    http://help.sap.com/saphelp_bw33/helpdata/en/80/1a6859e07211d2acb80000e829fbfe/content.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/authorisations%2bfaq
    /people/kristoffer.engh2/blog/2007/04/03/roles-and-authorizations
    http://help.sap.com/saphelp_bw32/helpdata/en/80/1a682de07211d2acb80000e829fbfe/frameset.htm
    Regards.

  • Bugs and Missing (Removed) Features in "Edit Bookmarks" in Safari 6.1

    With the bookmark changes of Safari 6.1 , when you drag a bookmark into a bookmark folder in Safari's "Edit Bookmarks" mode, the display suddenly and uncontrollably  bounces back to the top of the bookmark list,  losing your place.  This makes it impossible to resume editing your collection without scrolling down any extensive list of bookmark folders and subfolders to pick up where you left off.
    The "Edit Bookmarks" mode has also taken away the ability to view and edit your bookmarks in a sort of column view.   Before, when editing bookmarks, you could click on a bookmarks folder in pane to the left, and the sub-folders and/or bookmarks for that specific bookmark folder would display inn a list in the main window.  Removing this ability again forces ridiculous amounts of scrolling to organize extensive collections of bookmarks and bookmark subfolders.
    I use bookmark folders and subfolders extensively and constantly to organize research.  These present a a big and annoying problem for me.
    Does anyone have a solution I'm missing?
    I've reported these at http://www.apple.com/feedback/safari.html

    The problem continues with the updated Safari 6.1.1 .  Anyone have any new information?
    To recap:
    When you drag a bookmark into a bookmark folder in Safari's "Edit Bookmarks" mode, the display suddenly and uncontrollably  bounces back to the top of the bookmark list,  losing your place.  This makes it impossible to resume editing your collection without scrolling down any extensive list of bookmark folders and subfolders to pick up where you left off.
    The "Edit Bookmarks" mode has also taken away the ability to view and edit your bookmarks in a sort of column view.   Before, when editing bookmarks, you could click on a bookmarks folder in pane to the left, and the sub-folders and/or bookmarks for that specific bookmark folder would display inn a list in the main window.  Removing this ability again forces ridiculous amounts of scrolling to organize extensive collections of bookmarks and bookmark subfolders.
    I use bookmark folders and subfolders extensively and constantly to organize research.  These present a a big and annoying problem for me.
    Does anyone have a solution I'm missing?
    I've reported these at http://www.apple.com/feedback/safari.html

  • Source() for sourceforge ... a kind of feature-request ...

    while building some packages and rebuilding existing ones and trying to make new ones i realized something that can be enhanced in this process:
    e.g. you want to build kguitar as a package:
    you can find the project page at sourceforge
    http://sourceforge.net/projects/kguitar/
    and the download-url is ... hmm sourceforge has a lot of mirrors, but not all have all things always available ... this is why sometimes a package in incoming doesnt want to build imediately (you must change the sourceforge-mirror in PKGBUILD)
    ok, let's go by hand to sourceforge and click the file you want ... you get this url:
    http://prdownloads.sourceforge.net/kgui … 2?download
    and exactly this is the url for the source() in the PKGBUILD in general --- you must only change instead of "prdownloads" you must put a mirror-prefix like "switch.dl" (and remove the "download" variable from the url, that's clear)
    MY IDEA:
    what about having a variable for all packages from sourceforge that generates a prefix of a mirror for sourceforge, so that you can say simply in PKGBUILD
    source(http://$sfmirror/$pkgname/...)
    and if the download fails with this mirror, makepkg can have a fallback to change $sfmirror to the next mirror
    the mirrors i found out till now are:
    twtelecom.dl.sourceforge.net
    cesnet.dl.sourceforge.net
    heanet.dl.sourceforge.net
    keihanna.dl.sourceforge.net
    unc.dl.sourceforge.net
    aleron.dl.sourceforge.net
    umn.dl.sourceforge.net
    belnet.dl.sourceforge.net
    switch.dl.sourceforge.net
    -> this would help building packages from sourceforge

    mgushee wrote:
    Re: sarah31's post:
    You mean umn.dl.sourceforge.net?
    · Just because it has always worked in the past, you can't assume it will always work in the future. The University of Minnesota could decide, tomorrow, for their own political reasons, to cut off funding for Linux archives. Or they could move the stuff to a different host without warning anyone. I've seen it happen many times.
    uh no look at the date of that post. at that time i was still maintaining packages for arch. four months later i was not using arch at all. somewhere between january this year and now i told Xentac/Jason how it was handled with that other distro i used after arch. i suppose he mever bothered to pass it on. .....
    · For me, umn does not always work. Maybe I download weird software ...
    If you meant something else, could you please explain (or if your solution is documented somewhere, feel free to just point to the URL)?
    so why should i bother now? if you search my posts from earlier this year you will know what distro i used before coming back to arch. ..... but i will give you a hint .... your "gift" is in the "CLC".

  • Email notification of bugs and hotfixes?

    Is there a Sun mailing list for directory related bugs and hotfixes? I have uncovered bugs before only to discover Sun already has a hotfix. Save me a lot of time if Sun had just notified me.

    Actually I find code examples for LDAP readily available and the documentation that goes along with the product very good. The issue here is that a bug list is not available, not that the products support is bad.
    In addition if your sole purpose here is to recommend switching to another product then I suggest you would be better off on another forum. This forum is to provide support for people with problems and questions, not to drum up support for other products.

  • PRIORITY LIST - SAN DIEGO

    Please post when and where you were placed on the store priority list for the iPhone 4, and if you have received a pickup email yet. Trying to get an idea here
    Otay Ranch, San Diego, CA
    Priority list: 7/6/2010
    Moving up the list: ?
    Pickup e-mail: Waiting....

    Please delete one of your posts.

  • What is Current, New, Parent and Top in Click Box for Open URL or File?

    Hi,
    I would like to know what is the definition for Current, New, Parent and Top options in the click box parameter if I want to open a file?
    Regards,
    Jac

    Hi there
    The only way I can fathom that happening would be if you had a hidden slide with a Click Box on it that was already configured. Then you would copy the Click Box object and paste it where you want it.
    Other than that, sorry but the answer is that you can't.
    You might wish to suggest this as an option that Captivate would offer. You would do this by filling out the Wish Form. (Link is in my sig line)
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

Maybe you are looking for