Move addressee from "CC" to "To" field?

Here's the scenario: If I send someone an email and I'd like to reply back to the email string with further information I'll go into my "Sent" folder and reply all to the email. This will put my email address in the "To" line and the others in the "CC" line. I don't see any way to move or cut and copy the addressee's from the "CC" to the "To" line.
Any way to do this?

No, not a "send again" command. It's a "reply to all" command that I'd like but instead of re-typing everyone's email address from the "Cc" line to the "To" line (which can be quite tedious if you have a decent size email list) I'd like to cut and paste.
Everyone follow along with a little science experiment so it's clear what I'm trying to do.
Go to your sent mailbox. Find any message and imagine you forgot to include something in that email. If you choose "reply to all" it will bring up a new email with the email history below. Instead of having the addressee(s) in the "To" line they will be in the "Cc" line.

Similar Messages

  • Is there a way to actaully talk to someone at apple whereby it doesn't cost money? I downloaded an app and now the stupid phone says that there is compass interference and to move away from the interference. Well, I am in the middle of a field. Now what?

    Is there actually a way to talk to a service person at Apple where you don't have to shell out money? I downloaded an app that cost $9.99 and when I tried to use it I get a message that says there is compass interference and to move away from the interference or wave the phone in a figure 8 pattern. Well, now I have a sore arm from constant waving out in the middle of a field and it appears that is going to cost $29 to talk to a person. Does anyone have any idea why this is occuring? As a side note, I can use a normal compass with no issues so it is the phone. From a customer perspective, this is poor customer service.

    First of all, an idle threat is one that a person has no intention of carrying out. In the past 16 months that I have had this phone I have become less and less satisfied and found that it is like much of today's technology....over rated and under performing. The one thing that I have never been accused of is not wanting, or not giving help but when a company makes itself unavailable to resolve issues and leaves it to forums run by users helping users, it speaks more about the company than anything else they could do. As I said, I do not make idle threats and I did not threaten you in any way. Guess I'll call this topic done with as it is not and was not the intent to get a war started    

  • Move data from multiple Tables to a Single Table & Convert the list to ALV.

    Hi,
    My aim is to get the list of Materials with their descriptions, with MRP Controller, with Unrestriced Qty. & the Reorder Qty. So, I have to fetch the data from different tables. But finally I am not able to copy or move the fetched data from multiple tables into the single final table.
    Also tell me how to convert this list into ALV.
    Below is the program code.
    *& Report  Y_REORDER_REPORT
    REPORT  Y_REORDER_REPORT.
    tables : marc,makt, mard.
    DATA: Begin of i_final occurs 0,
            matnr type marc-matnr,
            maktx type makt-maktx,
            DISPO type marc-DISPO,
            MINBE type marc-MINBE,
            LABST type mard-LABST,
          end of i_final.
    DATA: Begin of i_marc occurs 0,
           matnr type marc-matnr,
           DISPO type marc-DISPO,
           MINBE type marc-MINBE,
          end of i_marc.
    DATA: Begin of i_makt occurs 0,
           matnr type makt-matnr,
           maktx type makt-maktx,
          end of i_makt.
    DATA: Begin of i_mard occurs 0,
           matnr type mard-matnr,
           LABST type mard-LABST,
           LGORT TYPE MARD-LGORT,
          end of i_mard.
    SELECT  matnr
            dispo
            minbe from marc
            into corresponding fields of table i_marc
            where dispo EQ 'STR'.
    SORT I_MARC by MATNR.
    WRITE: /10  'Material',
            75  'MRP',
            80  'Reorder Qty.'.
    LOOP at i_marc.
    Write: /10  i_marc-matnr,
            75  i_marc-dispo,
            80  i_marc-minbe.
    ENDLOOP.
    write: /.
    SELECT  matnr
            MAKTX from makt
            into corresponding fields of table i_makt
            for all entries in i_marc
            where matnr = i_marc-matnr.
    LOOP at i_makt.
    Write: /10 i_makt-matnr,
            30 i_makt-maktx.
    ENDLOOP.
    SELECT  matnr
            LGORT
            LABST from mard
            into corresponding fields of table i_mard
            for all entries in i_marc
            where matnr = i_marc-matnr.
    LOOP at i_mard.
    Write: /10 i_mard-matnr,
            30 I_MARD-LGORT,
            40 i_mard-labst.
    ENDLOOP.
    move  i_mard-matnr to i_final-matnr.
    move  i_marc-dispo to i_final-dispo.
    move  i_marc-minbe to i_final-minbe.
    move  i_makt-maktx to i_final-maktx.
    move  i_mard-labst to i_final-labst.
    WRITE: /10  'Material',
            30  'Material Desc.',
            75  'MRP',
            80  'Reorder Qty.',
            105 'Current Stock'.
    LOOP at i_final.
    Write: /10  i_final-matnr,
            30  i_final-maktx,
            75  i_final-dispo,
            80  i_final-minbe,
            105 i_final-labst.
    ENDLOOP.
    *LOOP at i_mard.
    *Write: /10  i_mard-matnr,
           30  i_makt-maktx,
           75  i_marc-dispo,
           80  i_marc-minbe,
           105 i_mard-labst.
    *ENDLOOP.
    Regards,
    Vishal

    Change like this,
    SELECT matnr
    lgort
    labst FROM mard
    INTO CORRESPONDING FIELDS OF TABLE i_mard
    FOR ALL ENTRIES IN i_marc
    WHERE matnr = i_marc-matnr.
    LOOP AT i_mard.
       WRITE: /10 i_mard-matnr,
       30 i_mard-lgort,
       40 i_mard-labst.
    ENDLOOP.
    LOOP AT i_marc.
       READ TABLE i_mard WITH KEY matnr =  i_marc-matnr.
       READ TABLE i_makt WITH KEY matnr =  i_marc-matnr.
       MOVE i_mard-matnr TO i_final-matnr.
       MOVE i_marc-dispo TO i_final-dispo.
       MOVE i_marc-minbe TO i_final-minbe.
       MOVE i_makt-maktx TO i_final-maktx.
       MOVE i_mard-labst TO i_final-labst.
       APPEND i_final.
    ENDLOOP.
    WRITE: /10 'Material',
    30 'Material Desc.',
    75 'MRP',
    80 'Reorder Qty.',
    105 'Current Stock'.

  • Move data from one fs to another from a particular position.

    Hi all,
    i have a requirement where i want to move data from one field symbol to another from a particular
    position.
    I have a work area which contains string values. i have converted this string to hexadecimal value .
    in this hex string m lukin for a position where '0A' occurs. Now i have to pick the string till dis '0A' value and move it to some other field symbol. Can anybody tell me how to do that.
    The code i have written is as follows:
      FIELD-SYMBOLS: <fs> TYPE x.
                 data: temp1 type string,
                       p_word type string,
                       temp2 TYPE string,
                       w_len TYPE i.
                       temp1 = wa_value-value. "this wa containd the value
                       w_len = strlen( temp1 ).
             if temp1 cp '"*'.
               ASSIGN wa_value-value TO <fs> CASTING TYPE x.  " converting wa to hex value
                  DATA: VAR TYPE i,
                        COUNTER TYPE i,
                        line_feed_count type i,
                        temp_count type i.
             VAR = strlen( wa_value-value ).
             CLEAR: COUNTER, temp_count, line_feed_count.
               WHILE COUNTER LE VAR.
                IF <fs>+counter(1) = '0A'.
                line_feed_count = line_feed_count + 1.
                COUNTer = COUNTer + 1.
                ENDIF.
                COUNTER = COUNTER + 1.
               ENDWHILE.
            endif.
    Now , i want to pick data from starting till the position it gets '0A' and then again till it finds another '0A'.
    Thanks in advance.

    Hi,
    As everyone has rightly pointed out, there is no direct way of transferring the data from one appset to another. However, there are definitely few ways of doing it:
    1. Run export package. Export the data in flat file. Import the data using import DM package.
    2. Export the data from the cube of your application in excel file. Then run the import DM package to load the data.
    3. Run UJBR transaction in SAP. Take the backup of the transactional data. You will get few flat files. Run the import DM package.
    All the above steps will work only if the structure of the applications in both the appsets is the same. Otherwise, you will have to modify the flat file before uploading the file.
    Hope this helps.

  • Move data from one member to another existing member

    Can someone please advise how I can move data from one member to another existing member?  For example, I have data in member ID MT_160 and I want to move this data over to an existing member MT_130 as per business requirement.  How can I accomplish this?  I tried using the NEWID field but system complained that the new ID must be Unique, which makes sense.  I'm stuck now.  Any Ideas?  I'm using BPC version 5.0 on Microsoft.
    Thanks.

    David,
      one  of  the  ways  you  can  achieve  the  desired  result  is  Via  BPC  Excel
    1) from  menu Edata--> RUn  Package --> copy/Move .  OR
    2) You  an  write  Script  logic  to  Copy/Move  data.
    Hope this  helps..

  • ABAP Function Module Example to move data from one Cube into Another

    Hi experts,
    Can any please help out in this ..?
    A Simple ABAP Function Module Example to move data from one Cube into Another Cube
    (How do i send the data from one client to another client using Function moduel).
    Thanks
    -Upen.
    Moderator message: too vague, help not possible, please describe problems in all technical detail when posting again, BI related? ("cube"), also search for information before asking.
    Edited by: Thomas Zloch on Oct 29, 2010 1:19 PM

    This is the start routine to duplicate records in two currencies.
    DATA: datew   TYPE /bi0/oidateto,
          datew2  TYPE rsgeneral-chavl,
          fweek   TYPE rsgeneral-chavl,
          prodhier TYPE /bi0/oiprod_hier,
          market  TYPE /bic/oima_seg,
          segment TYPE /bic/oizsegment.
    DATA: BEGIN OF S_DATA_PACK OCCURS 0.
            INCLUDE STRUCTURE /BIC/CS8ZSDREV.
    DATA: END OF S_DATA_PACK.
    S_DATA_PACK[] = DATA_PACKAGE[].
      REFRESH DATA_PACKAGE.
      LOOP AT S_DATA_PACK.
        move-corresponding s_data_pack to DATA_PACKAGE.
        if DATA_PACKAGE-loc_currcy = 'EUR'.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalloc.
          DATA_PACKAGE-CURRENCY = 'EUR'.
          APPEND DATA_PACKAGE.
        else.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
        endif.
      ENDLOOP.
    This is to load Quantity field
    RESULT = COMM_STRUCTURE-BILL_QTY.
    This is to load Value field
    RESULT = COMM_STRUCTURE-NETVAL_INV.
    UNIT = COMM_STRUCTURE-currency.

  • Won't Automatically Move Messages from Group

    Hey Folks,
    Poked around for a bit in the archive and didn't see this issue addressed (most filtering queries seemed to be about Junk, this concerns mail from recognized recipients). After an hour with AppleCare they sent me here to answer this query:
    I've written several rules for filtering mail from recognized senders to folders on my .Mac account. I can successfully get messages from single individuals moved automatically to a designated folder, but I can't get any messages from any e-mail addresses moved automatically where the rule applies to more than one e-mail address. In the case of a rule set to apply to multiple addresses, all those e-mails go directly to my inbox (i.e. the rule fails, or doesn't apply). Or to put it another way, I can write a rule that says: "move messages from Gary to Folder:Gary" and messages from Gary will go directly to that folder, skipping my inbox. However, if the rule says "move messages from Groucho, Harpo and Zeppo to Folder:Marx_Brothers" e-mails from either Groucho, Harpo or Zeppo will not move to that folder, but will simply appear in my inbox.
    I won't list the things I've tried, both on my own and with the AppleCare tech, as its kind of a long list.
    Anyone having or had a similar problem with rules applying to multiple e-mails.
    Thanks very much,
    Dillon

    not quite the same:
    to comply with your suggestion, I used the '+' feature and added each e-mail in its own field. That worked- it sent every e-mail entered in that rule to one box.
    My question is whether there is a way to write the rule so I can copy and paste, from a list of 20+ addresses, every e-mail I want moved to that box into one field, as opposed to a separate field for each address. I'm just trying to save time as I sort through a lot of e-mail.
    Thanks again,
    Dillon

  • 1080p30 .mov files from canon eos 5DMarkII in Final cut express 4.0.1

    Hi everybody.
    i need some help to import HD vidéo .mov files from Canon Eos 5DMarkII in final cut express.
    The files is in 1080p30 (h264) like avchd but in the final cut configuration i have only 50i and 60i option in HDV and AVCHD
    Final cut necessity to do a render (5h for 15min on my G5) and the movement quality is not the same.
    Anybody have a idea to import Progressive files in final cut ?
    maybe they have an update with new avchd 1080p codec in configuration ?
    or i need final cut pro...?
    Thanks in advance
    and sorry for my english...i'm french

    There is no good solution for working with this camera in FCE. It's 30fps progressive. There is no true video format that is 30fps. This is something Canon was cobbled together for this stills camera.
    You can use MPEG Streamclip to convert the material to QuickTime using the Apple Intermediate Codec at 1920x1080. I think that's what it shoot. You should check the camera manual to confirm it shoots 1920 and not 1440.
    The problem is the frame rate. You can convert it to 29.97fps or to 25fps. 25fps conforms to the European frame rate, but I don't know how well Streamclip will do this conversion. You also need to make sure the material is not interlaced by Streamclip.
    The other problem is that FCE handles 1080 as an interlaced format, because for production it's supposed to be an interlaced format, at least in the formats, HDV and AVCHD, that FCE works with. You can set your sequence properties to have no field dominance, which should prevent it interlacing during compositing of any effects.

  • 1st Gen iPad doesn't show movies imported from iTunes

    When connected to iTunes the iPad shows that they're in there, but when we look on the iPad in the Videos.app there's no movies. The option is not even there. They all work fine in VLC, but that's without metadata, so it's not ideal. We have restored the software twice, from two different backups but this didn't solve the problem. Thanks for your assistance.

    This my "stock" answer for this issue and I'm sure that you have tried the first thing, but take look at the second suggestion and see if that works for you.
    Quit the video app and restart. Go to the home screen first by tapping the home button. Quit the app by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on the video app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the video app icon to close it. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button. Try the app again and see if the movie is there and will play.
    If that didn't work - Search for the movie. From the home screen swipe to the right and the Spotlight Search feature will appear. Type the name of the movie in the field at the top, if the movie shows up in the search, tap on the icon and hopefully it will begin to play. Let it play for a few minutes then tap Done. Return to the video app and see if it is in there now.

  • Select from three tables (one field)

    Dear Friends
    I have start-of-selection.
      select * from qals into corresponding fields of table itab where enstehdat in s_tarih.
      loop at itab.
          select matnr ntgew  from mara into (mara-matnr, mara-ntgew) where matnr eq itab-matnr.
          select matnr zfirmaadi ztezgah1 from zomt_malz into (zomt_malz-matnr, zomt_malz-zfirmaadi, zomt_malz-ztezgah1)
           where matnr eq itab-matnr.
            move-corresponding itab to itab2.
            itab2-zfirmaadi = zomt_malz-zfirmaadi.
            itab2-matnr = zomt_malz-matnr .
            itab2-ztezgah1 = zomt_malz-ztezgah1.
            itab2-ntgew = mara-ntgew.
            if sy-subrc = 0.
            append itab2.
            endif.
          endselect.
        endselect.
    endloop.
    end-of-selection.
    And I want to get unique matnr from this qals,zomt_malz, mara .
    Your helps will be very appreciated.

    hi,
    never use select statemnts inside loop.
    use FOR ALL ENTRIES.
    look this code.
    select * from qals
    into corresponding fields of table itab
    where enstehdat in s_tarih.
    select matnt ntgew
    from mara
    into table itab_mara
    for all entries in itab
    where
    matnr = itab-matnr.
    select matnr zfirmaadi ztezgah1
    from zomt_malz into table itab_ ztezgah1
    for all entries in itab
    where
    matnr = itab-matnr.
    loop at itab.
    move-corresponding itab to itab2.
    read table itab_mara with key matnr = itab-matnr.
    if sy-subrc = 0.
    itab2-ntgew = mara-ntgew.
    endif.
    read table  itab_ ztezgah1 with key matnr = itab-matnr.
    if sy-subrc = 0.
    itab2-zfirmaadi = zomt_malz-zfirmaadi.
    itab2-matnr = zomt_malz-matnr .
    itab2-ztezgah1 = zomt_malz-ztezgah1.
    endif.
    append itab2.
    clear itab2.
    endloop.
    regrds
    anver
    if helped mark points

  • Unable to  move data from Infooject to another Infoobject in APD

    Dear BW experts.
    I have data in Infoobject1 with 10 columns and I have another Infooject2 with 11 columns.
    I need to move data from infoobject1 to Infoobject2 both have identical fields except for the 11th column. In addition to filling up the common 10 columns, I need to calculate the data on the 11th column based on the previous record for each record. Hence I cannot move data directly from Inobject1 to Infoobject2.
    I try to use Analysis Process designer. In this, I could consider Infoobject1 as the source but in the choice of the target, I do not see Infoobect  but only see DSO and other objects not relevant for me.
    How do I move data from infoobject1 to Infoobject2 using ABAP routine in the APD.
    Kindly suggest.
    Thanks,
    Sai

    Hi,.
    See usefull Articles in
    http://wiki.sdn.sap.com/wiki/display/profile/Surendra+Reddy
    Analysis Process Designer (APD)
    Analysis Process Designer (APD): Part - 1
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f06353dd-1fe3-2c10-7197-dd1a2ed3893e?quicklink=index&overridelayout=true 
    Analysis Process Designer (APD): Part - 2
    http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/business-intelligence/a-c/analysis%20process%20designer%20(APD)%20Part%20-%202.pdf 
    Analysis Process Designer (APD): Part - 3
    http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/business-intelligence/a-c/analysis%20process%20designer%20(APD)%3a%20Part%20-%203.pdf
    Thanks
    Surendra Reddy

  • Badi: move data from bpc cube to bw cube

    Hi friends,
    I would like to move data from bpc application(i.e bpc cube) to bw cube.  Bpc cube having infoobjects starting with /cpmb/* and bw cube having infoobjects starting with y* .
    I want to write badi code to move data from bpc cube to bw cube? is it possible to move data via badi in our case?
    I know through APD its possible to move.  Any suggestions pls. we are on bpc 75 nw sp04
    Thanks,
    naresh

    Hi Naresh!!!
    I am doing the same stuff...... and got the data read inside the BAdI and converted the comma seperated into a properly structured table... but i dont know how to send this field symbol structure to a normal table. can you help me!!!!??? can you give me your contact details.... please
    Regards,
    Surya Tamada.

  • How can i move icons from one screen to the other?

    How do i move icons from one page to another?

    Tap and hold any icon for a couple of seconds. They'll all start to wobble. Tap and drag the one you want to move to the side of the screen and the next screen will appear; drop the icon on whatever screen you want it on.
    You can also do it quicker in iTunes - connect the phone and click the Apps tab in the main window. You'll see a picture of your phone with the apps laid out. Just click and drag

  • How can I move apps from one computer to the other?

    How can I move apps from one computer to the other?
    (preferably without iCloud)

    Backup your iTunes library to an external drive and onto the other computer
    http://support.apple.com/kb/ht1751

  • Can I move podcast from my account to other's?

    can I move podcast from my account to other's?
    i.e. may it have 2 owners?

    You're talking about an episode you've downloaded in someone else's podcast, and moving it to another user account on your Mac? You could simply subscribe to the podcast in the other account and download it again, but if you want to save the download time just drag the episode(s) to the Desktop, then place them in the Users/shared folder, then open the other user account and drag them from there to iTunes.
    If this isn't what you are trying to do please specify exactly what it is.

Maybe you are looking for

  • I don't want to fix, tweak, adjust, or God forbid, REINSTALL anything.

    I bought Adobe Premier Elements 7 with a new Dell XPS Studio with MS Vista, 12 GB RAM, 1 TB of disk space, and 1GB of video RAM. It came pre-installed. PE7 barely runs. Most times, I do not get to the "Share" phase because PE7 says there is an unexpe

  • Messages stuck in delivering status

    Hi all, I have an idoc-xi-ftp scenario with EO quality of service. For the very first tests we set up a file CC using nfs and everything worked fine. Today I received the info to connect to the FTP server and introduce it on the file CC. The issue co

  • Error trying to run Forms - ifcom60.dll

    After installing Forms 6i, I get the following error when I attempt to run Forms Builder: Error dialog titled "ifbld60.EXE - Ordinal Not Found" with the error message: "The ordinal 427 could not be located in the dynamic link library ifcom60.dll" Doe

  • Setting up of Transports Management System  in EP7.0

    Hi Experts!!!!! Can you please provide the documents or links for configuring the transport management system for EP 7.0 Systems. Regards, Vamshi.

  • Business Area in  BAPI _ ACC _ INVOICE _ RECEIPT _ POST & BAPI_INCOMINGINVO

    Dear Experts I am using this two BAPIs. for Invoice creation BAPI_INCOMINGINVOICE_CREATE for MIRO Invoice BAPI _ ACC _ INVOICE _ RECEIPT _ POST for FB60 invoice creation, In this I am facing Problem to Pass Business area, in BAPI _ ACC _ INVOICE _ RE