How to send meeting request by mail adapter

Hi,
I'm doing scenario from file to mail. I have a sender file adapter to pick up the meeting request standard format file(*.ics) from file system. On the other side I have a receiver mail adapter to send mail. What I want to do is the sent mail by mail adapter should be a meeting request instead of a normal email with meeting request as its attachment.
I use localejbs/AF_Modules/MessageTransformBean as first module in mail adapter, but the sent mail is also a normal with meeting request as its attachment. This is not what I expected.
I also created own module for mail adapter to realize it. Do I need to change the format of meeting reqeust information in payload? Actually I have chance to do it in module. But what should I do? Thanks.

Hi, Krishna:
Thanks for your reply.
Actually the content of ics file is like:
BEGIN:VCALENDAR
PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN
VERSION:2.0
METHOD:REQUEST
BEGIN:VEVENT
ATTENDEE;CN="Wu, Oscar";ROLE=REQ-PARTICIPANT;RSVP=TRUE:MAILTO:[email protected]
ORGANIZER:MAILTO:[email protected]
DTSTART:20070626T130000Z
DTEND:20070626T150000Z
LOCATION:Shanghai
TRANSP:OPAQUE
SEQUENCE:0
UID:040000008200E00074C5B7101A82E00800000000F067E9BB0DB8C7010000000000000000100
00000C7423D530FE8744687B0C7C08D4CAA58
DTSTAMP:20070626T104913Z
DESCRIPTION:Meeting request without attachment\n
SUMMARY:Test appointment
PRIORITY:5
X-MICROSOFT-CDO-IMPORTANCE:1
CLASS:PUBLIC
BEGIN:VALARM
TRIGGER:-PT15M
ACTION:DISPLAY
DESCRIPTION:Reminder
END:VALARM
END:VEVENT
END:VCALENDAR
this content is content of meeting request based on RFC 822, what I want is not get the content itself in mail, I want the mail adapter send a meeting request out automatically when it get this content.
Thanks

