How to email .pdf PO to supplier after approval?

Hi All,
My client has a requirement to email .pdf PO to supplier after approval of PO.
kindly give me setup steps as to how I can acheive this through workflow.
You can mail me setup steps to this email address: [email protected]
Thanks,
Younus

The setups are detailed on a note in the following metalink note.
FAQ: E-Mail PO Functionality [ID 307577.1]
Basically, make sure XDO is installed, change Purchasing email option to PDF and make sure you enter an email address on po site. For details, refer to the note above.
Hope this answers your question
Sandeep Gandhi
Omkar Technologies Inc.
Independent Techno-functional Consultant
513-325-9026

Similar Messages

  • How to email PDF form as attachment?

    Hi All,
    I have developed online interactive form app(dynamic).
    When user clicks the submit button after entered the data,
    I want to email the PDF form as an attachment to some users.
    Could anyone please explain the steps or give me some sample code?
    Thanks
    Sundar

    Hi Sundar,
    I suggest you to see<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2c678dc3-0401-0010-3c80-8ef48f450491">this.</a>
    Regards,
    Ram.

  • How to email PDF form as an attachment?

    Hi All,
    I have developed online interactive form app(dynamic).
    When user clicks the submit button after entered the data,
    I want to email the PDF form as an attachment to some users.
    Could anyone please explain the steps or give me some sample code?
    Thanks
    Sundar

    I found this in one of the forums dont remember which, here is the code
      public boolean EmailForm( java.lang.String pernr, java.lang.String toEmail, java.lang.String fromEmail )
        //@@begin EmailForm()
    boolean flag = true;
       try {
        String host = "exchangerelay.yourserver.com";
        //    Get system properties
        Properties props = System.getProperties();
        //    Setup mail server
        props.put("mail.smtp.host", host);
        //    Get session
        Session session = Session.getDefaultInstance (props, null);
        //    Define message
        MimeMessage message = new MimeMessage(session);
        byte[] b = wdContext.currentContextElement().getPdfSource();  
       //Attachment
        ByteArrayInputStream ba = new ByteArrayInputStream(b);
        String filename ="Filename.pdf";
        //This will create a file on the server under folder "server0"
       File file = new File(filename);  
        FileOutputStream fos = new FileOutputStream(file);
        int i = 0;
        for (i = 0; i < b.length; i++) {
         fos.write(b<i>);
        fos.close();  
        DataSource source = new FileDataSource(file);
        BodyPart messageBodyPart = new MimeBodyPart();
        message.setFrom(new InternetAddress(fromEmail));
        message.addRecipient(
         Message.RecipientType.TO,
         new InternetAddress(toEmail));
        message.setSubject ("Subject : ");
        message.setText(
         "This is a confirmation receipt.");
        Multipart multipart = new MimeMultipart();
        messageBodyPart.setDataHandler(new DataHandler(source));
        messageBodyPart.setHeader("Content-Type", "application/pdf");
        messageBodyPart.setFileName(filename);
        multipart.addBodyPart(messageBodyPart);
        message.setContent(multipart);
        Transport transport = session.getTransport("smtp");
        transport.connect(host, "username", "password");
        transport.sendMessage(message, message.getAllRecipients());
        transport.close();  
        flag = true;
        //delete file if you want to here
        file.delete();
       } catch (FileNotFoundException e) {
        flag = false;
        wdComponentAPI.getMessageManager().reportException(
         "FileNotFoundException : " + e.getMessage(),
         false);
       } catch (IOException e) {
        flag = false;
        wdComponentAPI.getMessageManager ().reportException(
         "IOException : " + e.getMessage(),
         false);
       } catch (MessagingException e) {
        flag = false;
        wdComponentAPI.getMessageManager().reportException(
         "MessagingException : " + e.getMessage(),
         false);
       return flag;
        //@@end
    thanks,
    Sanketh

  • How to email Pdfs Using BI PUBLISHER

    Hi ,
    we have a bi publisher report which generates AR Pdf Invoices.
    We have a requirement that when bi publisher generates pdf invoices it should send an email to the customer with the pdf file as attatchment.
    The Customer name will be on the invoice.Now in bursting file we have the code like
    <?xml version="1.0" encoding="UTF-8" ?>
    - <!-- $Header: BURSTING_FILE_XXXX_AR_XXXINVOU1.xml 115.3 2009/01/27 01:11:57 xdouser noship $
    -->
    - <!-- dbdrv: none
    -->
    - <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    - <xapi:request select="/XXXINVOU/LIST_G_INVOICE_HDR/G_INVOICE_HDR">
    - <xapi:delivery>
    <xapi:filesystem output="${CF_PDF_DIR}/${D_PDF_FILE_NAME}" />
    </xapi:delivery>
    - <xapi:document output-type="pdf">
    <xapi:template type="rtf" location="xdo://XXXX_AR.XXXINVOU1.en.US/?getSource=true" filter=".//G_INVOICE_HDRC_ORG_ID = 240 or C_ORG_ID = 330 or C_ORG_ID = 407 or C_ORG_ID = 994 or C_ORG_ID = 1174" />
    <xapi:template type="rtf" location="xdo://XXXX_AR.XXXINVOU1_AUSTRALIA.en.US/?getSource=true" filter=".//G_INVOICE_HDRC_ORG_ID = 592" />
    <xapi:template type="rtf" location="xdo://XXXX_AR.XXXINVOU1_JAPAN.en.US/?getSource=true" filter=".//G_INVOICE_HDRC_ORG_ID = 550" />
    <xapi:template type="rtf" location="xdo://XXXX_AR.XXXINVOU1_SWEDEN.en.US/?getSource=true" filter=".//G_INVOICE_HDRC_ORG_ID = 852 or C_ORG_ID = 1913 or C_ORG_ID = 1973 or C_ORG_ID = 1873" />
    <xapi:template type="rtf" location="xdo://XXXX_AR.XXXINVOU1_GENERIC.en.US/?getSource=true" filter=".//G_INVOICE_HDRC_ORG_ID != 240 and C_ORG_ID != 330 and C_ORG_ID != 407 and C_ORG_ID != 550 and C_ORG_ID != 592 and C_ORG_ID != 994 and C_ORG_ID != 1174 and C_ORG_ID != 852 and C_ORG_ID != 1913 and C_ORG_ID != 1973 and C_ORG_ID != 1873" />
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    could anyone please suggest me what code i should add to this and where should i add.
    Thanks,
    M

    Are you using Oracle's BI Publisher (the full module)? or are you using the BI Publisher that comes as part of PeopleSoft Application?
    The reason I am asking is that we have a similar request were we need to email out our ACH advices from Accounts Payable and I have been told we need to create an application engine program to run the BI Publisher report and then email thru the SendMail() function.
    I am just trying to see if anyone has already done something like this as I cannot find sample app engine coding to run, save and email an ACH pdf file.
    Thanks.
    Jennifer

  • HT204365 How to email pdf files from iBook in iPad?

    Why I can only see "print" but no "email" button when i open my pdf files in iBooks? As far as i know i should be able to email my pdf files from ibooks right?

    Yes you should be able to email a PDF from iBooks. When you tap the arrow in the upper left the option should appear.
    Maybe some basic troubleshooting steps will help.
    Quit the iBooks app completely and restart the iPad. Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar. 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.
    Or .... Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    You may want to consider deleting the app and reinstalling. Tap and hold down on the app icon until it jiggles, then tap the X on the icon. Tap the home button to stop the apps from jiggling. Download iBooks again.

  • How read the PDF and XML files after Unzipping the folder

    Hi Gurus,
    I have a zipped folder and i this two types of files .XML and .PDF files.
    I am able to unzip the folder and reading the .XML files, unable to read the PDF files.
    I want to send this PDF file to the target as it is.
    Please help me.
    Regards
    Sreeni

    Hi,
    Hi ,
    Plse see the below thread
    PI 7.1 : Taking a input PDF file and mapping it to a hexBinary attribute
    It will help you.
    You can write custom adapter modules:
    Java Mappingh;
    SAP Conversion agent:
    http://www.riyaz.net/blog/parsing-pdf-files-using-sap-conversion-agent-part-i/technology/sap/628/
    http://help.sap.com/saphelp_nw04/helpdata/en/43/4c38c4cf105f85e10000000a1553f6/content.htm

  • Rfkord11 email pdf

    hi,
    may i know how to email pdf file for customer statement in FI module via tcode f.27.
    i got the fm for pdf and also email in the include rfkori90 but do not know how to trigger it.
    any advice.
    thanks

    Well actually whatever report fomat u get just export it into PDF or excel by going into menu System ---> List -
    > Save.
    Whatever format u want save it and then mail it.
    Thanks,

  • I cannot recover my pdf files from ibooks after upgrading to os 6

    Does anyone know how to recover pdf files from ibooks after os 6 upgrade?

    In your next-to-last post, you said: "... when I recovered the iBooks app, it was empty due to having a different owner of the app."
    I'm suggesting you change the owner of the app and maybe then it won't be empty.
    You can delete/remove the app and get your own from the app store and install it.  Maybe then you'll see your PDFs.

  • How do I open email pdf's on iPad and iPhone?

    HII have an iPad on Ios7 and an iPhone 4.  I can't open PDF attachments on either device.  When I click I them in the email, it starts to load in Safari with the blue line running across.  The line then disappears and then a blank page appears.
    I've tried downloading Adobe from the App Store In order to 'share' by clicking on the icon that is a square with an arrow poking out of the top, however Adobe doesn't appear here when I click on it - just message, mail, twitter and facebook.  There's no option to 'open in' on the bar underneath this (the one with bookmarks, reading list etc).
    can anyone help please?
    My mail account is an @me.com on iCloud.
    Thanks.
    Fran.x

    lillylocket,
    What is your mail app on your iPad and iPhone?  Typically PDF attachments are opened in the preview screen of Apple Mail.  But it sounds like your PDF attachments are opened in Safari.
    Please you take a look at the Safari section of the following FAQ documents to open PDF documents in Adobe Reader for iOS.
    For iPad, How to open PDF documents in Adobe Reader for iOS (iPad on iOS 7 or 8 version)
    For iPhone, How to open PDF documents in Adobe Reader for iOS (iPhone on iOS 7 or 8 version)
    As you have discovered, Safari does not include the "Open In" options for the Share button.
    When you tap anywhere in a PDF document in Safari, the secondary toolbar is displayed below the top toolbar.  You need to look for the text label button "Open In..." instead of the Share button.
    Hope this helps.
    Please let us know if you have additional questions.

  • How to create PDF file from autocad 2000i, thru plotting sequence, I pick adobe PDF in the printer option, save as a PDF but can't look at it after in adobe

    How do you zoom in to autocad dwg to plot to PDF, then review the file, it won't open the PDF just created in adobe, want to email PDF to outside printer

    I create pdf with acrobat through autocad, then i try to open it with adope acrobat or reader and the message says could not open lg.pdf cause it is either not a supported file type or the file has been damaged.

  • How to batch PDF multiple emails already saved to system

    Hi everyone,
    I would be very grateful for advice as to whether there is a way to PDF multiple saved emails at once using Abode? I have seen that it is possible to create multiple PDFs at once of emails in Outlook - but is there a way of batch creating multiple PDFs from emails which have already been saved to the system as 'Outlook Items'?
    Whilst I know how to batch PDF Word documents etc, this doesn't seem to be an option in Adobe (we use Adobe XI) for emails. Likewise, if I simply highlight all the emails and right-click 'Convert to Adobe PDF', this replaces the name of each email as 'Memo Style' (whereas it works for Word documents).
    We have many hundreds/thousands of emails saved on our work system as 'Outlook Items' (done before we upgraded systems and were able to save emails directly as PDFs from Outlook), and we need to convert them to PDF for upload to a new database programme, so it would be very helpful indeed if there were a way of avoiding having to convert them all one by one...
    Many thanks in advance,
    Zara

    What programming method are you using with the Acrobat SDK?

  • How can i send emailed PDF's directly to my iPad iBooks rather than have them sitting in my inbox unorganized...

    I had hoped that my PDF's in my iPhone iBooks would automatically also go to my iPad iBooks without the need for syncing. Is there some setting to make that happen?
    If that is not an option, how can I send my emailed PDF's directly to my iPad iBooks; I no longer want them sitting in my email folder since there is no way to organize the content of the email folders and I am looking for a way to organize this information that I need to be able to quickly retrieve.

    Thank you for your rapid reply! Yes, I was able to move them from my email to iBooks on my iPhone in this way, but the same method did not work for the iPad . I was really hoping for some super simple solution... thanks for your comment though

  • How Do I Secure an Emailed PDF to the Recipient's PC?

    Hi All,
    How can an emailed PDF be tied to a recipient's PC so that it can only be viewed on that PC?
    I do not want to use password control or high-end 3rd party systems, e.g. FileOpen, LockLizard, etc.
    I only care about restricting access (viewing), not distribution, editing, renaming, etc.  In fact, I'd prefer that
    the secured PDF could still be edited and resaved by the recipient, just not viewable on another machine.
    Thanks for any help!

    It can't be done without using a Digital Rights Management solution (using a server and expensive software).

  • How to make pdf file auto open with adobe reader after downloaded

    how to make pdf file auto open with adobe reader after downloaded

    I note from your system details that you have the plugin for adobe pdf s so I would have expected the files should open in firefox '''without''' you needing to explicitly download them.
    Once the files are open in firefox, you will also get the option to save them permanently to a location on your computer. If you wish I suppose you could set the file type pdf to be associated with and be opened by firefox instead of with the Adobe Acrobat Reader, but that would just seem to be an additional complexity.

  • How to athorize in ADE same PC after changing SSD at same email address?

    How to authorize in ADE same PC after changing SSD at my only email address?

    I'm not sure what you mean by changing SSD at my only email address?
    Try
    remove any old  authorization that may have got confused, ctrl-shift-D to ADE (cmd-shift-D on Mac)
    restart ADE
    authorize again with your old Adobe ID.

Maybe you are looking for

  • Safari quit unexpectedly and refuse to reopen

    Hi I just bought my macbook less than a week and I am experiencing this. my safari refused to reopen after prompting me for endless time. I'm prettty lost since I'm new to macbook. So im here to get help. so here will be the report of what i get afte

  • Hyper-V 2012 R2 roles, access denied, failed to connect to service, AzMan....

    Hi All, I have followed dozens of tutorials to set up roles for Hyper-V, but I keep coming up short. I have no problem managing the five domain-joined 2012 R2 Core Hyper-V servers we have remotely from my Windows 8.1 PC, but I have a lab box I would

  • How to open pdf or fdf file through firefox 3.0.5?

    Hi all,      I am trying to open a fdf file through firefox in linux machine by clicking the link on that it wants to open a fdf file from remote location. When I am trying to open then it will show an error message in error console like: Security Er

  • How to save a video file which uses the setCodecChain method on its video t

    hi! i really need your help please. i got the Code for RotationEffect and i would like to know how to save it to a file instead of playing it simultaneously in a player: Here is the code: Plz Help me!!! am doing my final year project import java.awt.

  • No photos in PDF-files synched to iBooks

    A new problem showed up, maybe by moving to the capacity limit? Some synched PDF-files appear in iBooks as "text only"! On the stationary Mac Pro all photos & illustrations are shown. Why not on the iPad 2? After synching all PDFs are automatically l