Email message redirect - purpose of this function??

I had always thought that the message redirect function in Mail was effectively a shortcut to start a new message with the identical body to a message already in my inbox.
As a result I've had quite a disaster. I customized some Apple stationery with Christmasy photos to send holiday greetings to some prospective employers whom I recently interviewed with. To avoid having to re-import the photos over and over, I BCC'd myself on the first email and used Message Redirect, then changed the greeting and recipient email for subsequent recipients.
HOWEVER, I've now discovered that the messages when delivered show the previous recipient in the TO: field for some reason. There was no indication that this would happen when the message was being drafted. This is mortifying because these employers likely know each other and now they know who else I've been interviewing with. WHY apple WHY?

Hi,
This Function module is used for (Extended program check for ABAP/4 programs).
This same same as the extended program check of the SE38 program.
Open any program in ABAP editor.
Goto program->check->extended program check.
Select the check boxes and execute. It displays all the error and warning of the selected crieteria. Now you can check all these error conditions. The FM is for achieving the same functionality
Regards,
Nagaraj

Similar Messages

  • Purpose of this function module?

    Hi Abapers,
    Please let me know the purpose of this function module.
    RH_START_EXCEL_WITH_DATA.
    regards,
    vijay

    Hi vijay,
    1. Suppose i want to show some data
       DIRECTLY IN EXCEL,
       from my internal table.
    2. Just copy paste in new program.
      (it will show data from T001 Table,
       directly into excel)
    3.
    report abc.
    data  : itab like table of t001 with header line.
    select * from t001 into CORRESPONDING FIELDS OF table itab.
    CALL FUNCTION 'RH_START_EXCEL_WITH_DATA'
      EXPORTING
        DATA_FILENAME       = '\ABCdd.XLS'
        DATA_TABLE          = ITAB[]
        WAIT                = 'X'
        DELETE_FILE         = 'X'
      EXCEPTIONS
        NO_BATCH            = 1
        EXCEL_NOT_INSTALLED = 2
        INTERNAL_ERROR      = 3
        CANCELLED           = 4
        DOWNLOAD_ERROR      = 5
        NO_AUTHORITY        = 6
        FILE_NOT_DELETED    = 7
        OTHERS              = 8.
    regards,
    amit m.

  • Error opening link to file from email message - Redirect Error

    Here is on example of this problem:
    I get an e-mail message with text with some links, when a click the text the browser opens and displays this message: Redirect Error
    On the PlayBook, I copied the hyper link from the text on the e-mail message and pasted it on a word document and this was the result:
    http://click.herbalifemail.com/?ju�2a16767364067b7c1575&ls�f911767765007b77157977&m�fa1676716306&l�9915787567057475&s�fe16707266027474157377&jb�cf14&t=
    Reading the same e-mail massage on my desktop PC I did the same thing and this was the result:
    http://click.herbalifemail.com/?ju=fe2a16767364067b7c1575&ls=fdf911767765007b77157977&m=fefa16767163...=
    On my desktop there is no problem and I’m redirected to the file but something is happening when a click that same link from de Playbook native mail.
    Thank you for your help.

    They appear to be different links. But I was able to open the pdf file. I was not able to understand it because it is not my native language but it was from herbalist.
    Be a Shepard and not an iSheep.

  • Purpose of this function module:HR_BEN_MAP_SELOPT_TO_DYNSEL

    Hi,
    I could see in many benefit standard programs using the function module HR_BEN_MAP_SELOPT_TO_DYNSEL. I just want to know purpose of this.
    This FM does not have any documentation to know what it is.
    Please share if you know why and how it works.
    Thanks,
    Ravi.

    Speaking as someone who happens to be named Michael Broughton ;), let me note that I did not depend on trying to parse the OWB runtime repository to determine the last run status for a given mapping. I used a set of our own tables that we use to audit various processes that run against our database.
    Similar to you, we had the notion of a master process and sub-processes. So, our load could be described as:
    Insert master process row with status "Started".
    For each mapping to execute:
    insert a sub-process row with status "started"
    if the last run of the master process ran to "COMPLETE", or the last run of this master process ran to "FAILED" but there is no row for this sub-process with status "COMPLETE", then we need to run the process. run it and update the sub-process row with the return status. If status <> OK, then update master process to status "FAILED" and exit.
    otherwise, If we determined that the mapping did not need to be executed, then update the sub-process row with status "COMPLETE"
    We put in the stubs for the processes whether we need to run them or not so that if the load fails multiple times, each run will contain the complete list of mappings that were completed.
    In point of fact, if you insert the stubs when skipping over mappings during a restart then you can condense the "do I need to run this time" logic to: Run allways unless the last master process run failed but this process succeeded.
    How you want to code that query will depend entirely on how you are saving your data.
    Hope this helps. I'd offer code snippets but I away from my work 'puter 'til next week.
    Mike

  • Using MS Word to edit email messages!  Is this even possible?

    I know this may sound a little weird, but I am a newer user of Macs and Mail. I was curious if there is a way to use my version of Word for Macs to edit my email messages. I liked using this feature with Outlook, but I have not figured out how to accomplish this with Mail.
    I want more than just Mail underlining my word if I mispelled it. I want it to auto correct or something. I would like Mail to also automatically capitalize the first word in a sentence if I fail to or miss it. I don't even know how to get bullet points to appear within email messages. I miss this feature with Mail, can someone help?
    iMac   Mac OS X (10.4.8)  

    Sure, just open up a new document from within MS Word and when you are ready, copy and paste the text into the body of an email message and send it. This takes about two seconds to do: Command-A to select all the text, then Command-C to copy, then Command-V to paste.
    As far as I know, there is no option to set up a different editor in Apple's Mail.app program; however, that option might be available in Entourage which comes with Microsoft Office 2004 for the Mac.

  • How to use this function call function 'REUSE_ALV_COMMENTARY_WRITE' in alv

    hi all
    thanks in advance
    how to use this function in alv programming
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    why use and what purpose use this function plz tell me details
    plz guide me
    thanks

    Hi
    see this exmaple code where i had inserted a LOGO by useing this FM
    *& Report  ZTEST_ALV_LOGO
    REPORT  ztest_alv_logo.
    TYPE-POOLS : slis.
    *ALV Formatting tables /structures
    DATA: gt_fieldcat TYPE slis_t_fieldcat_alv.
    DATA: gt_events   TYPE slis_t_event.
    DATA: gs_layout   TYPE slis_layout_alv.
    DATA: gt_page     TYPE slis_t_listheader.
    DATA: gs_page     TYPE slis_listheader.
    DATA: v_repid     LIKE sy-repid.
    *ALV Formatting work area
    DATA: w_fieldcat TYPE slis_fieldcat_alv.
    DATA: w_events   TYPE slis_alv_event.
    DATA: gt_bsid TYPE TABLE OF bsid WITH HEADER LINE.
    INITIALIZATION.
      PERFORM build_events.
      PERFORM build_page_header.
    START-OF-SELECTION.
    *perform build_comment.     "top_of_page - in initialization at present
      SELECT * FROM bsid INTO TABLE gt_bsid UP TO 10 ROWS.
    *perform populate_for_fm using '1' '3' 'BUKRS' '8' 'GT_BSID' 'Whee'.
    *USING = Row, Column, Field name, display length, table name, heading
    *OR
      PERFORM build_fieldcat.
      gs_layout-zebra = 'X'.
    *top of page event does not work without I_callback_program
      v_repid = sy-repid.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program                = v_repid
          i_structure_name                  = 'BSID'
       i_background_id                   = 'ALV_BACKGROUND'
          i_grid_title                      = 'This is the grid title'
      I_GRID_SETTINGS                   =
          is_layout                         = gs_layout
          it_fieldcat                       = gt_fieldcat[]
          it_events                         = gt_events[]
        TABLES
          t_outtab                          = gt_bsid.
    Form..............:  populate_for_fm
    Description.......:  Populates fields for function module used in ALV
    FORM populate_for_fm USING p_row
                               p_col
                               p_fieldname
                               p_len
                               p_table
                               p_desc.
      w_fieldcat-row_pos      = p_row.          "Row Position
      w_fieldcat-col_pos      = p_col.          "Column Position
      w_fieldcat-fieldname    = p_fieldname.    "Field name
      w_fieldcat-outputlen    = p_len.          "Column Lenth
      w_fieldcat-tabname      = p_table.        "Table name
      w_fieldcat-reptext_ddic = p_desc.         "Field Description
      w_fieldcat-input        = '1'.
      APPEND w_fieldcat TO gt_fieldcat.
      CLEAR w_fieldcat.
    ENDFORM.                    " populate_for_fm
    *&      Form  build_events
    FORM build_events.
      DATA: ls_event TYPE slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type = 0
        IMPORTING
          et_events   = gt_events.
      READ TABLE gt_events
                 WITH KEY name =  slis_ev_user_command
                 INTO ls_event.
      IF sy-subrc = 0.
        MOVE slis_ev_user_command TO ls_event-form.
        APPEND ls_event TO gt_events.
      ENDIF.
      READ TABLE gt_events
                 WITH KEY name =  slis_ev_top_of_page
                 INTO ls_event.
      IF sy-subrc = 0.
        MOVE slis_ev_top_of_page TO ls_event-form.
        APPEND ls_event TO gt_events.
      ENDIF.
    ENDFORM.                    " build_events
    *&      Form  USER_COMMAND
    When user command is called it uses 2 parameters. The itab
    passed to the ALV is in whatever order it currently is on screen.
    Therefore, you can read table itab index rs_selfield-tabindex to get
    all data from the table. You can also check r_ucomm and code
    accordingly.
    FORM user_command USING  r_ucomm     LIKE sy-ucomm
                             rs_selfield TYPE slis_selfield.
      READ TABLE gt_bsid INDEX rs_selfield-tabindex.
    error checking etc.
      SET PARAMETER ID 'KUN' FIELD gt_bsid-kunnr.
      CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.
    ENDFORM.                    "user_command
    *&      Form  top_of_page
    Your own company logo can go here if it has been saved (OAOR)
    If the logo is larger than the size of the headings in gt_page,
    the window will not show full logo and will have a scroll bar. Thus,
    it is a good idea to have a standard ALV header if you are going to
    use logos in your top of page.
    FORM top_of_page.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = gt_page
          i_logo             = 'ENJOYSAP_LOGO'.
    ENDFORM.                    "top_of_page
    *&      Form  build_fieldcat
    *Many and varied fields are available here. Have a look at documentation
    *for FM REUSE_ALV_LIST_DISPLAY and REUSE_ALV_FIELDCATALOG_MERGE
    FORM build_fieldcat.
      w_fieldcat-fieldname  = 'BUDAT'.
      w_fieldcat-seltext_m  = 'Dte pst'.
      w_fieldcat-ddictxt(1) = 'M'.
      w_fieldcat-edit = 'x'.
    Can change the position of fields if you do not want them in order
    of the DDIC or itab
    w_fieldcat-row_pos = '1'.
    w_fieldcat-col_pos = '10'.
      APPEND w_fieldcat TO gt_fieldcat.
      CLEAR w_fieldcat.
    ENDFORM.                    " build_fieldcat
    *&      Form  build_page_header
          gt_page is used in top of page (ALV subroutine - NOT event)
          *H = Header, S = Selection, A = Action
    FORM build_page_header.
    For Headers, Key is not printed and is irrelevant. Will not cause
    a syntax error, but is not used.
      gs_page-typ  = 'H'.
      gs_page-info = 'Header 1'.
      APPEND gs_page TO gt_page.
      gs_page-typ  = 'H'.
      gs_page-info = 'Header 2'.
      APPEND gs_page TO gt_page.
    For Selections, the Key is printed (bold). It can be anything up to 20
    bytes. It gets printed in order of code here, not by key value.
      gs_page-typ  = 'S'.
      gs_page-key  = 'And the winner is:'.
      gs_page-info = 'Selection 1'.
      APPEND gs_page TO gt_page.
      gs_page-typ  = 'S'.
      gs_page-key  = 'Runner up:'.
      gs_page-info = 'Selection 2'.
      APPEND gs_page TO gt_page.
    For Action, Key is also irrelevant.
      gs_page-typ  = 'A'.
      gs_page-info = 'Action goes here'.
      APPEND gs_page TO gt_page.
    ENDFORM.                    " build_page_header

  • "Redirection limit for this URL exceeded" can't open web page

    hi,
    I have portal 2005Q4 running with a gateway. I created a portlet based on the iframe provider. This portlet points to http://iisserver.
    iisserver is a server on our LAN. When you go to http://iisserver, it automatically redirects you to http://iisserver/auth/login.aspx. But when I use the iframe portlet to access this server, I get the following error message "Redirection limit for this URL exceeded. Unable to load the requested page. This may be caused by cookies that are blocked" and nothing shows up. Of course cookies are not blocked.
    So In the amconsole > service configuration > SRA config > gateway > URLs to which User Session Cookie is Forwarded, I added http://iisserver. Usually this solves this error message. But not today. So I replaced http://iisserver by http://iisserver/auth/. After this change I was able to see the redirection page but then the redirection failed with the same error message. And I still cannot see http://iisserver/auth/login.aspx in the portlet.
    I hope someone can help

    hi,
    I have portal 2005Q4 running with a gateway. I created a portlet based on the iframe provider. This portlet points to http://iisserver.
    iisserver is a server on our LAN. When you go to http://iisserver, it automatically redirects you to http://iisserver/auth/login.aspx. But when I use the iframe portlet to access this server, I get the following error message "Redirection limit for this URL exceeded. Unable to load the requested page. This may be caused by cookies that are blocked" and nothing shows up. Of course cookies are not blocked.
    So In the amconsole > service configuration > SRA config > gateway > URLs to which User Session Cookie is Forwarded, I added http://iisserver. Usually this solves this error message. But not today. So I replaced http://iisserver by http://iisserver/auth/. After this change I was able to see the redirection page but then the redirection failed with the same error message. And I still cannot see http://iisserver/auth/login.aspx in the portlet.
    I hope someone can help

  • TS4002 I cannot access my iCloud email messages before a certain date

    I can only acess my received email messages after April of this year - the rest won't load whether on my Mail desktop or via logging into iCloud on the internet.
    Does anyone know why this is and how to access my previous messages - I could access messages going back that much further, I have not changed my settins nor deleted the messages.
    PLEASE can some help - I desperately need to get hold of some of the email which I cannot access.
    Thankyou!

    At least I know I'm not alone.  I'm in the UK, five hours ahead of EST and that is about when it started.

  • When I first began using the Razr I could send email to groups that I had set up in my Google account.  I can no longer get this function to work.

    I can do this function on the PC using my Google Gmail account which accesses my personal email account. << Personal information removed to comply with Verizon Wireless Terms of Service >> I had been able at first to forward email go groups on my Droid Razr when away from my PC.
    Message was edited by: Verizon Moderator

    Have you by chance Cleared the Cache it might not hurt to Clear it and see if that Helps..

  • In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    Please don't post the same question multiple times!

  • I'm embarrassed to ask this: when I click to initiate a new email message in the "From" box it automatically chooses the wrong email address (I have three but use one mainly). How can I get the right choice to appear automatically?

    I'm embarassed to ask this: when I click on the new mail icon to write a new email message, in the box "FROM" appears the wrong email address: I have three but mainly use one. How can I correct this so that the right email address appears in the "FROM" box?

    I assume this is Apple Mail. Try this:
    Preferences > Accounts > your-first-account
    Select Outgoing Mail Server of account/name you wish to use and check Use only this server
    Repeat for other accounts.

  • I have different account ID's with my iphone and computer. I would like to standardise both to just the one. One of the ID's doesn't work, when I tried to list the second email with the preferred one a message telling me that this email is already in

    I have different account ID's with my iphone and computer.
    I would like to standardize both to just the one.
    One of the ID's doesn't work, when I tried to list this second email with the preferred one a message telling me that this email is already in use pops up.. yes it is, with me??
    Is there an easy to fix this please, Fabfitz

    If the email address you want to use is being used as the primary email address on a different ID you have to manage that ID and change it to a different primary email address.  This explains how: Change your Apple ID - Apple Support.
    If it is being used as an alternate or rescue address on a different ID, you manage the ID and either remove it or change it to a different email address.  This explains how: Manage your Apple ID primary, rescue, alternate, and notification email addresses - Apple Support.

  • TS3899 I recently discovered that I can no longer access websites pointed to within the content of an email message on my iPad Air by clicking on the highlighted HTML text or symbols. What should I do to correct this issue?

    I recently discovered that I can no longer access websites pointed to within the content of an email message on my iPad Air by clicking on the highlighted HTML text or symbols. What have I done to create, and what should I now do to correct, this issue?

    Or you could include a width to your body style:
    body {
    background-image: url(Logo/sky1.jpg);
    background-position: center center;
    background-attachment: fixed;
    width: 75%;}
    It might work or not depending on your other color scheme.

  • Email messages from my personal email account are being posted (copied) to SMS messages.  I have a new cell device, and this is happening on the new device also.  The copy/forward to SMS is NOT being initiated by my email provider.  How do I end this?

    Email messages from my personal email account are being posted (copied) to SMS messages.  I have a new cell device (swtched from Droid to iPhone) and this is happening on the new device also.  The copy/forward to SMS is NOT being initiated by my email provider, and not by Gmail.   How do I end ûVerizon's forwarding my personal email to SMS? 
    Thanks.

    Maybe I'm missing something but how can Verizon have control over your personal GMail account?  Sounds like you do have your email set up to forward to sms. 
    I have certain emails that are forwarded to me as SMS but that is an option that is enabled on the email side of things and is independent from Verizon.

  • Unable to open my email messages on Firefox? How do I fix this?

    I am not able to read my emails while I am in Firefox. This has happened about 8 days ago. I don't recall how this happened because I was able to use FF very well & never had any problems. I have been using Internet Explorer because most of my work has to be done on IE, the problem is that IE crashes too many times and its become very slow, I am just sick of it. I decided to use FF to read my emails & to do my PCH sweepstakes and play some games and maybe I would not get the screen crashing effect that I'm getting on IE. However, in order to get to do this I must open my email messages to proceed with the sweepstakes, but for some reason when I click on my messages nothing happens, they don't open up. How can this be repaird? I have even gone as far as deleting FF and re-downloading it again, but the problem still persists. I need help please!
    I made a copy of my email screen to place in the box below, but it is not allowing me to paste? I tried clicking on install but all I got was an error message that it could not open up this document because it needs to know the creator. I've tried to open with different programs but it just won't work. Can anyone please give me some assistance?

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

Maybe you are looking for

  • Issues while creating new user in SAP HANA

    Hello Team                    When i am trying to create a new user in SAP HANA studio i can see that there has been a new field added of DATA validity where there are two options  a) Valid From and b)Valid Unitl . No matter whatever dates i give in

  • Using Aperture to proof for the web

    Hi friends, I work with photos almost exclusively to publish on the web. I was hoping to use Aperture to speed up my workflow without taking every image through Photoshop. However, it appears to me that Aperture doesn't do much to successfully proof

  • Poplist items not enabled for creating new records

    In a multirow block where you can create a new record by clicking an item in an empty record, you can't click a poplist item: they are not enabled until a record is created. I's not a big deal but it makes the user experience somewhat inconsistent an

  • Pages '09 special characters showing up weird

    Hi, I am a new Mac user and i have found that in pages '09 some of the special characters are not displaying correctly, the main problems are with the mathematical x and y symbols, if I copy and paste the strange characters out of pages then they dis

  • Posting a full years worth but only display current date

    i am wondering how i go about posting my rss feed for the whole year but only allow itunes to read the current date? i understand from research that it takes the most current date and uses that as the first. but if i wanted to display September's 06