Retrieve blind copy info

I sent a message to many with blind copy addresses, but now I can't recall to whom the message was sent.  how do I retrieve the blind copy addresses. GMAIL does this so easily in sent mail.

Regarding the discussion you have some time ago... I have never programmed a midlet but on the other hand I would like to develop a midlet that retrieves handset information and displays it in a way such as the "old" Nokia net monitor (the locked menu). The mobile is not a GPS device, but performs or receives an number of measurements or newtork paramaters such as the signal strength, the signal quality, the timing advance, BCCHs lists, offset values etc. I would like to know if we can have access to this information (through the Location API?) in order to process and display it accordingly as it is very difficult or impossible to find an midlet application that acts like a "network monitor". For example, the mobile displays the signal strength in the form of five bars. Hence, it is already capable of processing the measured in dBm signal strength value. Is there any news about that functionality during this year?

Similar Messages

  • Info as to whether or not a blind copy has been sent

    Sometimes I like to recheck whether or not I have blind copied someone. When checking my sent mail, there doesn't seem to be any indication if this has actually been done. Is there a way to check on this??

    If you highlight the message in your sent folder, then select View -> Message - Long Headers the Bcc header will show and you can see.

  • Help! I synced my iCal from my old iPhone to iCloud. It worked great. I've done this because I'm switching to a Samsung phone and need to sync my iCal to my Google calendar. In attempting to do so today, my iCal is empty. How can I retrieve my iCal info??

    Help! I synced my iCal from my old iPhone to iCloud. It worked great. I've done this because I'm switching to a Samsung phone and need to sync my iCal to my Google calendar. In attempting to do so today, my iCal is empty. How can I retrieve my iCal info??

    This was EXACTLY what I needed about the purchases I made from my device. However, is there a way to re-download other ones you've made from a computer? Because I realized some of them were not just purchased from my device.
    This is a picture of what it looks like now:
    http://tinypic.com/r/107quxu/7
    As you can see, the stuff circled in red doesn't give me an option to download from Cloud Beta because it already says "downloaded".
    any way to get around that?

  • Blind copy while sending a mail...

    Hi Friends,
    How to set a recipient under the blind copy recipient list (BCC) while sending a mail using the function module SO_DOCUMENT_SEND_API1. I have checked the flag <b>blind_copy</b> but not seeing that recipient under the bcc list. Some body please help in this.
    Thanx in advance.
    Ram

    See the example program :
    TABLES: SOLI.
       Data Declarations
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS: SAPID     RADIOBUTTON GROUP ADDR,
                EMAIL_ID  RADIOBUTTON GROUP ADDR.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
    SELECT-OPTIONS: ID  FOR SOLI-LINE NO INTERVALS.
    SELECT-OPTIONS: CC  FOR SOLI-LINE NO INTERVALS.
    SELECT-OPTIONS: BCC FOR SOLI-LINE NO INTERVALS.
    *PARAMETERS:     SENDER LIKE SOUD-USRNAM.
    SELECTION-SCREEN END OF BLOCK B2.
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-009.
    PARAMETERS: SUB_LINE(60) TYPE C.
    SELECTION-SCREEN END OF BLOCK B3.
    SELECTION-SCREEN BEGIN OF BLOCK B4 WITH FRAME TITLE TEXT-008.
    SELECT-OPTIONS:  TEXT1 FOR SOLI-LINE NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK B4.
    SELECTION-SCREEN BEGIN OF BLOCK B5 WITH FRAME TITLE TEXT-009.
    SELECTION-SCREEN BEGIN OF LINE.
    parameters: P_ATTACH as checkbox.
    selection-screen comment 3(30) text-010.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK B5.
    DATA: MAIL_CONTENT LIKE SOLI OCCURS 0 WITH HEADER LINE,
          SUBJECT_LINE LIKE SOOD1-OBJDES.
       Start of program processing
    START-OF-SELECTION.
    Get the Body of the Message from the selection screen or from
    calling program
      LOOP AT TEXT1.
        MOVE   TEXT1-LOW TO MAIL_CONTENT-LINE.
        APPEND MAIL_CONTENT.
      ENDLOOP.
    Subject of the Message
      MOVE  SUB_LINE TO SUBJECT_LINE.
    call a routine to send the workflow message
      PERFORM SEND_EMAIL
              TABLES MAIL_CONTENT
              USING  SUBJECT_LINE.
    *&      Form  SEND_EMAIL
    Send Workflow message
    FORM SEND_EMAIL TABLES OBJCONT STRUCTURE MAIL_CONTENT
                    USING  TITLE   LIKE SOOD-OBJDES.
      DATA: RECEIVERS LIKE SOOS1 OCCURS 0 WITH HEADER LINE,
            TSOOD1 LIKE SOOD1,
            PACKING_LIST LIKE SOXPL OCCURS 0 WITH HEADER LINE,
            OBJCONT1 LIKE MAIL_CONTENT OCCURS 0 WITH HEADER LINE.
      DATA: BEGIN OF AT_HEADER OCCURS 1.
              INCLUDE STRUCTURE SOLI.
      DATA: END OF AT_HEADER.
      CLEAR: TSOOD1,
             RECEIVERS.
      REFRESH RECEIVERS.
      MOVE:  SY-LANGU       TO TSOOD1-OBJLA,
             'Email Notice' TO TSOOD1-OBJNAM,
             'C'            TO TSOOD1-OBJSNS,
             TITLE          TO TSOOD1-OBJDES.
           'SCHIAVONIR'   TO TSOOD1-OWNNAM.
    loop through each ID and move them to recipient table
      LOOP AT ID.
        TRANSLATE ID-LOW TO UPPER CASE.
        IF SAPID = 'X'.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                ' '          TO RECEIVERS-RECESC,
                 ID-LOW      TO RECEIVERS-RECNAM,
                'X'          TO RECEIVERS-SNDEX.
        ELSE.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                'U'          TO RECEIVERS-RECESC,
                'U-'         TO RECEIVERS-RECNAM,
                ID-LOW       TO RECEIVERS-RECEXTNAM.
        ENDIF.
        APPEND RECEIVERS.
        CLEAR RECEIVERS.
      ENDLOOP.
    loop through each CC and move them to recipient table
      LOOP AT CC.
        TRANSLATE CC-LOW TO UPPER CASE.
        IF SAPID = 'X'.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                ' '          TO RECEIVERS-RECESC,
                 CC-LOW      TO RECEIVERS-RECNAM,
                'X'          TO RECEIVERS-SNDEX,
                'X'          TO RECEIVERS-SNDCP.
        ELSE.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                'U'          TO RECEIVERS-RECESC,
                'U-'         TO RECEIVERS-RECNAM,
                CC-LOW       TO RECEIVERS-RECEXTNAM,
                'X'          TO RECEIVERS-SNDCP.
        ENDIF.
        APPEND RECEIVERS.
        CLEAR RECEIVERS.
      ENDLOOP.
    loop through each BCC and move them to recipient table
      LOOP AT BCC.
        TRANSLATE BCC-LOW TO UPPER CASE.
        IF SAPID = 'X'.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                ' '          TO RECEIVERS-RECESC,
                 BCC-LOW     TO RECEIVERS-RECNAM,
                'X'          TO RECEIVERS-SNDEX,
                'X'          TO RECEIVERS-SNDBC.
        ELSE.
          MOVE: SY-DATUM     TO RECEIVERS-RCDAT,
                SY-UZEIT     TO RECEIVERS-RCTIM,
                'U'          TO RECEIVERS-RECESC,
                'U-'         TO RECEIVERS-RECNAM,
                BCC-LOW      TO RECEIVERS-RECEXTNAM,
                'X'          TO RECEIVERS-SNDBC.
        ENDIF.
        APPEND RECEIVERS.
        CLEAR RECEIVERS.
      ENDLOOP.
      AT_HEADER = SY-DATUM.
      APPEND AT_HEADER.
      AT_HEADER = SY-UZEIT.
      APPEND AT_HEADER.
    IF SENDER EQ SPACE.
       SENDER = SY-UNAME.
    ENDIF.
      IF P_ATTACH EQ 'X'.
        PACKING_LIST-HEAD_START = 1.
        PACKING_LIST-HEAD_NUM   = 2.
        PACKING_LIST-BODY_START = 1.
        PACKING_LIST-BODY_NUM   = 9999.
        PACKING_LIST-FILE_EXT   = 'TXT'.
        APPEND PACKING_LIST.
        CLEAR  PACKING_LIST.
        APPEND LINES OF OBJCONT TO OBJCONT1.
        REFRESH OBJCONT.
      ENDIF.
      CALL FUNCTION 'SO_OBJECT_SEND'
           EXPORTING
                OBJECT_HD_CHANGE           = TSOOD1
                OBJECT_TYPE                = 'RAW'
           TABLES
                OBJCONT                    = OBJCONT
                RECEIVERS                  = RECEIVERS
                ATT_HEAD                   = AT_HEADER
                ATT_CONT                   = OBJCONT1
                PACKING_LIST               = PACKING_LIST
           EXCEPTIONS
                ACTIVE_USER_NOT_EXIST      = 1
                COMMUNICATION_FAILURE      = 2
                COMPONENT_NOT_AVAILABLE    = 3
                FOLDER_NOT_EXIST           = 4
                FOLDER_NO_AUTHORIZATION    = 5
                FORWARDER_NOT_EXIST        = 6
                NOTE_NOT_EXIST             = 7
                OBJECT_NOT_EXIST           = 8
                OBJECT_NOT_SENT            = 9
                OBJECT_NO_AUTHORIZATION    = 10
                OBJECT_TYPE_NOT_EXIST      = 11
                OPERATION_NO_AUTHORIZATION = 12
                OWNER_NOT_EXIST            = 13
                PARAMETER_ERROR            = 14
                SUBSTITUTE_NOT_ACTIVE      = 15
                SUBSTITUTE_NOT_DEFINED     = 16
                SYSTEM_FAILURE             = 17
                TOO_MUCH_RECEIVERS         = 18
                USER_NOT_EXIST             = 19
                X_ERROR                    = 20
                OTHERS                     = 21.
    ENDFORM.                               " SEND_EMAIL
    text elements
    BCC     Blind CC
    CC     Copy to
    EMAIL_ID     Email ID
    ID     ?...
    P_ATTACH     Send as Attachment?
    SAPID     SAP ID
    SUB_LINE     Subject
    TEXT1     Message

  • How do i retrieve all my info, photos, numbers that were on my phone. it was all lost when i plugged my phone in to update it...it began to sync then next thing i know everything was gone after the date of 8/2011

    how do i retrieve all my info, photos, numbers, notes that were on my phone prior to my plugging it into my computer to update it?...it started to sync with itunes and when it was finished. everything from 8/2011 to current was gone. Please help!

    http://support.apple.com/kb/HT1766?viewlocale=en_US&locale=en_US
    Go to Settings>General>Reset and tap Erase All Content and Settings.  This will erase your phone.  Then you will go through the setup screens again as you did when your phone is new, and when given the option, select Restore from iCloud Backup.

  • Updated to iOS 5.1.1 and lost all contacts, messages, and photos specific to this iPhone.  Is there anything to retrieve the lost info?

    Updated software to iOS 5.1.1 and lost all contacts, messages, and photos specific to this iPhone.  Is there any way to retrieve the lost info?

    if you don't have a backup on iclouds or itunes that you can restore to, then all is gone.  http://support.apple.com/kb/HT1766

  • When I hold my finger down and it says copy, where do I retrieve the copy.

    WWhen I hold my finger on the screen to copy something how and where do I retrieve the copy?

    its a copy and paste function. It doesnt actually store a copy anywhere.

  • How can I see who a Blind Copy was sent to AFTER it was sent?

    Hello. I often use Blind Copy, BCC, but if I go into my Sent file, it just indicates the first address it was sent to. Is there any way I can go back into my Sent file after the message was sent, and recall all the Blind Copy addressee's?
    Thanks for any comments.

    I use OS 10.3.9, but I think my reply applies to 10.2.x as well. I assume you are using Apple's Mail program.
    I did a test -- sent a message with a bcc. I went too my sent mailbox, and found the message. in the Mail menu, I chose preferences, and then Viewing. In Header Detail, I chose All. The bcc is listed there. Does this work for you?
    Frank

  • Retrieving a copy of my iphone 3g purchase receipt

    I would like to retrieve a copy of my iphone 3g purchase receipt and there is no easy way to contact Apple's service that address the issue above.
    I'm from israel and would like to contact Apple's service via email or by chat service (which is preferred).
    As a leading electric products company it is expected from Apple to offer this kind of service.
    Any one with an idea?
    nfromjerusalem.

    Contact your credit card company. Contact the store you bought it from.
    Ask either or both for a copy of the receipt.

  • Customer Contact Person as Blind Copy for Email

    Dear SAP Experts,
    Do you know where to set that a Contact Person for a customer will receive an email as blind copy (BCC) ?

    Hi Prabhu
    for Contact person -
    KNVK
    For email id -
    SZA1_D0100
    For customer --- RF02D
    Reward if useful to u

  • How do I retrieve my backup info after my phone is stolen

    how do I retrieve my backup info after phone is stolen

    What info?
    You should be syncing calendars and contacts with your computer regularly.  They will be in whatever program that you sync.
    You should be importing all pics talen with iphone to your computer regularly as you would with any digital camera.  They will be wherever you put them.
    You should be transferring any itunes purchases made on your iphone to your computer regularly.  They should be in itunes.
    You can redownload some itunes purchases in some countries:
    http://support.apple.com/kb/HT2519

  • I'm got replacement 5c, how do I retrieve all my info from the cloud?

    i had to get a replacement due to dropping my orginal 5c, I was able to retrieve all my info from the clould from an older model 4c , however I haven't been able retrieve all my info from the original 5c how can I can retrieve it to my current replacement from the cloud?

    Hello vejames,
    Thanks for using Apple Support Communities.
    If you need to restore your replaced iPhone from either an iTunes or iCloud backup then you can follow the directions in the article below to help walk you through the process.
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    Cheers,
    Alex H.

  • Crashes while trying to copy info from "Movie info" window

    Hi,
    does anyone experienced this thing also? When i play streaming media and try to select and copy info from "Movie Info" QT crashes instantly (QT 7.1.3)
    Any idea
    PowerMac G5 2x2GHz, PowerMac G5 2,3GHz DC   Mac OS X (10.4.8)  

    Also, see this ARTICLE from the Tips & Tricks sub-forum, for things to look at with crashes and hangs. It covers the hardware, the OS and the software, and offers links for tuning up the system, and getting it ready for video editing. I know that there is a lot of material in there, but Neale has done a great job of putting things into a checklist, and offering links to other material.
    That rec. is for use along with John T's links, which are a bit more specific to your burned DVD's.
    Good luck,
    Hunt

  • BC or blind copy, where is it?

    How to I select BC or Blind Copy for emails being sent through iCloud?
    I sign into iCloud on the my Mac Book, and I do not see anyway to send a BC or BCC.  Also the iCloud is not picking up my gmail account.
    Any suggestions?
    Thanks in advance,
    Marty

    While logged into iCloud Mail, select Preferences in upper right, then Composing. Check "Show Bcc field" box.

  • Can I retrieve a copy of forms that have been submitted using Forms Plus?  I want to be able to file the actual form.

    Can I retrieve a copy of forms that have been submitted using Forms Plus?  I want to be able to file the actual form.

    You can export any response as a PDF, which you can then archive.

