Attachment invoices by e-mail

Hi experts,
I want to email invoices generate in PDF Attachment, I custimized a output type with transmission medium (simple mail). I have the program RSNASTSO and Form Routine SAPOFFICE_AUFRUF_VX.
My question is how can I convert billing document into the mail?. Can I use as well as the report RSTXPDFT4 into the output type?
Thanks

Check these threads
[invoice in PDF format   |invoice in PDF format]
[Need to configure standard PDF form for billing invoice|Need to configure standard PDF form for billing invoice!]
[function module for sending e-mails with attachment   |Re: function module for sending e-mails with attachment]
thanks
G. Lakshmipathi

Similar Messages

  • Dynamic attachment name with receiver mail adapter and use mail package

    We need to send mapped XML payload as attachment (with dynamic name) to a recepient (recepient email id is part of input xml payload, but not part of the mapped XML payload).
    I could probably do this using the adapter module (as per the following link),
    http://wiki.sdn.sap.com/wiki/display/XI/Adapter%20Module%20PI%207.0%20Set%20Attachment%20Name?bc=true
    I would like to explore if this would be feasible using Mail package and XI payload.I already have a Java mapping that is converting the input XML to required Output format. If I am using Mail package (XI Payload), how do I go about sending this Output XML from java mapping as attachment to email id available in the input payload?

    Hi,
    1) XML payload as attachment (with dynamic name)
    2) recipient (recipient email id is part of input xml payload, but not part of the mapped XML payload)
    These two is possible by using Mail Package. You have a standard xsd for mail package which you can download from the SAP Note 748024.
    The xml created in you java mapping which will be your attachment should be put into the <content> tag of the mail package xml structure. and the file name can be set in the <Content_Type> tag.
    <?xml version="1.0"; encoding="UTF-8"?>
    <p2:Mail xmlns:p2="http://sap.com/xi/XI/Mail/30">
    <Subject>My Invoice</Subject>
    <From>from email address<;/From>
    <To>to email address</To>
    <Content_Type>text/plain;name="MyFile.csv";</Content_Type>  --> file name here
    <Content>123;A49;aaa</Content>   -> attachment xml here
    </p2:Mail>
    And you have to select MailPackage in the receiver mail adapter.
    Regards,
    Aravind

  • Whenever I send an e-mail with my yahoo account which is also my apple ID a small icon (personal) picture is attached to the e-mail. How do I remove this picture from being attached to all of my outgoing messages?

    Everytime I send a message from my yahoo account (which is also my appleID account) a small icon picture (which is a pic of my ex-boyfriend) is attached to the e-mail heading.  I'm able to notice  I want to remove this from happening. The picture is displayed on my iphone when I open up the mail.
    Steps I take:
    1. I write an e-mail message from my yahoo account to my other .edu account on a desktop computer.
    2. I send the e-mail message from my yahoo account to my other .edu account on a desktop computer.
    3. When I open up my .edu account on my iPHONE, there is a new message from my yahoo account.
    4. Upon opening the e-mail message on my iPHONE, in the title heading it has the title of the email along with a small (upper right) picture on the iPHONE.
    Another thing that I tested was the same thing on my iPAD for text messages:
    1. I set up my text messages to my yahoo account (which is also my apple ID account)
    2. I send a text message to a person and the same small icon picture is shown on the ipad with each message that is sent
    3. The person receiving the text message does not get the small icon picture; however, on the ipad it shows this picture (WHICH NEEDS TO BE REMOVED)
    I need to determine how this icon picture is associated with both my yahoo and apple ID account. The funny thing is that I don't have this picture on any of my devices (mac, iphone, ipad). It has been completely removed from all of my technology sources. I'm thinking it has to be something to do with the origniation of my apple ID.
    PLEASE HELP ME....this picture is hurting my professionalism when I send outgoing messages.
    Thanks.

    search google for "iphone remove picture from contact"

  • I used to have a indicator of time when attaching file in Yahoo Mail...I no longer have that in Safari 5.1.5...How can I get that indicator back???

    I used to have a indicator of time when attaching file in Yahoo Mail...I no longer have that in Safari 5.1.5...How can I get that indicator back???

    I tried to find help with the support by web chat for 2 days already, but every time it says that chat is un available (even if it's suppose to be 24/7)... I dont know what else to do.... please help!

  • How to send concurrent program output file as an attachment in the notification mail

    Hi All,
    We are on Oracle apps version - 11.5.10.2
    We have a requirement wherein we need to send the concurrent program output file as an attachment while sending the notification mail to the user.
    Currently we have tried the approach wherein we are specifying the user id in the OPTIONS tab (Notifying the following people) while submitting the concurrent program.
    But using this approach, the user gets only the URL of the output file in the notification mail and not the output file as an attachment.
    Kindly let us know if anyone has incorporated the logic to send the output file as attachment in the notification mail.
    Please Note - We do not want any custom code to be written to send the attachment.
    Any pointers to this will be helpful.
    Regards,
    Shruti

    Hi All,
    We are on Oracle apps version - 11.5.10.2
    We have a requirement wherein we need to send the concurrent program output file as an attachment while sending the notification mail to the user.
    Currently we have tried the approach wherein we are specifying the user id in the OPTIONS tab (Notifying the following people) while submitting the concurrent program.
    But using this approach, the user gets only the URL of the output file in the notification mail and not the output file as an attachment.
    Kindly let us know if anyone has incorporated the logic to send the output file as attachment in the notification mail.
    Please Note - We do not want any custom code to be written to send the attachment.
    Any pointers to this will be helpful.
    Regards,
    Shruti

  • How to populate a table by sending a csv attachment to a particular mail id

    Hi Experts,
    I have to populate a table in the database by sending a csv attachment to a particular mail id.
    Eg:
    I have a table , test
    with fields: name, designation, address
    and i am sending a csv attachemnt with the values , name, designation, address to a generic email id say : [email protected]
    my table -test should be populated automatically with the values from the attached csv.
    Any idea how this can be achieved ?
    Regards,
    Archana

    Hi,
    Why cant you try uploading the data in your csv file to your table by using external table concepts? This would help you much i beleive.
      CREATE TABLE "EXT_EMP_TEST"
       (     "EMPNO" NUMBER,
         "EMPNAME" VARCHAR2(20 BYTE),
         "JOB" VARCHAR2(20 BYTE)
       ORGANIZATION EXTERNAL
        ( TYPE ORACLE_LOADER
          DEFAULT DIRECTORY "DUMP_DIR"
          ACCESS PARAMETERS
          ( RECORDS DELIMITED BY NEWLINE
               BADFILE 'emp.bad'
                          LOGFILE 't.log_xt'               
                          FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY ' " ' LDRTRIM
                          REJECT ROWS WITH ALL NULL FIELDS
                "EMPNO",
              "EMPNAME",
              "JOB"                                                                         
          LOCATION
           ( 'emp_det.dat'
       REJECT LIMIT UNLIMITED;
    {code}
    In the above code, default directory is the place where the file resides in your server. So before creating an external table you need to follow the below steps,
    1. Create a default directory.
    2. Place your file into that directory.
    3. Create an external table using the above script.
    4. Just execute the simple select statement upon that external table, {code} select * from EXT_EMP_TEST {code}
    *NOTE: In the above exaple i have used .dat file to load the data, you need to specify .csv over there*
    Regards,
    Sakthi.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Sending mail with attachment fails on MAC Mail and WRP400.

    Sending mail with attachment fails on MAC Mail and WRP400.
    We have hundreds of WRP400 connected with Mac (Machintosh) computers. No special configurations are applied (no virtual server or DMZ). Web navigation, P2P programs and sending mail without attachment work right.
    The problem is the impossibility to send mails with medium or big size files attachment from MAC Mail.
    If we use Windows PCs or a different linksys routers (eg. WRT54G) the problem not happens.
    We have upgraded WRP400 firmware version from 1.00.06 to 2.00.05 but the result is the same. Sending mail with attachment using Mac fails.
    We tried to configure WRP400 with DMZ to a particular MAC. We tried to configure Virtual server on tcp 25 port of a MAC. The result is always the same.
    This is a WRP400 bug? Windows PCs work right. MAC and MAC mail works right with other linksys router.
    We need help. Thanks.

    The problem was fixed since beta firmware 2.00.11.
    I think that this issue was caused from a bug that decrease upload bitrate of WRP400 after some days of activity.
    See more details on Cisco forum under title "WRP400 stops responding after browsing certain websites".
    Thanks.

  • How to add an attachment to an e-mail. With out it showing  up and the end of a e-mail.

    How to add an attachment to a e-mail. With out it showing up at the end of the e-mail.

    https://discussions.apple.com/message/17397882#17397882
    How can I prevent mail attachments embedding when sending mail
    Note there are 14 pages of replies

  • How Do I Open a PDF attachment in IOS 8 mail app?

    Hi all,
    I am curious how do I open a pdf attachment in IOS 8 mail app?

    Hi,
    My friend has what you stated = a square with and arrow coming out the top and works as expected
    BUT I don't
    what happens to me - is the small muti page opens and does NOT show a pdf ICON - BUT DOES show only the first page and I DO NOT GET = a square with and arrow coming out the top TO CLICK ON!
    So it seems the normal behavior is not happening - how can I fix this - to see ALL pages and or open pdf in another pdf app?

  • Character- and attachement problems by E-Mail recipients

    After upgrading to OSX Tiger and using Mail, I am experiencing problems by some of our customers using MS Outlook.The Danish characters ÆØÅ (æøå) are transformed into hieroglyphs, making the message look rather silly, if not unreadable. Also some of them can't locate (JPEG) attachements in the E-mail - they appear as picture in the mail, but can't be saved as files. The problem is only concerning JPEG-files - PDF's and ZIP's work allright. Other MAC- and PC users have none of the problems.
    Any proposals?
    G5 Power Mac   Mac OS X (10.4.4)  

    This is an Outlook problem (especially if other Mac and PC/Windoze users have none of these problems) and I believe it may depend on the Outlook version the recipient is using.
    Sounds like you are using RTF for message composition and if so, try using Plain Text instead.

  • No longer able to attach .jpg images in Mail...

    I'm having problems attaching .jpg images in Mail. This problem started two or three days ago. I can attach .zip files, but I'm unable to attach .pdf or .jpg files. I have not tried other formats, as these are the two most common formats used.
    Has anyone else experienced this issue?
    Cheers. -m

    There was a discussion posted on this a while back:
    http://discussions.apple.com/thread.jspa?threadID=1545970&start=0&tstart=0
    I get this problem on my PPC, but not my Intel machine. Instead of using Server Admin, best to set this value (maxAttachmentSize) in the /etc/wikid/wikid.conf file. The value in Server Admin will still show '0', but I was still able to attach files up to the size I specified in the wikid.conf file.

  • Cannot open pdf attachment in my e-mail

    Cannot open pdf attachment in my e-mail                 I can open pdf files on the hard drive
    I am using Windows Internet Explorer 9, Microsoft Vista
    When I receive an e-mail with a pdf attachment a box pops up
    What do you want to do with
    get attachment __ aspx ? file =
    size: 3.11 kb
    from: blu166.mail.live.com
    open
    the file won't be saved automatically
    save
    save as
    cancel
    Your help will be appreciated

    Hi Pat
    Microsoft upgraded Hotmail e-mail accounts to Outlook.com
    The Print Screen key has no function.....when the 2 boxes mentioned above appear on the monitor (which I have detailed) they require action or I cannot proceed to another screen or function.
    Maybe my problem should also be sent to Microsoft Customer Service...your thoughts.
    I note there has been 106 views hard to believe that no one else has had this problem.
    Appreciate your time

  • How do I compress a pdf with Create PDF so that I can attach it to e-mail?

    How do I compress a pdf with Create PDR so that I can attach it to e-mail?

    Hi, Blue Mamba.
    Your file is automatically compressed when using the CreatePDF service to convert from some other file type (e.g. Word, Excel) to PDF. For example, most PowerPoint files get compressed 50% to 90% over their original size.
    If there is a particular file you're converting to PDF using the CreatePDF service, and you are not seeing the size savings that you would like, please provide more details.
    Thanks.
    Dave

  • How do I save attachement from my e-mail to my I pad

    Pleas I need to save some file or an attachement on my e-mail address inbox to my ipad3 but  I found it difficult .
    And which application do I need to do this. Am seriously concussed and I can't go further. This is seriously hinder my work in the office
    Thanks you all
    Olowolove

    Just go to app store and just type iBooks, install it using ur apple ID
    Then, go to the place where the attachment is there (e.g. Mail), download the pdf file, if the logo of the file turns to a pdf file from a arrow pointing down, click the file, at the upper right corner there is a share button, click it, then find "Open in iBooks" and then u may now view the PDF File over and over again even if u sign out ur e-mail
    If this helped please click the "this helped my question", needed for points hehehehe
    Best Regards and Good Luck!

  • How to remove a Attachment in Module for Mail Adapter

    Hi together,
    we are trying to remove a Mail Attachment within a outgoing Mail with the help of a new Module executed by the Mailadapter. Since we are using the XI 3.0, we are trying to do that by this statements:
          Message msg = (Message)inputModuleData.getPrincipalData();
          Iterator it = msg.getAttachmentIterator();
          Payload payload;
          do
                payload = (Payload)it.next();
                if(payload.getName().equalsIgnoreCase("MailMessage"))
                      it.remove();
          }while(it.hasNext()); ...
    The statement "it.remove" doesn't work.
    Does anyone have an idea, how we can remove the attachment?
    Thanks & Regards
        Thomas

    I am sorry, the adapter module API does not support the removal of an attachment.
    Regards
    Stefan

Maybe you are looking for

  • Error "TK287" when releasing a request - Special character "_" is invalid.

    I have some tables in Solution Manager and having some warnings: Table: CRM_SVY_DB_ST Field value:CRM_SVY_GENERATE_BSP_TEMPLATE.XSLT Field: TRANSFORMATIONID It doesn´t accept the special character "_" Below the error when releasing and the explanatio

  • Rendering Question

    I have a Sony HD video camera. Nothing special just a nice pro-sumer camera. Whenever I capture the video I can view it just fine in the viewer but when I bring it to my timeline after I have made my in and out points my computer wants me to render t

  • Best note taking software?

    Best with Mt Lion? Note Taker HD? Notebook (Circus Ponies)? Notes Tab? Other(s)? Thanks.

  • Ideapad S2109 ROM equivalent located and flashed! I brought this back to life!!

    UPDATE!!!!!!!!!!!!!! Great news everyone!  After almost a year of tinkering with this tablet, I have successfully brought the tablet back to life!!  I am working to get the Medion Lifetab S9512 firmware files hosted as the Medion Lifetab S9512 is jus

  • Wanted: ARIS/Solution Manager Benefits!

    Hi I am currently working on an analysis that has to lead to a recommendation of a specific tool to handle business descriptions etc. The corporation I am doing this research for is in a full blow wall to wall SAP transition. I am therefore very inte