Similar Messages

  • How to send the acknowledgement via mail adapter

    Hi Experts,
    I have a async scenario file to webservice here we are getting an acknowledgment from the webservice side.
    My requirement is - to capture the acknowledgement (application ack) which is coming to PI and then send this  acknowledgment to some user mail ID using the mail adapter.
    here we are not using the proxies and the acknowlodgement is application ack (not transport ack) and we are avoiding the BPM.
    Please help me in this regard.
    Thanks
    Sugata

    Hi Stefan,
    Thanks for quick reply.
    can you please let me know if application ack can be handled by BPM or not? if it is possible thru BPM  please provide me the guidelines for the same ( blog etc.).
    I am here to capture the Application Acknowledgment that is coming into PI  sxmb_moni from webservice
    Thanks
    Sugata

  • Very urjent how to send report output in mail

    hi experts,
    how to send report output in mail which function module should i use wht parameters should i pass.
    thanks in addavnce,
    points to be awarded.

      CALL FUNCTION 'GET_PRINT_PARAMETERS'
           EXPORTING
                destination    = '026c'
                copies         = count
                list_name      = 'VATS_ASBUILT'
                list_text      = v_list
                immediately    = 'X'
                release        = 'X'
                new_list_id    = 'X'
                expiration     = days
                line_size      = 132
                line_count     = 65
                layout         = 'X_65_132'
    *            sap_cover_page = 'X'
    *            cover_page     = 'X'
                receiver       = 'SAP*'
                department     = 'VATS'
                no_dialog      = 'X'
           IMPORTING
                out_parameters = params
                valid          = valid.
      SUBMIT zppr_vats_asbuilt  WITH p_aufnr EQ v_aufnr
                   TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                      SPOOL PARAMETERS params
                         AND RETURN.
      SELECT SINGLE rqident FROM tsp01 INTO l_spoolno
                         WHERE rqtitle = v_list .
    * convert report to PDF format
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
           EXPORTING
                src_spoolid              = l_spoolno
                no_dialog                = 'X'
           TABLES
                pdf                      = l_ipdf
           EXCEPTIONS
                err_no_abap_spooljob     = 1
                err_no_spooljob          = 2
                err_no_permission        = 3
                err_conv_not_possible    = 4
                err_bad_destdevice       = 5
                user_cancelled           = 6
                err_spoolerror           = 7
                err_temseerror           = 8
                err_btcjob_open_failed   = 9
                err_btcjob_submit_failed = 10
                err_btcjob_close_failed  = 11
                OTHERS                   = 12.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        EXIT .
      ENDIF.
    Now comes the part to send the mail
      try.
    * -------- create persistent send request ------------------------
          send_request = cl_bcs=>create_persistent( ).
          clear document.
    * -------- create and set document with attachment ---------------
    * create document from internal table with text
          document = cl_document_bcs=>create_document(
          i_type = 'RAW'
          i_text = text
          i_length = '12'
          i_subject = '' ).
    *changing the content of the attachment
          binary_content[] = l_iobjbin[].
    *change the name of the PDF attachment
          concatenate 'Build ID' s_buildid_i 'Rev' v_buildid_rev
                              into i_att_sub separated by space.
    * add attachment to document
          call method document->add_attachment
            exporting
              i_attachment_type    = 'PDF'
              i_attachment_subject = i_att_sub
              i_att_content_hex    = binary_content.
    *setting the option to send an e-mail more than 50 characters
          call method send_request->set_message_subject
            exporting
              ip_subject = t_sub.
    * add document to send request
          call method send_request->set_document
            exporting
              i_document = document.
    * --------- set sender -------------------------------------------
    * note: this is necessary only if you want to set the sender
    * different from actual user (SY-UNAME). Otherwise sender is
    * set automatically with actual user.
          sender = cl_sapuser_bcs=>create( 'VATSUPPORT' ).
          call method send_request->set_sender
            exporting
              i_sender = sender.
    *Send the list based on receivers list obtained
          loop at l_ireclist.
            AD_SMTPADR = l_ireclist-receiver.
    * --------- add recipient (e-mail address) -----------------------
    * create recipient - please replace e-mail address !!!
          recipient = cl_cam_address_bcs=>create_internet_address(
          AD_SMTPADR ).
    * add recipient with its respective attributes to send request
          call method send_request->add_recipient
            exporting
              i_recipient = recipient
              i_express   = 'X'.
          ENDLOOP.
          call method send_request->set_status_attributes
            exporting
              i_requested_status = 'E'
              i_status_mail      = 'E'.
    * To send the mail immediately
          call method send_request->set_send_immediately( 'X' ).
    * ---------- send document ---------------------------------------
          call method send_request->send( ).
          commit work.

  • How to send attachments using HTTP Binding Adapter?

    How to send attachments using HTTP Binding Adapter in Jdeveloper?
    Requirement: I need to send attachments to a system which can communicate with the middleware using https only.
    Kindly suggest..
    Edited by: Richa Juneja on Jan 28, 2013 4:03 AM

    Hi,
    Following links may help U
    /people/siva.maranani/blog/2005/09/03/invoke-webservices-using-sapxi
    http://help.sap.com/saphelp_nw04/helpdata/en/3c/b4a6490a08cd41a8c91759c3d2f401/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/29/5bd93f130f9215e10000000a155106/frameset.htm
    to know the basics about soap adapter u cn check out this link
    /people/padmankumar.sahoo/blog/2005/02/15/an-overview-of-soap
    to get in detail about the attachments chk out this link
    hi i am unable to attach an attachment in File to mail scenario
    Regards
    Pullarao

  • How to send meeting invites using Exchange Email Account

    Does anybody know how to send meeting invitations using the 3.0 software update?
    My corporate email is set up with an Exchange ActiveSync account, but I can't figure out how to send meeting invites?
    Is it a function solely of the iPhone 3.0 OS, or is it dependent on the Exchange setup.
    Any insight would be appreciated.
    David

    That is what I was afraid of...the good thing is that is the only feature (besides battery life) that I miss from my Blackberry. Thanks.

  • How to send image file through mail without   any attachment

    Plz tell  me how to send image file through mail without any attachment  ( i mean not converting  that image into pdf or any format )  i want to send that text or image  through mail .

    Hi Sandeep,
    I think you can setup the type of email in Shared office Settings in transaction S016.
    There is an option called <Preset document classes>
    You choose this pushbutton to branch to the maintenance screen for the document classes that are directly displayed to users in the Business Workplace for selection when they use the Create function. The name under which the documents are displayed can also be maintained.
    http://help.sap.com/saphelp_nw70/helpdata/en/6c/69c30f418d11d1896e0000e8322d00/content.htm
    Haven't tried it though.
    Regards,
    Siddhesh

  • How to Send Multiple Attachment by SOAP Adapter

    Hi,
    How to send multiple attachment by SOAP Adapter.
    I am able to send single attachment but at the time of sending multiple attachment i am not able to see in SXMB_moni.
    Regards,
    Anurag

    On the communication channel, please check the 'Do Not Use SOAP envelope' option. Also, please, add the "nosoap" attribute to the SOAP adapter caller. Check the note below for more information
    #856597 FAQ: XI 3.0 / PI 7.0 / PI 7.1 SOAP Adapter
    > "How does the nosoap mode work for the SOAP sender adapter?"

  • How to send a request and get a response through xml

    How to send a request and get a response through xml files?

    This is the code that works for me. Hope you find it useful.
         public static String sendHttpGetRequest(String endpoint, String requestParameters){
              String result = null;
              // Send a GET request to the servlet
              try{
                   // Send data
                   String urlStr = endpoint;
                   if (requestParameters != null && requestParameters.length () > 0){
                        urlStr += "?" + requestParameters;
                   URL url = new URL(urlStr);
                   HttpURLConnection conn = (HttpURLConnection) url.openConnection();
                   conn.setRequestProperty("Accept", "application/xml");
                   // Get the response
                   BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                   StringBuffer sb = new StringBuffer();
                   String line;
                   while ((line = rd.readLine()) != null){
                        sb.append(line);
                   rd.close();
                   result = sb.toString();
              } catch (Exception e){
                   e.printStackTrace();
              return result;
         }

  • Outlook does not send meeting requests at all.

    Hi all
    My problem is both annoyingly simple and frustratingly annoying, but so far i haven't been able to solve it, nor has our IT department.
    In short, my Outlook doesn't send meeting requests to invite attendees. (My colleagues, same exchange server) I am the only one having this problem. When i send out a meeting request, it appears double in my calendar (asking me to accept) but nothing shows
    up in my sent items, nor in their calendar. If i delete the event, this is sent out; new ones and updates are not.
    To my knowledge, I use the standard IPM.Appointment form, but have used another standard form in the past (which was removed.)
    A new profile doesn't help, nor does uninstalling / reinstalling Outlook 2007. I installed Outlook 2010 - same phenomenon.
    It has worked all the time, but stopped working about 10 months ago, no apparent cause.
    I should add that I can send out meeting requests through Exchange from my iPad and iPhone, just not from my computer. (and no, they are not related - the time i got iPad and iPhone everything worked)
    OS is Windows 7 Professional 64 bits, MS Office 2010, various applications installed but none related to calendar useage / sync / ...
    I am local admin, this is my work PC so no 'dubious' SW installed, nor authorised.
    According to the server guys, there is nothing exceptional like the forms attached to my account - they claim it's something local, but also have no clue what it might be. Even Mr. Google or Ms. Bing do not provide an answer, so i'm hoping someone here might
    outsmart everyone else and come up with a solution.
    (ps - i'm quite sure it isn't "stupid user error" either, I'm an IT specialist/consultant/developer - but this one baffles me and everyone looking for it...)
    Added info - on my PC, when logging in with a different account but connecting to my own exchange account, it works.
    Replacing forms related info from the user/appdata folder of the functional user towards the non-functional user account didn't work. (even though the information was different)
    No difference in the registry as i can see.
    Tried to add ForceFormReload to the registry - no use.
    I activated logging, also nothing in there.
    I also receive no error whatsoever, it really is like Outlook simply isn't configured to send out meeting requests anymore...
    Also, no errors in the event viewer in case you were wondering.
    When working offline, it is clear that the meeting requests simply do not enter the 'outbox'. (cancellations do)
    Assuming it might be a corrupt DLL somewhere, i scheduled a Chkdsk C: /F/R this evening. A long shot, yes, but grasping at straws here...
    Thanks in advance for your help,
    Kind regards,
    Dennis

    solved - completely uninstalled, reboot
    removed all keys in HKEY_CURRENT_USER\Software\Microsoft\Office\14.0 (the entire folder)
    removed all outlook related registry keys in HKEY_CURRENT_USER\Software\Microsoft\Office\11.0 and 12.0, also in 8.0 and 9.0
    removed HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook completely
    rebooted
    installed Office Pro2010 again, and now it works.
    so in short - there was a messed-up registry key somewhere in there, that was missed by installing it, or even completely reinstalling it.
    FYI - all my settings remained the same, no info or config loss except the colour profile i used...
    Grtz,
    Dennis

  • Sending meeting requests

    Good evening,
    I am having trouble sending meeting requests from my iPhone, iPad and Mac computer. If I send the request for 10am, the appointment is received on the blackberry and samsung as 9am (I have not tested other phones). I have tried all the timezone settings which all seem correct...
    If I receive a meeting request from my colleagues, the problem does not exist, so I assume that my timezone settings are correct.
    Thanks.

    Hi Rory,
    According to your description, my understanding is that you want to use Exchange email for Google Calendar.
    There are two articles for Integrating Microsoft Outlook and Exchange with Google Apps, please take a look at:
    Integrating Microsoft Outlook and Exchange with Google Apps
    Migrate from Microsoft Exchange
    In addition, as you are using Google apps, I suggest you ask Google support for help.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • How to get meeting requests with Hotmail Exchange account on iphone

    I have the iphone 4 running on IOS 5. I have a business POP3 account and a hotmail exchange (IMAP) account on the phone. 
    When I send a meeting request to the POP account, I can select the ics attachment and accept the meeting. But the ics attachment on meeting requests send to the exchange account is not selectable.
    I saw previous discussions concerining not being able to send meting requests on the same exchange system but dont think this is what is happening. (I am sending meeting requests using outlook on my work PC to my personal iphone)
    thanks in advance

    Do you have computers as well which your phones sync from?
    Copy the songs to your machine using the Home Sharing
    If you have not already done so then Authorise your computer with her Apple ID then you can play and sync this content to your phone

  • How to send sapmails to external mail systems

    Hi,
    how to send sapmails to external mail systems....
    like if we want to mail a purchase order from SAP System to *@yahaoo.com or @.com.
    TY.

    hi manish,
    u can do it.
    chk this .
    chk this code
    DATA: objpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
    DATA: objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
    DATA: objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: reclist LIKE somlreci1 OCCURS 5 WITH HEADER LINE.
    DATA: doc_chng LIKE sodocchgi1.
    *& Form f_send_mail
    text
    --> p1 text
    <-- p2 text
    FORM f_send_mail .
    *store the vendor name, vendor email id , employee name and employee
    *email id in the internal table int_crb
    Creation of the document to be sent
    CLEAR doc_chng.
    REFRESH objpack.
    REFRESH objhead.
    REFRESH reclist.
    REFRESH objtxt.
    File Name
    doc_chng-obj_name = 'SHIPMENT'.
    Mail Subject
    CONCATENATE 'Shipment Document No.' int_crb_mail-shipdocnum
    'Cleared.'
    INTO doc_chng-obj_descr SEPARATED BY ' '.
    Mail Contents
    objtxt-line = 'Hi,'.
    APPEND objtxt.
    objtxt-line = ' '.
    APPEND objtxt.
    CONCATENATE 'Shipment Document Number ' int_crb_mail-shipdocnum
    ' cleared for move.' INTO objtxt-line SEPARATED BY ' '.
    APPEND objtxt.
    objtxt-line = ' '.
    APPEND objtxt.
    CLEAR objtxt.
    objtxt-line = 'Regards '.
    APPEND objtxt.
    objtxt-line = ' '.
    APPEND objtxt.
    objtxt-line = 'SAP '.
    APPEND objtxt.
    CLEAR objtxt.
    APPEND objtxt.
    DESCRIBE TABLE objtxt LINES tab_lines.
    READ TABLE objtxt INDEX tab_lines.
    doc_chng-doc_size = ( tab_lines - 1 ) * 255 + STRLEN(
    objtxt ).
    Creation of the entry for the compressed document
    CLEAR objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'RAW'.
    APPEND objpack.
    Completing the recipient list
    target recipent
    CLEAR reclist.
    reclist-receiver = int_crb_mail-empperid. "employee email ID
    "wf_empperid.
    reclist-express = 'X'.
    reclist-rec_type = 'U'.
    APPEND reclist.
    copy recipents
    CLEAR reclist.
    reclist-receiver = int_crb_mail-smtp_addr."vendor email id
    reclist-express = 'X'.
    reclist-rec_type = 'U'.
    reclist-copy = 'X'.
    APPEND reclist.
    Sending the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = doc_chng
    TABLES
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    receivers = reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    operation_no_authorization = 4
    OTHERS = 99.
    COMMIT WORK.
    SUBMIT rsconn01
    WITH mode = 'INT'
    WITH output = ' '
    AND RETURN.
    ENDFORM. " f_send_mail
    for any clarifiaction pls mail me.
    pls reward points, if this helped u.
    regards,
    anversha.
    [email protected]

  • Sending Meeting Requests through BPEL

    Hi,
    I am working on Jdeveloper 11.1.1.5.0, I want to send a meeting request(to multiple recipients) on Outlook or any other mail account through BPEL. Can anyone suggest how to go about that?

    Hi whartung,
    Thanks for the reply! Appreciate it.
    I think what you are suggesting is exactly what Outlook View Control is. Unfortunately, as I've mentioned, it seems that Microsoft did not give it sufficient controls to be able to pre-populate a new Meeting Request. You can only invoke the Outlook UI to create the Meeting Request, but there's no APIs to populate the new Meeting Request.
    Have however found a possible alternative in the meantime:
    Outlook supports iCalendar files which is a standard for calendaring information storage, and it is able to process a Meeting Request from an iCalendar file which contains details of the Meeting Request.
    So what I'm looking to do is this:
    1) Create the iCalendar file in the backend with Java.
    2) Send an email to the user(s) who is intended to receive the Meeting Request, with the iCalendar file attached.
    3) User clicks on the iCalendar file, which prompts them to process the Meeting Request.
    Somewhat indirect, but gets the Meeting Request across, and all the 3 steps are actually possible.
    Furthur to this, it opens up the possibility of sending Outllook Contacts (which supports iCard format) through similar mechanisms as well!

  • How to send alert when receiver JMS adapter fails? Please help!

    Hi experts,
       I have the following Asynchronous scenario:
       SAP R/3 -
    >IDOC----->XI>JMS--->BizTalk.
       I am sending IDOC from a given SAP R/3 system to XI. XI then sends the same to BizTalk via JMS adapter. In SXMB_MONI the message is successfully processed as it shows checked flag. But if I see the JMS communication channel status in runtime workbench then there it shows error saying JMS queue user id or password not found.
    How to send this JMS adapter error as alert?
    I also tried configuring alert rule in runtime workbench but still it does not trigger any error.
    I have also verified the alert category and everything is fine with that.
    What could be the problem? How can I send an alert when an Async adapter fails?
    Thanks & Regards,
    Gopal

    Hi! GOPAL,
    Once make sure whther all the below mentioned steps are configured correctly or not ok
    1: First make sure whether you are working on SAP XI or PI 7.1
               a) If XI you need to create Alerts (ALert Category) in CCMS ABAP stack in the
                        Tcode. ALRTCATDEF
               b) Open the alert category/classification definition environment (transaction ALRTCATDEF).
         ensure you are in change mode.
               c) In the group box with the alert classifications, right-click All classifications to open the   
                    context menu, and choose Create.
               d) Under Classification, enter a name for the classification.
               e) Under Description, enter a description of the classification.
               f)  Save your entries.
               g) Then go to RWB-->Go to ALERT Configuation and ADD the RULES to your alert category gor 
         which created there in the abap stack.
    Note Suppose if you want those ALERTS to come to your MAIL then again go to ABAP STACK and go to Tcode.  ALRTCATDEF and select your alert category press FIxed Recepients and there give your SAP XI ID's then  u can see those alerts in RWB-->ALERT INBOX
    Suppoe if you want those to mail then ask the basis team to link your company mail or personal mail ID to your SAP ID.
    2. Supppose if you are working on PI 7.1 Server.
         Only difference is creating Alert Category...Here you can create your ALERT Classification I mean   
         alert caltegory in the ESR (Enterprise Service Repository )
         Software Component >S CVersion>NameSpace-->Alert Category.
         You can configure how u configure there in abap stack such as long and short text every thing 
          except Fixed Receipients you need to give that recepients there only in ABAP STACK.
          what ever ALERT CATEGORY you are creating will reflect there in the ABAP STACK
         even you can Use these alerts Category in BPM --> CONTROL STEP -->Configure here in this step
    You can also reach alerts like this.
    NOTE  Most Important point is You can also view your mails or Alerts in the T Code:: SOST.
    Regards:
    Amar Srinivas ELi

  • How to send Mp4 file on Mail

    Please could some friendly person tell me how to send a recorded Mp4 track by email? I can drag it off the desktop (from iTunes) into a new message, but cannot play it back.

    Greetings,
    Why do you need to play it back? You already know what it is, so you just need to send it. Mail can't play these files; it has to use QuickTime to play them, so it's not unusual or unexpected that you can't play it in Mail.

Maybe you are looking for

  • Is there a way to force color management ON in Flash Player 10

    Here's my problem: I have a wide gamut display (calibrated and profiled) and with a wide gamut display, it is very important to have web browsing (and ideally everything else) fully color managed, because unmanaged colors get displayed horribly wrong

  • Photo to Itunes

    I recently updated my iTunes to the new Photo application on my Mac.  I have downloaded some new photos into Photo but they are not showing up in my iTunes library so that I can download them on my iPhone. 

  • How to check running instance of a program, when its run by a job

    Hello, I have a report run by a job, twice a day. The thing is, the second run cannot start, if the first one hasn't finished (quite possible). So i would like in my report to check if an instance of this report is already running. I tried the soluti

  • CATALINA_HOME error

    Hi, I've just started on Java, and therefore don't really know anything much. I've installed j2se and tomcat. I set the environment variables JAVA_HOME and CATALINA_HOME as instructed in the installation guide as follows: JAVA_HOME C:\j2sdk1.4.2_04 C

  • Where is the mail folder in N73

    I have a problem , I put it in this topic http://discussions.mea.nokia.com/discussions/board/message?board.id=messaging&message.id=5247 It could solved by knowing the path of the mail folder in N73 Please help :s