Maybe you are looking for

  • Put to Sleep and  Don't wake up when i open my macbook pro

    Hello, i have a Macbook pro 17' (2,33ghz) using leopard 10.5.2 with all the latest update. Everytime i put my computer to sleep for more than 10 minutes (random time), when i try to wake up nothing happen, i hear a strange noise of the HD for about 2

  • Using printer's ethernet port as an access point

    Hi there, I have an HP LaserJet Pro 200 color MFP M276nw wirelessly connected to my network. I also have an HP LaserJet 5P, which was connected to my network / wireless router via an ethernet cable using a D-Link DP-301P+ print server. Don't judge...

  • Xy Graph Auto Scale Bug - Need AutoScale VI

    I have another bug to report, I have come across more bugs in the past year than before. This bug is present in all versions since 7.1 to the latest 8.5. Here is the bug. Create and Graph. Make sure the X-Scale is set to Auto Scale. Go to Properties

  • Sync ipod classic with new pc computer

    Hello to all.  I am new to this forum and so please excuse me if I am asking a question, which I am sure I am, that has already been answered.  I have an Ipod classic that has quite a lot of music on it.  My old computer that I was syncing to has cra

  • L&T stops  FCP

    When ever I try to use L&T it opens and two seconds after I get the color will of death and FCP stops responding. Any suggestions? Thanks.