How to send the invoice doc. through the email to multiple recepients ?

Hi Experts,
I have a requirement to send the invoice document to multiple recepients through the email. 
Do I need to repeat all the FMs "OPEN_FORM, START_FORM, WRITE_FORM, END_FORM and CLOSE_FORM' in the loop.  Otherwise it is fine if we loop the FMs OPEN_FORM and CLOSE_FORM only ?  Please confirm.
Thanks,
Sreenivas.

Hello.
U need to loop any FM'S try to get the spool number and convert it to PDF.
Retrieve the multiple receipients whom u want to send and collect all these in a table then call the mail trigeering FM.
This is the easy way u can do.
Still u have doubts plz revert.
Tnx,
Arun.

Similar Messages

  • Releasing the blocked invoices entered through the FB60

    Hi all,
    The invoices that are entered through the transaction code FB60 are manually blocked for payment while entering the invoice. Is there a standard SAP transaction code to list these invoices and release similar to transaction MRBR for the invoices entered through the MIRO. Please advice how to achieve this, as this is a critical business requirement. Many thanks in advance
    Regards

    Hi,
    When you post invoice through fb60 which vendor you chossing for making invoicego to  that vendor master record and check if it is block for payment or not if it block for payment than remove block.
    warm regards,

  • How to populate the Referance Field Through the Auto Invoice in credit memo

    HI ,
    I m populating the records in RA_INTERFACE_LINES_ALL and creates the cr Memo through the Auto Invoice ,
    but i m like to populate the Referance Field which is exist in Header part of the Cr Memo (Benith the TYPE).
    So plz help me,
    that which column of the RA_INTERFACE_LINE_ALL populates ,that gave me a data in the Referance Field .
    However this referance field is carried out from the table.Column =RA_CUSTOMER_TRX_ALL.ct_reference
    Plz Help..
    Regards,
    DK

    what you did?

  • MM: MIR7: How to display vendor master data "bank code" in the invoice doc.

    Hi all,
    I would like to display the bank code of the vendor in the header screen of the invoice. At the moment only the name of the bank is visible. Is there a possibility in the customizing to modify the screen of transaction code MIR7? I do not want to make a modification to the SAP Standard.
    Many thanks in advance.
    Regards,
    Max

    Hi,
    You can use custom validation program (Z*) by copying standard validation (RGGBR000) program.
    Modify the validation program to check table vendor master data.
    After that, you need to assign this  custom validation program to GBLR application area in GCX2.
    Thanks

  • How to populate the payment block through the BAPI_INCOMINGINVOICE_CREATE

    Hi,
    I am trying to create the incoming invoice through the BAPI (BAPI_INCOMINGINVOICE_CREATE) .
    In MIRO transaction when i create the Invoice without any tax , the <b>payment block shows free for payement</b> . How to give create the invoice with the following condition through the BAPI (BAPI_INCOMINGINVOICE_CREATE) .  when there is Tax : The payment block = 'R' (Invoice verification) .
    No Tax                : The payment block = ' ' (Free for Payment).

    But everytime the invoice is created the Payment block is set to 'R' even if the Tax is not given.
    Following i am populating
    <b>Header Structure:</b>
    <b>Test                   Value Description                      PI Header Data Fields</b>
    ‘X’                Invoice Indicator     HEADERDATA-INVOICE_IND
    SPACE                Document Type     HEADERDATA-DOC_TYPE
    05-11-2006           Document Date     HEADERDATA-DOC_DATE
    17-11-2006           Posting Date                     HEADERDATA-PSTNG_DATE
    123456-B1                Ref Document Number     HEADERDATA-REF_DOC_NO
    9001               Company Code     HEADERDATA-COMP_CODE
    7006924               Vendor Number     HEADERDATA-DIFF_INV
    BRL               Currency                     HEADERDATA-CURRENCY
    BRL               Currency                     HEADERDATA-CURRENCY_ISO
    10000               Gross Amount      HEADERDATA-GROSS_AMOUNT
    05-11-2006          Baseline ate                     HEADERDATA-BLINE_DATE
    DD               Header Text                     HEADERDATA-HEADER_TXT
    0001               Payment Terms     HEADERDATA-PMNTTRS
    123456-B1               Ref Document Number     HEADERDATA-REF_DOC_NO
    Z1               NF Type                       HEADERDATA-J_1BNFTYPE
    space               Payment Block Key      HEADERDATA-PMNT_BLOCK
    <b>For Item Structure:</b>
    <b>Test Data     Description            BAPI Item Data Fields</b>
    000001                     Invoice Item           ITEMDATA-INVOICE_DOC_ITEM
    4500021387     Purchase Order Number   ITEMDATA-PO_NUMBER
    0010                     Purchase Order Item           ITEMDATA-PO_ITEM
    Z1                     Tax Code                           ITEMDATA-TAX_CODE
    SP 50308                     Tax Jurisdiction Code           ITEMDATA-TAXJURCODE
    10000                      Item Amount           ITEMDATA-ITEM_AMOUNT
    200                      Item Quantity           ITEMDATA-QUANTITY
    EA                      Purchase Order Unit           ITEMDATA-PO_UNIT
    Can u please tell me what is the mistake or any other ways of populating the Payment block.
    Always the payment block is 'R' in MIR4 transaction even if i give space in the BAPI

  • How to send a mail by ckicking the button using java

    hi,
    how to send a mail by clicking the button (like payroll silp in that contain one button if we click that it autometically go through the mail as a attachment) pls frd to me my gmail is [email protected]

    Hi,
    It seems we are doing the homework for you; to make you start with something; look at the sample code below and try to understand it first then put the right values
    to send an email with an attachement.
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.util.Date;
    import java.util.Properties;
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Multipart;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.swing.AbstractAction;
    import javax.swing.Action;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JTextField;
    public class Main {
          * @param args
         public static void main(String[] args) {
              // Create the frame
              String title = "Frame Title";
              JFrame frame = new JFrame(title);
              // Create a component to add to the frame
              JComponent comp = new JTextField();
              Action action = new AbstractAction("Button Label") {
                   // This method is called when the button is pressed
                   public void actionPerformed(ActionEvent evt) {
                        System.out.println("sending email with attachment");
                        sendEmail();
              // Create the button
              JButton button = new JButton(action);
              // Add the component to the frame's content pane;
              // by default, the content pane has a border layout
              frame.getContentPane().add(comp, BorderLayout.SOUTH);
              frame.getContentPane().add(button, BorderLayout.NORTH);
              // Show the frame
              int width = 300;
              int height = 300;
              frame.setSize(width, height);
              frame.setVisible(true);
         protected static void sendEmail() {
              String from = "me@localhost";
              String to = "me@localhost";
              String subject = "Important Message";
              String bodyText = "This is a important message with attachment";
              String filename = "c:\\tmp\\message.pdf";
              Properties properties = new Properties();
              properties.put("mail.stmp.host", "localhost");
              properties.put("mail.smtp.port", "25");
              Session session = Session.getDefaultInstance(properties, null);
              try {
                   MimeMessage message = new MimeMessage(session);
                   message.setFrom(new InternetAddress(from));
                   message.setRecipient(Message.RecipientType.TO, new InternetAddress(
                             to));
                   message.setSubject(subject);
                   message.setSentDate(new Date());
                   // Set the email message text.
                   MimeBodyPart messagePart = new MimeBodyPart();
                   messagePart.setText(bodyText);
                   // Set the email attachment file
                   MimeBodyPart attachmentPart = new MimeBodyPart();
                   FileDataSource fileDataSource = new FileDataSource(filename) {
                        @Override
                        public String getContentType() {
                             return "application/octet-stream";
                   attachmentPart.setDataHandler(new DataHandler(fileDataSource));
                   attachmentPart.setFileName(filename);
                   Multipart multipart = new MimeMultipart();
                   multipart.addBodyPart(messagePart);
                   multipart.addBodyPart(attachmentPart);
                   message.setContent(multipart);
                   Transport.send(message);
              } catch (MessagingException e) {
                   e.printStackTrace();
    }The sample above is not ideal so you need to go through it and start to ask me some questions if you have
    Let me know if you miss something
    Regards,
    Alan Mehio
    London,UK

  • I cancelled the billing doc through VF11 Fi document not yet creted

    Pls help on this issue.
    When i cancelled the billing doc through VF11 Fi document not yet creted. system thrown the given below error:
                                                                                    Diagnosis   :                                                                          The document does not exist. It was possibly not posted and therefore cannot be read from the database.                                                                               
    Procedure  :                                                                    
         Repeat the transaction at a later time.                                                                               
    Pls help on this issue.I assign full marks .
    Rgds
    Mahesh

    First check whether accounting posting has been made for your Invoice or not.If accounting document has been created then go to VOFA and check the "Invoice cancellation" field and not the Document type  field.
    For your billing type F2, Invoice cancellation billing type should be S1 in the standard system.
    Document type field is for creation of accounting document type in FI. When you create F2 type of billing document, then DR type of accounting document should be created in FI.
    If this "Document type" field is blank than whatever may be the Billing type ,when it is released to accounting , RV type of document will be created.
    Regards
    Pradyumna

  • How i enter the ECG signal to the lab view through the sound card

    first i open the help and find example the display the signal of the mic
    and i enter the ECG signal through the mic and displaied
    but when displaied the ECG appearied only one period on the chart so on if the chart with full screen you can see only one period
    and when i change the x scale the signal compressed in a part of chart and the remain part of the chart empity
    so how i display at least three periods of ECG 
    Attachments:
    ECG with sound card.vi ‏20 KB
    Untitled.jpg ‏37 KB

    I do not have LabVIEW version 9, only 8.6
    Without looking at your program can take a guess. Have you set the property "chart history length" of the graph? If you consider that an individual has a heart rate of up to 50Hz, or period of 20ms. Soon the number of points required is (3 * 20ms) / (sample time).
    If this is not the problem, you could send the converted code to version 8.6 of LabVIEW?

  • How to receive the invoice on a different email adres

    Our company recently ordered the creative cloud package.
    I receive the invoice on my personal email because this mail is connected to the account. I want it to be send to our administration email directly.
    How can I do that?

    Hi Hameed;
    Its better to move your issue to Forum Home » Database » Database - General forum part
    Regard
    Helios

  • How do I enter codes purchased through the Volume purchase plan into Configurator?, How do I enter codes purchased through the Volume purchase plan into Configurator?, How do I enter codes purchased through the Volume purchase plan into Configurator?

    How do I enter codes purchased through the Volume Purchas site into Configurator so I may load them onto ipads on a cart?

    There is no short answer.
    I've created a 10 page tip sheet. See the link a the bottom
    I have to guess how many steps you've done, so this advice may be starting in the wrong spot. 
    =============================
    a) I assume you used appleid of the faciltator who buys VPP apps on the VPP portal and then downloads the XLS file of codes (done)
    b) I assume you have an appleid of another user. That appleid must be setup in itunes on the laptop/desktop with Osx10.8.  You then launch itunes and use itunes redeem link to get one copy of the paid app.  The code for that redeem link comes from your your spreadsheet from step A. Copy and paste from excel or use googlge docs to copy/paste the code.
    ==========================
    itunes now has downloaded on copy of the paid app (stored in your documents folder, deep in your itunes folder of  your laptop/desktop)  Open configurator and hit the plus icon in configurator and that app is added to your list of apps with the licence count set to 1.
    Now comes one more not so obvious step, LOgon to the VPP portal and download the XLS file again with all the codes.  
    In configurator click the mouse on the number 1 in your count of licenses.   That will bring up a set of dialogs to import the 2nd version of your XLS codes.  When that is done your count goes from 1 to x, where x might be 50 codes.  
    All of what I've posted here is documented by apple in several KB articles and their 80 page guide, or you can just read my 10 page tip sheet below...
    https://docs.google.com/document/d/1SMBgyzONxcx6_FswgkW9XYLpA4oCt_2y1uw9ceMZ9F4/ edit?userstoinvite=[email protected]

  • How do I use GarageBand as a amp/speaker to listen to my Electronic Drum set? I have a MIDI-USB cord already but I can't figure out how to listen to my set through the software using my computer speakers?

    How do I use GarageBand as a amp/speaker to listen to my Electronic Drum set? I have a MIDI-USB cord already but I can't figure out how to listen to my set through the software using my computer speakers?

    If you want to listen to the sounds of your drum set, you should use an audio cable and connect it to the computer's line-in, then create a real instrument track.
    If you use a Midi/USB interface, you'll have to create a software instrument track and select one of GB's drumsets as the instrument. Hopefully your drumset's midi notes are mapped to the right sounds in GB.

  • HT202157 How can I access my computer through the Apple TV unit?

    How can I access my computer through the Apple TV

    Welcome to the Apple community Nopasswords.
    Apple TV > computers.
    The following article(s) may help you.
    Understanding Home Sharing
    Setting Up Home Sharing On A Computer

  • HT1277 I have quickbooks software. I am traveling. I tried to send an invoice out, using the mac email (version 5.3) I can't send the mail out. I get a pop up asking for my password, I put the password in and it does not accept it.

    I have quickbooks software. I am traveling. I tried to send an invoice out, using the mac email (version 5.3) I can't send the mail out. I get a pop up asking for my password, I put the password in and it does not accept it. This is the 1st time I've had this problem.
    slpmtns

    Whilst it may not be your fault I am afraid it appears that your post is on a forum which is not the best for your OS. It will save the time of the unpaid volunteers here, and may resolve your issue faster, if you could examine the list below and see if there is a more appropriate forum to which you could direct your question.
    OS X 10.9 Mavericks
    OS X 10.8 Mountain Lion
    OS X 10.7 Lion
    OS X 10.6 Snow Leopard
    OS X 10.5 Leopard
    OS X 10.4 Tiger
    OS X 10.3 and earlier
    OS 9, OS 8 & System 7
    OS X Technologies
    OS X Server
    iPad
    iPhone
    iPod
    Other

  • When i cancelled the billing doc through VF11 Fi document not yet creted.

    Pls help on this issue.
    When i cancelled the billing doc through VF11 Fi document not yet creted. system thrown the given below error:
                                                                                    Diagnosis   :                                                                          The document does not exist. It was possibly not posted and therefore cannot be read from the database.                                                                               
    Procedure  :                                                                    
         Repeat the transaction at a later time.                                                                               
    Pls help on this issue.I assign full marks .
    Rgds
    Mahesh

    Dear Mahesh
    This is bcoz you have not assigned the Accounting Document type for your cancellation billing document.
    Go to VOFA, select the cancel billing document type S1 and [see whether S1 is maintained] against the field [Document Type]   Most probably, in your case, it is not maintained and hence the problem.
    Maintain S1 in the above field and retry to cancel the billing document.
    thanks
    G. Lakshmipathi

  • How to send a modulate signal by the NI PXI-5441?

    How to send a modulate signal by the NI PXI-5441?
    I am using NI PXI-8108 / PXI-5441.
    I want to send a binary signal modulated (FSK) by the 5441. I tried to use, without success, the modulation VIs with the Fgen VI.
    Thanks

    Hi Mauro,
    the code structure is similar to any structure of I/O. You need open the communication channel with the hardware (using VI Open), use VI Write/Read to send/receive data and close the reference (VI Close). You can look the structure in LV examples.
    Nevertheless, if you cannot, post your code that I analize to you.
    Regards,
    Ricardo Ramos
    Engenheiro de Vendas - Sul
    National Instruments Brasil

Maybe you are looking for

  • Different Scroll bars in one file

    I've manually customized the look and feel of the scroll bars for scroll pane component and it works fine. I've two different files that have different visual styles for scroll bars. Now I want to merge these two files meaning I want to have one file

  • Mixing graphics cards

    I ordered a Mac Pro with the Radion card. But I'm thinking that I might want to run Final Cut Pro with a 2-monitor setup and use my 50" LCD as a client monitor (3rd monitor). So if I wanted the client monitor to run off DVI, would I have to buy anoth

  • Upgrade from 4.7 to ECC 6.0 - Purchase Order Statiscal Delivery Date

    Hi. I need your help please. When an order is created via ME21N, the Statistical Delivery date on the Delivery Schedule Tab gets populated automatically with the delivery date that was captured on the Item Detail, if not manually updated.This is how

  • SAP Transaction iView issue...Please guide...urgent

    Hello All, 1. I created a SAP Transaction iView. 2. Entered all the required WAS + ITS details and the connection tests are all successful. 3. While creating the iView I selected SAP GUI for HTML as I need to display the the ITS Internet template (fr

  • How to create agreement between supplier and distributor?

    Hi.. How to create agreement between supplier and distributor? thanks & Regards Harish