Help in getting the Read receipt in external mails ( like yahoomail , gmail

Hi Experts,
Scenario : We are sending notification mail to our external vendors for example abc.hotmail.com. We expect a Read acknowledgement to ensure the external vendor has gone through our notification generated from our SAP system. Point to consider is the two mail servers are different, sending mail server is configured to Outlook where as the receiving server will differ each time.
It would be better if anyone lets me know whether SAP ensure that we get read receipt (
acknowledgement) from other mail servers also?
Steps followed are:
Process 1: Using the function Module: SO_DOCUMENT_SEND_API1
Populating the fields:
    wa_receivers-receiver   = <External Email address>.
    wa_receivers-rec_type   = 'U'.
    wa_receivers-notif_read = 'X'.
Passing this structure to the Tables parameter: Receivers.
However the read receipt is not obtained.
Process 2: Using the class and the method:
cl_send_request_bcs=>create_recipient_from_soos1
The structure is getting populated as:
        recipient_soos1-recesc = 'U'.
        L_recipient_soos1-recextnam = < External email>
        l_recipient_soo1s-read      = 'X'.
Also passing:
I_requested_status = u2018Au2019.
I_status_mail = u2018Au2019.
CALL METHOD send_request->set_status_attributes
            EXPORTING
              i_requested_status = i_requested_status
              i_status_mail      = i_status_mail.
However the read receipt is not obtained.
Basis Settings:
SCOT->Settings->Confirmation of Receipts -> the first option is checked.
However still we are not getting the read receipt. The Delivery receipt is obtained but not the read-receipt
Thanks
Papiya

Hi,
Using the FM : SO_DOCUMENT_SEND_API1
When you pass values to
RECIEVERS
for Delivery reciept : notif_del  = 'X'
for Read reciept : notif_ndel = 'X'
Try shceduling the report : RSCONN01 with default job name : SAPCONNECT ALL SEND
and check if this helps.
Cheers,
Remi

Similar Messages

  • How do I get a read receipt for my sent emails?

    Can someone tell me how to get a "read receipt" in Safari Mail?  I want to know when the recipient of my email reads it.

    Read the comments in this similar post about using receipts.
    https://discussions.apple.com/message/11025500?messageID=11025500
     Cheers, Tom

  • Programming help - how to get the read-only state of PDF file is windows explorer preview is ON?

    Programming help - how to get the read-only state of PDF file is windows explorer preview is ON?
    I'm developing an application where a file is need to be saved as pdf. But, if there is already a pdf file with same name in the specified directory, I wish to overwrite it. And in the overwrite case, read-only files should not be overwritten. If the duplicate(old) file is opened in windows (Win7) explorer preview, it is write protected. So, it should not be overwritten. I tried to get the '
    FILE_ATTRIBUTE_READONLY' using MS API 'GetFileAttributes', but it didn't succeed. How Adobe marks the file as read-only for preview? Do I need to check some other attribute of the file?
    Thanks!

    Divya - I have done it in the past following these documents. Please read it and try it it will work.
    Please read it in the following order since both are a continuation documents for the same purpose (it also contains how to change colors of row dynamically but I didnt do that part I just did the read_only part as your requirement) 
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0625002-596c-2b10-46af-91cb31b71393
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0155eb5-b6ce-2b10-3195-d9704982d69b?quicklink=index&overridelayout=true
    thanks!
    Jason PV

  • Can I get a Read Receipt with Mail, like in Outlook?

    Can I get a Read Receipt with Mail, like in Outlook?
    W.W.

    It is possible, though not through the GUI. And as Dave points out, asking for a receipt does not mean that you will get one. The magic incantations for requesting receipts are detailed, amongst other places, in this article. It requires using the Terminal, and once set affects all messages you send until you unset it again.
    If you search this forum for read receipts (the topic surfaces frequently) you should find a helpful Applescript for turning them on and off, to save using the terminal.
    AK

  • IMessages: the read receipt is not consistent?

    Apologies but I'm getting so much into my iPhone. And I've found this forum so helpful!
    Right: I've turned my iMessages back on, with the read receipt also on. You see I text A LOT. Now 3 contacts are telling me that  just beneath their sent message to me, blue bubble, sometimes it says 'read' and sometimes it says 'delivered'. But truly I have read all their messages, in fact I've even replied (when it just said delivered). I checked my settings, the read receipt is still on. So why is it not consistent? Many thanks.

    Hi vijay,
    2007B is in trail version only.
    if you have any proble in the live DB you have get the support from SAP TEAM.
    Please raise the issue to the SAP.
    Regards
    Chidambaram

  • I'm having issues syncing my ipod to my external hardrive's library. How do I sync and get the music from my external hard drive?

    I recently moved the music from my old computer in itunes to my external hardrive (changed the media file location and consolidated library). I connected my external hardrive to my new computer (windows 7) and changed my itunes media file to my external hardrive and consolidated my new computer's library to my external hardrive. When I connect my iPod, it is only grabbing the music from my new computer and not my external hardrive. How do I get the music from my external hardrive onto my iPod?

    Did you move the entire /Music/iTunes/ folder?
    File > Add folder to library and select the folder with music on the external.

  • F4 Help to get the path for a File source directory

    There are numerous function modules for browsing a particular file in desktop and getting the file path (including the fine name)  , like F4_FILENAME , KD_GET_FILENAME_ON_F4 , WS_FILENAME_GET etc. But can anyone tell me how to fetch only the directory path to the field were the F4 help is given. Actually the filename has to come in some other field in the selection screen. Is there separate funtion modules for these OR will changing parameters in the above function modules work?
    Pls Help....
    Also are there function modules for providing F4 help for getting the path to a file in application directory?

    Try this method CL_GUI_FRONTEND_SERVICES.
    It is a Global CLASS which is having different methods for different purposes
    see the documentation of it and use the methods of it
    see
    CL CL_GUI_FRONTEND_SERVICES
    Short Text
    Frontend Services
    Functionality
    The class CL_GUI_FRONTEND_SERVICES contains static methods for the following areas:
    File functions
    Directory functions
    Registry
    Environment
    Write to / read from clipboard
    Upload / download files
    Execute programs / open documents
    Query functions, such as Windows directory, Windows version, and so on
    Standard dialogs (open, save, directory selection)
    Example
    Determine the temp directory on your PC:
    DATA: TEMP_DIR TYPE STRING.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>GET_TEMP_DIRECTORY
    CHANGING
    TEMP_DIR = TEMP_DIR
    EXCEPTIONS
    CNTL_ERROR = 1
    ERROR_NO_GUI = 2.
    IF SY-SUBRC 0.
    Error handling
    ENDIF.
    flush to send previous call to frontend
    CALL METHOD CL_GUI_CFW=>FLUSH
    EXCEPTIONS
    CNTL_SYSTEM_ERROR = 1
    CNTL_ERROR = 2
    OTHERS = 3.
    IF SY-SUBRC 0.
    Error handling
    ENDIF.
    WRITE: / 'Temporary directory is:', TEMP_DIR.
    Notes
    The class CL_GUI_FRONTEND_SERVICES is based on the Control Framework. See the documentation for more information, in particular on CL_GUI_CFW=>FLUSH which must be called after many CL_GUI_FRONTEND_SERVICES methods.
    Migration Information
    The old file transfer model was based on function modules of the function group GRAP. The old features have been replaced by the class CL_GUI_FRONTEND_SERVICES. The following list contains the old function modules (italic) and the new methods (bold) that replace them:
    CLPB_EXPORT
    CLIPBOARD_EXPORT
    CLPB_IMPORT
    CLIPBOARD_IMPORT
    DOWNLOAD
    GUI_DOWNLOAD, dialog replaced by FILE_SAVE_DIALOG
    PROFILE_GET
    No replacement, use REGISTRY_* methods instead
    PROFILE_SET
    No replacement, use REGISTRY_* methods instead
    REGISTRY_GET
    REGISTRY_GET_VALUE, REGISTRY_GET_DWORD_VALUE
    REGISTRY_SET
    REGISTRY_SET_VALUE, REGISTRY_SET_DWORD_VALUE
    UPLOAD
    GUI_UPLOAD, dialog replaced by FILE_OPEN_DIALOG
    WS_DDE
    Obsolete: This function is no longer supported.
    SET_DOWNLOAD_AUTHORITY
    Obsolete: This function is no longer supported.
    WS_DOWNLOAD
    GUI_DOWNLOAD
    WS_DOWNLOAD_WAN
    Obsolete: This function is no longer supported.
    WS_EXCEL
    Obsolete: This function is no longer supported.
    WS_EXECUTE
    EXECUTE
    WS_FILENAME_GET
    FILE_SAVE_DIALOG, FILE_OPEN_DIALOG
    WS_FILE_ATTRIB
    FILE_SET_ATTRIBUTES, FILE_GET_ATTRIBUTES
    WS_FILE_COPY
    FILE_COPY
    WS_FILE_DELETE
    FILE_DELETE
    WS_MSG
    Obsolete: This function is no longer supported.
    WS_QUERY
    CD (current directory)
    DIRECTORY_GET_CURRENT
    EN (read/write environment)
    ENVIRONMENT_GET_VARIABLE
    ENVIRONMENT_SET_VARIABLE
    FL (determine file length)
    FILE_GET_SIZE
    FE (check if file exists)
    FILE_EXIST
    DE (check if directory exists)
    DIRECTORY_EXIST
    WS (determine Windows system)
    GET_PLATFORM
    OS (operating system)
    GET_PLATFORM
    WS_UPLDL_PATH
    Obsolete: This function is no longer supported.
    WS_UPLOAD
    GUI_UPLOAD
    WS_VOLUME_GET
    Obsolete: This function is no longer supported.
    Reward points if useful.

  • In Yosemite, How can I get the "READER" button back in the Tool Bar at the top of the screen

    In OS X Yosemite,
    How can I get the "READER" button back in the Tool Bar for Safari at the top of the screen ?
    Thanks,

    I don't see the "READER button".
    I see "READ LATER" but not the "READER" function.
    Maybe I'm doing it wrong.
    Please continue to HELP ME with this question.
    In the previous version of Safari, there was a "READER Button" on the right side of the tool bar. This brings up the selected web page in a READER mode all by itself, without the ads, etc.
    Are you saying that I can get this function by clicking on the Left side of the Address bar?
    When I do that, I get lots of icons, but NOT the READER button.
    Thanks

  • How do i get a read receipt for email

    How do I get a read receipt in mac e-mail?

    There is a workaround, but it's not reliable, so I don't recommend it.
    Email receipts are not a standard feature of email. Some email programs support it, some don't. If someone reads email online (ie, in webmail), no read receipt is created. Even if someone uses Outlook (which supports it), they have to turn the send-receipt feature on.
    So if you don't receive a receipt, you can not, unfortunately, know for sure that the message was not read.
    Matt

  • PLEASE HELP ME GET THE SOFTWARE TO INSTALL ON MY COMPUTER SO I CAN HAVE WIRELESS INTERNET

    Okay i know this is off the tangent but i am losing my mind i have a wireless B broadband router model number befw11s4 and i lost the cd upon a long tideous move so can you please anyone PLEASE HELP ME GET THE SOFTWARE TO INSTALL ON MY COMPUTER SO I CAN HAVE WIRELESS INTERNET i am losing my mind i callled linksys and they were no help telling me i had two option to either buy a 29.99 plan or a 39.99 plan and i couldnt get  the help i needed unless i bought the **bleep** plans so i said kindly thank you for your time ...I figured i would post a thread up asking if someone anyone can please help me get this software or cd so i can install it on my computer !! THANK YOU FOR YOUR TIME !!!!!
    Message Edited by kent07 on 11-20-2009 05:46 PM

    You don't need any software to run the router at all.  Connect with your wired computer to 192.168.1.1 username blank, password admin and configure your router manually like everyone else. 

  • HT1146 Anyone know how to setup email so you can get a Read Receipt?

    I would like to know how I can setup email in Mac so I can get a 'read receipt' once the recipient has opened my sent email.

    The process is described here, though that is several years old. As far as I know it still works in 10.6.8. However, use it at your own peril. Also note that just because your messages request a receipt does not mean that the recipient's email client will send one - even if the client has the capability, many users will have it turned off. Apple's Mail hasn't the capability.

  • White screen, but you could get the display via an external monitor.

    Hi,
    A few weeks ago, my Macbook pro(A1212) stopped displaying. It only showed a white screen, but you could get the display via an external monitor. A friend looked at it and we discovered a burnt Mosfet (SI3443DV) which was item Q9400 on the motherboard. He went and changed it but it only displayed for less than 5 minutes and it went back to the white screen. would you please advice on what to do since i am not in a financial position to take it for repairs at the apple store?
    Joe

    Forget it.
    1: If it was tampered with, then it doesn't qualify for warranty or AppleCare.
    2: Repairing it will incur a new expensive logicboard, because that's how they do things. Swap parts out.
    3: No money, means no Mac.
    Sorry. We don't do hardware repairs here.

  • Can you get "read receipts" on e mails

    Can you get "read receipts" on e mails?

    No, which can be prevented by default with the recipient's email client that supports this or by individual message when requested by the sender of a message.

  • I ordered mac OS and I got the email for License and I didnt get the attachement for content code. Please help me getting the content code.

    I ordered mac OS and I got the email for License and I didnt get the attachement for content code. Please help me getting the content code.

    It's a two email process, one email has a locked pdf with the redemption code. The second email has the password to unlock the pdf. They come separetly, so you may have to wait for the 2nd to arrive.

  • What is the  FM/BAPI  to get the Goods Receipt  Based on the Purchase Order

    Hi ,
    I want FM/BPI  to get the Goods Receipt  Based on the Purchase Order in MM.
    Thnx in advance

    Hi
    BAPI_GOODSMVT_CREATE
    Thanks & Regards
    Kishore

Maybe you are looking for

  • Issues with DNG Flat Field Plug-in after installing updates

    Hello, First of all many thanks to the Lightroom-team for making the DND Flat Field Plug-in available. I am using it to correct images taken with non-retrofocus M-mount lenses on a Sony NEX-7. I have previously used CornerFix, which worked fine, but

  • How can I get my phone out of restoration mode without losing my pictures?

    I was trying to back-up my phone on my new laptop, but it somehow disconnected itself, so it went into recovery mode. I was wondering if there was any way of either getting it out of recovery mode, or restoring it, without losing all the pictures I h

  • Alv sorting

    hi need to sort alv data, but the entries are like header and item means first line is of header data and if has items then       the items will be displayed starting from second line but some columns for all items       will be empty (means header d

  • Item/lot Reservation against blanket sales agreement

    Hi all. my client has a requirement (in warehousing environment 11.5.10 CU2) to reserve the entire lot for a customer (preferably against a blanket sales agreement) and release the BSA in small quantities over a period of time. The lot is has to be r

  • Webservice proxy generation : ant?

    we are currently working using the new 'web service proxy' from jdeveloper. since we have tons of services and don't want to do this manually, is it possible to make an Ant target to clean the directory and regenerate them? thanks.