Print normal invoice and send invoice as pdf to creator of invoice

Hello to all,
this is my first post in this big, special and great community. 
Many thanks to all people in background for realizing and customizing !
I have a request to print the normal invoice and to send the invoice as pdf copy to the creator of the invoice at the same time.
Using include RVADOPFO and medium 5 would be the correct solution, if I could use the email field in customer master data entering the mail adress of the creator.
But it is not possible, the field is used otherwise.
Can anybody help me to solve the problem ?
Thanks in advance and regards
Claus

Hi,
One Print Program is sufficient to generate the Print invoice and send the Invoices as PDF to  customer.
In the NACE transaction code , In the OUTPUT TYPE define a output with the  Transaction medium as 1 & 5
In the CONDITION RECORDS in VV33 also maintain the MEDIUM as 1 and 5
Alternatively you can you one program to generate the PDF and save to your LOCAL file and send to customer
The PROGRAM to generate the PDF is  RSTXPDFT4
Please check them and let us know your feedback
regards,
santosh

Similar Messages

  • How to create a pdf for the URL attached to an invoice and send it as an attachment in a mail

    HI,
    I have requirement where i need to get the URL attached to an invoice, create the pdf and send as an attachement in a mail.
    The URL attached to an invoice can be seen by following the path : VF03-> Billing document->system->Services for object ->Attachement list.
    On searching through existing forums, i found that there is a table 'SRGBTBREL' which stores relationships of GOS object. On giving the invoice number in field 'INSTID_A', i could find an entry in this table.
    To get the content, i used the class CL_FITV_GOS, method GET_CONTENT. To this method i passed following values:
    IV_ATTA_ID = FOL21000000000521URL39000000000012 (The value if field INSTID_B from table SRGBTBREL)
    IV_OBJTP   = 'URL'
    On execution, i get URL link but the content table is empty.
    Could anybody provide some input on how i get the content? Or may be how i can create pdf from the URL link and attach it to mail as an attachment?
    Thanks,

    Hi Amit,
    Solution provided by you is working when the link length is one line but it is not working for more than one line
    Eg: say link is https://......80 [80 characters long]
    I will give    <a href="https://...72            [in first line]
                     73..80">click here</a>         [in second line]
    I will get the output as 73...80">click here
    But i want only CLICK HERE in my output..
    Please suggest solution.
    Thanks,
    Kavya

  • Problems with saving and sending info in PDF form

    Hi,
    I'm trying to make a PDF form in Indesign CS5, exporting it to PDF, opening in Acrobat 9 Pro, and get the form to be able to send the info I type in the fields.
    So far I've had no problems making the form, exporting it, opening it in Acrobat 9 Pro, getting Acrobat 9 Pro to recognize the fields and save the form.
    However, I'd opened the form and filled it out and attached it to an email, and when I got the email, the form was blank.
    How do I get the form to save the data so it can be emailed?
    thanks for any help.
    Phil

    (Acrobat Pro and Pro Extended) Choose Advanced > Extend Features In Adobe Reader.
    I have somehow solved the problem. I tried using the above direction and it seems to have fixed the problem. I don't seem to get the message about not being able to save anymore and can send a completed PDF form that retains the information typed into the form.
    Thanks for all who made suggestions.
    Phil

  • Printing current time and date on a pdf document

    I wish for a pdf document to print the current time and date in the same place at the foot of each page, to the following format:
    Aug 04 2009, 5:11 pm.
    How do I do this please? Annoyingly I have managed it in the past, but when I open up my old documents and paste the relevant field into my new document, it either prints the old date/time or else prints the present date/time, but then doesn't refresh the next time I try to print - ie it stays at one date/time.
    I'd like to start again from scratch so that I have a better idea of how it works!!
    Regards
    Tony

    Eureka!
    I now have the answer, and hopefully this will help anybody else with a similar problem.
    In Acrobat:
    Create a text field and place it in the chosen place on the pdf form. Label it "datebox" in the General tab of Text Field Properties, and apply your character styles in the Appearance tab.
    Under the "Advanced" menu, go to "Document Processing" and then "Set Document Actions"
    Click on "Document Will Print" and then hit the "Edit" button. In the "JavaScript Editor" paste the following:
    var myfield=getField("datebox");
    var date=new Date();
    date=util.printd("mmm dd yyyy, h:MM tt", date);
    myfield.value=date;
    Hit OK.
    You have now given the instruction that whenever you print, the field named "datebox" will print the current time and date in the following format:
    Aug 05 2009, 9.37 am
    Regards
    Tony

  • When I print a picture and send it to my HP e-mail address I get vertical lines in the picture?

    I would like to know how to get rid of the vertical lines in the pictures when I send a picture to my HP e-mail address that came with my new printer also I seen in the HP E printer settings that there is no 4/6 option to select
    the 5510 Smart printer that I have I was disappointed to find out that the fandango app is not compatible with this printer
    and I was wondering when it would be available for my printer.
    how to fix that problem with the E print feature on my printer.
    thank you for any assistance that you could give me
    This question was solved.
    View Solution.

    Hi Shiba,
    I understand that your printer is not printing picures as expected.  I know you stated that you had tried troubleshooting steps above.  Where you able to take a look at this document?  Are you printing from a mobile device or computer?
    Hope this helps.
    **If you find this helpful or want to say thanks make sure to click the white star under my name to give me Kudos. **

  • Saving and sending Adobe Form pdf from WebDynpro

    Hi,
    I'm developing an application which receives data from a RFC to a R/3. The datas are displayed on a pdf-Document in a Webdynpro. This works fine.
    Now I want to send this form as attachment in an email. Do I have to save it first as pdf or can I send it directly?
    On SapHelp I found a tutorial how to save a form as pdf:
    http://help.sap.com/saphelp_nw04/helpdata/en/dc/f1783fe3263042e10000000a114084/frameset.htm
    I tried out the describtion but without success. I defined an action on the view where the form should be displayed and added the coding in the implementation of the event. In the form I added a button Submit to SAP from the Web Dynpro Library. When I press the button, nothing happens. Do I have to make any changes under Object->Field->Control Type?
    Another question about the coding:
    public void onActionsubmit(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionsubmit(ServerEvent)
              IPrivateResultView.IContextElement contextElement =
                   wdContext.currentContextElement();
              byte[] bytes = contextElement.getPdfSource();
              try {
                   File file = new File("C:
    temp
    example.pdf");
                   FileOutputStream os = new FileOutputStream(file);
                   os.write(bytes);
                   os.close();
              } catch (IOException e) {
                    // do something
                   e.printStackTrace();
              wdThis.wdGetAPI().getComponent().getMessageManager().reportSuccess(
                   "You have pressed Submit!");
        //@@end
    The path where the pdf shall be saved is "C:
    temp
    example.pdf", I expected something like "C:\temp\example.pdf" on a windows machine.
    Where will the pdf be saved? On the machine i deployed the application (what about rights for saving) to or localy on the machine I start the app?
    Does anyone knows how to send the pdf by email when saving the form or knows a helpful tutorial?
    Many thanks for your help
    Mathias Lange

    Hi all,
    doing Tutorial 31 from SDN (Interactive Forms using E-Mail) I have a problem with the entries for the smtp-host in the coding.
    I always get the error message: 
    Sending failed;  nested exception is: com.sap.engine.services.javamail.exception.JavaMailMessagingException: Cannot send message to host xxx:25 using the SMTP protocol.
    //@@begin onActionSendForm(ServerEvent)
    Properties props = new Properties();
    String host = "xxx";
    props.put("mail.smtp.host", host);
    In host I entered the entrie for the smtp i use in Outlook, where it works fine. In the Tutorial i get the errormessage.
    I have an smtp-server from our company with which it works too, but it is not the smtp used by Outlook.
    And i can't use this smtp at my customers.
    Could it be a problem with the used ports or a needed authentication? In the Tutorial is no coding for this.
    Does anyone use a freemailer for this tutorial and have success with the smtp of this freemailer?
    Kind Regards
    Mathias
    Message was edited by: Mathias Lange

  • Cannot get my printer to scan and send to PC

    Computer also cannot find Http://192.168.223.1 and no scan settings on HP 8600 printer device icon on computer.

    Hi,
    Are they (computer & printer) on a SAME network ? Where do you get the IP from ? Have you install software and drivers of your printer on your computer yet ?
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I have an iPad 3 and when trying to print Pages documents from EpsoniPrint there is a border, how can I get it to print normal without sending it to my Mac?

    I have both quickoffice and pages on my iPad, and when I try to print from either of those through EpsoniPrint they don't print "normal".  And pages prints with a border around it.  How can I adjust that or is there a better app for printing via wireless?  I have an epson 510, so it's wireless capable but not AirPrint.

    If you have a Mac I would recommend that your install Printopia. Here is a link to it:
    http://www.ecamm.com/mac/printopia/
    With Printopia, any printer that you can connect to your Mac will appear on your iPad as long as they are on the same wi-fi network. Try Printopia to see if that border goes away. Good luck!

  • Down payment Invoice and AR Invoice

    Hi,
    Can anyone please advise the details of this note for PL44 - I am unable to find reference to this note on the SAP notes page?
    Error 'Down Payment sum cannot be greater then total sum', note 1244893
    We have PL42.  We have created an AR invoice and a Down payment seperately.  Both IN and DT are appearing as positive figures in the incoming payment window - how can we reconcile these transations?  
    Thanks Lisa

    Note 1244893 - Error 'Down Payment sum cannot be greater then total sum'
    Summary
    Symptom
    In Tax Groups for output documents, you define a tax code. You
    create a sales order with this tax code. You create a partial A/R down payment request and pay it. You copy the A/R down payment request
    into the A/R down payment invoice. You open a created sales order and
    copy it into the A/R invoice, and then attach an A/R down payment invoice. You try to add the A/R invoice and get the following message:
    Down Payment sum cannot be greater then total sum [3703-3].
    The A/R invoice cannot be posted.
    Other terms
    JDT1, OINV, Financials
    Reason and Prerequisites
    Application error
    Solution
    This issue will be fixed in a future patch. See the info.txt file
    on SAP Service Marketplace to verify when the fix was included.
    Header Data
    Release Status: Released for Customer
    Released on: 15.09.2008  08:29:58
    Master Language: English
    Priority: Correction with high priority
    Category: Program error
    Primary Component: SBO-SD-INV A/R Invoice
    Secondary Components: SBO-FIN Financials
    Affected Releases
    Software
    Component Release From
    Release To
    Release And
    subsequent
    SAP-M-BO 2007 2007 A 2007 A  
    Related Notes
    1294071 - Overview Note for SAP Business One 2007 B Patch 09
    1257957 - Overview Note for SAP Business One 2007 A Patch 44

  • About AP Down Payment Request, AP Down payment invoice and AP reserve inv.

    Hi:
    Which are the main differences? I need to pay in advance to my supplier 100% of the invoice, the purchase invoice would be received one month later. How can i link them? And what about the payment, how can i remember easily that invoices are missing when the account balance is = 0 because the payment is done.
    Best regards,
    Alberto.

    Hi,
    There is a business need for companies to issue/receive Invoices including tax (or
    VAT) for Down Payments made or received. These Invoices can then be cleared with
    partial or final Invoices. Companies can record a Down Payment received in SAP
    Business One by creating a Payment not based on an Invoice. However, due to legal
    requirements in certain countries the recording of a Down Payment requires an Invoice
    or a billing document.
    Down Payment Request and Down Payment Invoice documents have their own numbering series. The Down Payment Invoice
    resembles a regular Invoice and the Down Payment Request resembles a Sales
    Quotation. The user may define a different series under Invoices to be used in the
    Down Payment document. Neither of these two documents affects the On Hand stock
    or the stock valuation. They can be of Items or Service type.
    The process for them are:
    Down Payment Invoice>Payment of Down Payment Invoice >Regular Invoice> Payment of Regular Invoice.
    Down Payment Request>Payment of Down Payment Request > Regular Invoice >Payment of Regular Invoice and Clearing of Down Payment.
    For the invoice paid, you can find a Payment Means icon from Invoice window, click on it, there is payment information and a link for it.
    Hope this helps,
    maggie an

  • Want option to view Invoices and credits separately when matching payment

    We are having difficulty when Trying to reconcile/match a high volume customer payment. There can often be hundreds of invoices and credits. They show our full original invoice and full credit on their remittance.This makes it very difficult to reconcile our invoices when a credit has been raised based upon it. Apparently Sage does this.
    I have logged with SAP but must raise a DRQ ( Development Request) as the function is not there.
    Has anyone else had similar experience with 2007A or a solution to this?
    Thanks in advance
    Derek Melville

    Hello Derek,
    thank you for your comment.
    Do you mean Internal Reconciliation screen or Banking module?
    Best Regards,
    Martin Slavik
    SAP Business One Solution Manager

  • Invoice and Billing

    Can any please tell the exact difference between Invoice and Billing
    Thanks

    There is no difference between Billing & invoice much.
    Billing Types that represent the different business transactions in billing. SAP has defined various Billing Types e.g. order related billing, delivery related billing, Credit Memo, Debit Memo, Proforma Invoice, Invoice for services rendered, invoice list.
    All billing documents are not invoices but invoice is billing document.
    Billing document is general term whilst iinvoice refers to specific transaction like credit memo or proforma invoice.
    Billing & invoice can be unpaid or paid. e.g. Advance payment billing where you raise invoice for advance payment.
    Invoice List contains any tuype of bills together. Its not a single invoice but grouped invoices, credit memo debit memo etc. In SAP you assign Billing Type to Invoice List to group together. e.g. F1 + F2 + G2 +L2= LR
    Please be sur ethat you are not confused when asked in interview. Invoice is for both : Vendor Invoice and Customer Invoice.
    Both are same in SD point of view.
    - In SD terminology we call as Billing Document and
    - In FI terminology we call as INVOICE.
    - In MM again only INVOICE will be there for Vendors.
    Billing Tcodes:
    -  VF01 create billing document. The delivery order comes up auto.
    -  VF02 the billing doc comes up auto . View the accounting enteries
    Invoice Tcodes:
    -  FB60 Create invoice with respect to rawmaterial and tax.
    -  FB70 Invoice entries with respect to sales and tax
    Billing = Accounts Payable = Goods/Services Received from Suppliers.
    Invoicing = Accounts Receivable = Goods/Services Delivered to Customers.

  • Differentiate between invoice and clearing document

    the table BSID and BSAD contains the details of both invoice and clearing documents.
    How to differentiate betwee invoice and clearing document.
    i thought that all debit documents are invoices and credits are clearing documents.
    But its not working because there are invoices which are credit and clearing documents which are debit.
    Please let me know if there is any indicator or field which

    Hi,
    No difference between invoice and billing document.
    But If we want to inform the payable to the customer we use the terminalogy invoice.
    Example Credit meomo, debit memo. etc ...
    As there is no difference , both have the same document types.
    thanks
    Kuntla

  • Need to choose fields from alv grid output and send mail

    Hi,
    I need to choose few orders from alv grid output and send mail as PDF for chosen orders.
    Suggest if possible and how.

    Moderator message - Please do not post your requirements and ask the forum to do your work for you - post locked
    Rob

  • I have been using my printer for APPS and now it wont print documents and ordinary printing

    Could you tell me why my photosmart all in one printer will not print normal documents and files from my pc or other device I have just been usong the apps on it to try out but now will not print out anything else like normal things from my computer or ipod or iphone.

    Hi, sandie18.
    Does your iPhone say "No AirPrint Printers Found?"  If you check the printer's status on your computer, is it offline?
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided.
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

Maybe you are looking for

  • I want to remotely reload my apple install disk to my air

    I have tried to install from my MacBook Pro, but the install disk wants me to restart my air, which in turn looses connectivity with the pro. I have held down the Options key on the air when restarting, but it doesn't give me the option to choose the

  • Kodi hangs the system

    I am searching solution for this for about a half year. XBMC/KODI freezes whole system (it doesn't respond to any input, even http or ssh stops to respond), sometimes whein it starts, often when searching for new files in music folders, sometimes tot

  • I can't patch Photoshop CS5

    The Adobe Application Manager says that I have updates for my copy of Photoshop CS5 and Elements 9. But when I run the update it says, "there was an error downloading this update. Please quit and try again later. If I click on the customer support li

  • Update statement that includes case, decode and from clause

    hello I've the following code. I ran this code in 9i and got the errror SQL command not properly ended. Can I use FROM clause in an update statement? CREATE OR REPLACE procedure NRI IS BEGIN UPDATE IEB2 SET SDI = (CASE PSDI WHEN '11' THEN '16' WHEN '

  • Why when i paste an image in a textflow it adds the text image name too?

    Hi, I'm trying to solve this behaviour: I copy an image in my desktop with CTRL+C/CMD+C. Then in my application I paste the image in the textflow with CTRL+V/CMD+V... but it adds the image and the image name (as text), instead I want it adds only the