Long emails (like email digests) get truncated...

...when you "Get rest of message", the message scrolls to the top! How annoying!
Soooo...you have to scroll, scroll, scroll, scroll...down to where you were (if you can remember).
I REALLY wish Apple would change this behavior. When "rest of message" is downloaded, the screen should NEVER change its relative position.
Don

Hi paulcb,
Interesting, thanks for confirming. When I told an iPhone developer, he shook his head in disbelief. I'm sure this was a simple oversight. I submitted feedback at the URL you provided, and at the dev center. Hope it gets fixed soon.
Thanks for your help!
Don

Similar Messages

  • Long email address gets truncated with CL_BCS objects

    I've created a email method using objects from CL_BCS interface. It seems to work fine as long as the internet email address is less than 35 chracters. I get an express message if it exceeds beyond this number.
    Express message -
    The following status was received for the document <THIS IS TEST> sent by you to the recipient <"ABC 123-BASIS ONCALL%BigCompany"@BIG>:
    <No delivery to "ABC 123-BASIS ONCAL, invalid recipient address>.
    The full address I used was
    "ABC 123-Basis OnCall%BigCompany"@BigCompany.com
    method that is failing (I think) -
    recipient =
       cl_cam_address_bcs=>create_internet_address(
               eaddr-line ).
    this method calls the following FM  below and the person_data type ADDR3_VAL has truncated data in name_last and name_text....not sure if this affecting the process. I'm using type 'INT'.
         CALL FUNCTION 'ADDR_PERS_COMP_GET'
                   EXPORTING
                        ADDRESS_PERS_IN_COMP_SELECTION = SEARCH_FOR
                   IMPORTING
                        ADDRESS_PERS_IN_COMP_VALUE     = PERSON_DATA
                      ADDRESS_PERS_IN_COMP_INFO      =
                      RETURNCODE                     =
                      ADDRESS_PERS_IN_COMP_TEXT      =
                   TABLES
                        PERSON_GROUPS                  = GROUP
                      ERROR_TABLE                    =
                      VERSIONS                       =
                   EXCEPTIONS
                        PARAMETER_ERROR                = 1
                        PERSON_NOT_EXIST               = 2
                        VERSION_NOT_EXIST              = 3
                        ADDRESS_NOT_EXIST              = 4
                        INTERNAL_ERROR                 = 5
                        OTHERS                         = 6.
    Thank you for all you help!

    Hi SP...
    Unfortunately for the Flash mode (Settings --> Standard), it was not possible to make the text wrap. As Stephen suggested, the best way to do this is by setting the best possible box width. I tried a lot to play with this (you can try yourself) but it seems that there is some controller outside our control that is not allowing us to use text wrap. You can see more documentation on the Adobe Flex help site:
    [http://livedocs.adobe.com/flex/3/html/help.html?content=textcontrols_08.html|http://livedocs.adobe.com/flex/3/html/help.html?content=textcontrols_08.html]
    However, if your client is using HTML mode (Settings --> Basic), then you are able to do this by doing the following:
    in \Templates_SAP\sappositionchartdetailxsl.xsl:
    Line 119: change the class="OrgChartTitle" to class="OrgChartTitle2"
    Also, in \_Themes\orgChartTheme.css, find the OrgChartTitle, copy it and rename it into OrgChartTitle2. Then REMOVE the following 3 lines from OrgChartTitle2:
         text-overflow: ellipsis;     
         overflow:hidden;
         white-space:nowrap;
    This will work if your client is using HTML mode (Basic mode) only.
    Thank you -
    Best Regards,
    Nabil

  • Org Chart 3.0 : Email address gets truncated

    Hi,
    In position detailed view, the email address can only handle about 23 characters. Once it goes beyond that, the email gets truncated.
    I tested with employee name and position name, if these names are too long, it shows something like this: Coporate Sales Eur...
    The user knows it is too long. But in the email field, it just get truncated without the "..."
    Is this a bug?
    Thanks.

    Hi SP...
    Unfortunately for the Flash mode (Settings --> Standard), it was not possible to make the text wrap. As Stephen suggested, the best way to do this is by setting the best possible box width. I tried a lot to play with this (you can try yourself) but it seems that there is some controller outside our control that is not allowing us to use text wrap. You can see more documentation on the Adobe Flex help site:
    [http://livedocs.adobe.com/flex/3/html/help.html?content=textcontrols_08.html|http://livedocs.adobe.com/flex/3/html/help.html?content=textcontrols_08.html]
    However, if your client is using HTML mode (Settings --> Basic), then you are able to do this by doing the following:
    in \Templates_SAP\sappositionchartdetailxsl.xsl:
    Line 119: change the class="OrgChartTitle" to class="OrgChartTitle2"
    Also, in \_Themes\orgChartTheme.css, find the OrgChartTitle, copy it and rename it into OrgChartTitle2. Then REMOVE the following 3 lines from OrgChartTitle2:
         text-overflow: ellipsis;     
         overflow:hidden;
         white-space:nowrap;
    This will work if your client is using HTML mode (Basic mode) only.
    Thank you -
    Best Regards,
    Nabil

  • R3 to CRM direction - BDOC - Email address getting truncated on BP

    Hi,
    Customer details are being tranferred to CRM from R3 using BDOC.While doing so the Email address field is getting truncated to 40 Chars (if it is more than 40). This only happens when the Customer is changed in R3 and then BDOC is sent to CRM  (change in Email ID) , But when the customer is sent to CRM for the first time (new customer created), the Email ID is getting populated properly (no truncation).
    Can you please help me in the issue.
    Thanks in advance,
    Vivekanand

    Prasenjit,
    Your first two suggestions seem to work fine.  I know have a link that I think is raising an event.
    CASE iv_property.
      WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_event_link.
      WHEN if_bsp_wd_model_setter_getter=>fp_onclick.
          rv_value = 'toemail'.
    endcase .
    Here is my hardcoded event handler but it dumps with a  FRONTEND_ERROR  ( sy-subrc = 2 )
    method EH_ONTOEMAIL.
    * Added by wizard: Handler for event 'toemail'
    CALL FUNCTION 'CALL_BROWSER'
    EXPORTING
       URL                          = 'mailto:hardcodedemailaddress'
    *   WINDOW_NAME                  = ' '
    *   NEW_WINDOW                   = ' '
    *   BROWSER_TYPE                 =
    *   CONTEXTSTRING                =
    * EXCEPTIONS
    *   FRONTEND_NOT_SUPPORTED       = 1
    *   FRONTEND_ERROR               = 2
    *   PROG_NOT_FOUND               = 3
    *   NO_BATCH                     = 4
    *   UNSPECIFIED_ERROR            = 5
    *   OTHERS                       = 6
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endmethod.
    But when I call CALL_BROWSER through se37 it worls fine and brings up my outlook client.
    Any ideas ?

  • Email address getting truncated in SOST

    Hi,
    We have a vendor Whose email address is xxxxxxxxxxxxxxx
    And is recorded as such in their master record
    But when the remittance is forwarded to SAP Connect (SOST) the email address is shortened
    The email remittance is not being received by the vendor (and never has been).
    Please Help
    Thanks

    Hi
    So this problem started after SP's or this problem was there since beginning.
    Well I had similar or related  problem after support packs  on ECC6 and when upgraded to stack 12.
    We had an internal user called as "abc" responsible for the sending and recieving the mail out of SAP system and had the email address abc -  xxx.com.
    This user had an entry  under  TRNX SCOT-Inbound distribution  and this entry was also there.SAP suggested to create new recipient entry add the SID before domain name as abc-SID.xxx.com.So I had two entries for same user abc as
    abc - xxx.com and abc -SID.xxx.com
    And all our problems got resolved.I will definitely go back to  our OSS messages and check the solution SAP provided and update you if possible.
    Good Luck.
    Hope this helps
    Amit

  • Email  getting truncated in SOST

    Dear SRMer's,
    System Information : SRM4.0
    As part of the business requirement, our email address in SRM need to be a max length of 100 characters. When testing by creating a shopping cart and adding an approver with a 100 character length email,  in SOST, the email address is getting truncated to 40 characters and the following error message is displayed:
    "Cannot process message, no route from Sender XYZ  to Receipient ABC"
    Here is the long text of the error message:
    Cannot process message, no route from Sender XYZ  to receipient ABC
    Message no. XS826
    Diagnosis
    To continue processing, the system requires a valid route from sender XYZ  to recipient ABC (type INT).
    System response
    The action was terminated.
    Error occurred in R/3 in SAPconnect
    Procedure
    If this error was generated within R/3 by SAPconnect, you have the following options:
    Create a route (i.e. assign a suitable address area, which covers the above address, to a node).
    1. Check whether the route exists, but the node to which it is assigned is not in operation. If this is the case, change the route or put the node into operation.
    2. Change the recipient address if it has been entered incorrectly.
    If the error was detected outside of R/3, please read the operator's manual for your communication software or contact the manufacturer.
    Please let me know if any one encountered this problem before and has a solution for it, or do we need to open an OSS Note.
    Points will be rewarded for answers.
    Thanks in advance,
    Bob

    Hi
    Seems to be a bug.
    Note 888730 - Approval link in e-mail for offline approval is truncated
    Note 615876 - 3.0-4.0: Extension of the field for the e-mail address
    Note 595553 - Mail has the status 'Error', but was sent
    Note 86106 - SAPconnect: Faxing from application, error XS826
    Note 1031866 - RFx & Auction URL in bidder's email notification truncated
    Note 851090 - General Note: Enabling E-mail for use in Job Bid Management
    Note 176492 - Automatic email when an alert occurs (RZ20)
    Incase this does not help, please raise a customer OSS message with SAP as well.
    Regards
    - Atul

  • I can no longer click on a link in email and get re-directed

    as far as I'm aware I haven't changed any settings - but I used to able to click on any type of link that came over on email and get into the appropriate website. I can no longer do this and I don't know why - can anyone help?

    Go to Tools>options>tabs>check the "open new windows in tab"
    or ctrl+click on the link ( always worked )

  • Report output getting truncated in email attachment

    Hello Gurus,
    My requirement is to send a report output as an email attachment.
    I have done the coding for this but have a small problem. In the attachment the report is getting truncated after certain length.
    Can you advise wats the problem ?
    Regards,
    Suhas

    Hello Guys,
    I too was contemplating on those lines. But actually i was calculating the File Size incorrectly.
    Changed the code & now it working !!!!!!!
    BR,
    Suhas

  • HT4528 Typed long email..now it's gone. Can i get it back?

    I typed in a long email on my phone. I was trying to get rid of an extra space between words in the body of my email and then the whole text was gone. Can I get this back? I have not press send or cancel, but the body of the email is gone. Is there an undo that will bring it back?

    Try shaking your iPhone. This will bring up an Undo dialog with which you may be able to "undo" the last operation which deleted your text. If this doesn't work it's probably gone.

  • I am trying to forward certain email I get to my icloud email to another email address. I have added the unwanted senders email to rules and included where i would like the email to be forwarded

    I am trying to forward a certain email I get to my icloud email to another email address. I have added the unwanted senders email to rules and included where i would like the email to be forwarded, however it doens't seem to be working as i also added a second rule for testing purposes with my other hotmail account
    any help would be great

    new account are created without a password, so asking for it is normal.
    see http://thunderbirdtweaks.blogspot.com.au/2011/07/pssswords.html
    Compare the passwords Thunderbird has for the other accounts and see if using the same one is what you need to do.

  • HT5312 My rescue email address is no longer used, I can't get any emails from apple about my security questions. What shall I do?

    My rescue email address is no longer used, I can't get any emails from apple about my security questions. What shall I do?

    You need to ask Apple to reset your security questions; ways of contacting them include phoning AppleCare and asking for the Account Security team, clicking here and picking a method for your country, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (104597)

  • I made my apple Id a long time ago. I do not remember the answers to my security questions but when I send the questions to my email, they get sent to an old email that was deleted. How do I change the email they get sent to?

    I made my apple Id a long time ago. I do not remember the answers to my security questions but when I send the questions to my email, they get sent to an old email that was deleted. How do I change the email they get sent to?

    1. See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities.
    2. Here are two different but direct methods:
        a. Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
        b. Call Apple Support in your country: Customer Service: Contacting Apple for support
            and service.
    3. For other queries about Apple ID see Frequently asked questions about Apple ID.
    4. Rescue email address and how to reset Apple ID security questions
    5. For online assistance use Apple - Support - Express Lane

  • Spool Is getting truncated when sent as email attachment

    Hi All,
    We are sending the spool lists for overnight jobs as emails (outlook) to certain users. The problem we are facing is that when the spool is big then not all the pages are getting transferred in the attachment. The list gets truncated.
    Has anyone faced a similar problem and if there is a way around this. Maybe there is some parameter setting in SAP which has to be adjusted.
    Pl advice.
    Thanks

    Hi
    I faced the same problem because in standard SAP dimensions of attachement is hard coded.
    Regards
    Aditya

  • I can no long tap at the top of my emails to get to the first one.

    Why can't I tap to the top of my email to get tot he first one?

    If you customized your toolbars in an earlier version, the installer might have left you with the classic menu bar rather than the new abbreviated menus.
    To switch, use View menu > Toolbars > Menu Bar
    Once you have the orange Firefox button, you can tap the Alt key or press F10 to display the classic menu bar temporarily.

  • How to get a LONG email to print all pages, not just page 1

    For a long email (one that SHOULD print out to 2+ pages)
    and When going to the print preview window...ONLY page 1 shows, and only page 1 prints.
    The process of changing the Per Cent to a font that is unreadable SOMETIMES will put the entire email on that ONE PAGE
    But, That is unacceptable.
    Also, can I REMOVE that information on the left so it does NOT print out (I E. the Outlook bar with "inbox" / "Sent" "Drafts" etc, and ALL file names.
    Also...are people receiving our emails,...seeing THOSE "FILES" on the left?

    THANK YOU THANK YOU!!!!
    2 weeks of agonizing over bad printouts just changed over to Outlook
    Never checked out the 3 little dots, before!!!!

Maybe you are looking for