Vendor Payment Advice Note by Email

Hi everyone,
I configured vendor ACH payment advice thru email, and for that I activated function module BTE-00002040,its working fine and sends the ACH payment advice to vendors thru email as soon as we run F110 program for ACH, The  problem is that when we run F110 for checks,system also puts the check advices for transmission,It wouldn't generate the check advices in the spool request SP01,I checked the sap note for ECC6.0, and it deals with the introductory text only. Does anyone have any idea how to prevent the system to put the check advices for transmission.ACH advices are working fine but check advices got messed up when I activated this BTE 00002040 funtion module.Thanks
Regards
Shaun

Anyone please guide  on this .
Regards
Shaun

Similar Messages

  • Sender in payment advice notes Via Email

    Hi, All,
    Is there any body know how to set up an specific sender in payment advice notes Via Email? Sounds like the e-mail-address of the sender always corresponds to the current user. Is there any way to set it as a pre defined email address? Thanks.
    Meiying

    Hi,
    If you want to have the same E-mail address given on the form, then I can advise.
    The one e-mail address can be put in the address detail field or the heather as a fix text,
    so the same will be displayed to them every time.
    We had the same problem and this was the easiest way to get it done.
    Maybe this helps to you.
    Good luck!
    Regards,
    Endre

  • To send Payment advice note as Email to vendor

    Hi
    I like to know how can we send the payment advice note created after F110 run to be send as email to the vendor?
    your help would be appreciated a lot
    regards
    auro

    Hi Arvind,
    Check out the following link
    Re: f110 payment advice
    Assign points if useful
    Regards
    Genie

  • Payment advice notes by email (change in sender id) and body

    Hi experts ,
    I am trying to change the sender name and body of the mail that is send by mail.does this code work i called SO_NEW_DOCUMENT_ATT_SEND_API1 in Z_PAN_EMAIL_00002040.
    look in the code and also tell me me does this work out. can some one tell me what is the 'SAPoffice'  in this code. (ls_document_data-obj_name  = 'SAPoffice'.) in fill document data part.
    FUNCTION Z_PAN_EMAIL_00002040.
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(I_REGUH) LIKE  REGUH STRUCTURE  REGUH
    *"  CHANGING
    *"     REFERENCE(C_FINAA) LIKE  FINAA STRUCTURE  FINAA
    data: zadrnr     like adr6-addrnumber,
          zsmtp_addr like adr6-smtp_addr,
          zremark    like adrt-remark,
          begin of zcon occurs 0,
              zadrnr     like adr6-addrnumber,
              zconnumber like adr6-consnumber,
              zsmtp_addr like adr6-smtp_addr,
          end of zcon.
          refresh zcon.
          select single adrnr into zadrnr from lfa1 where
                              lifnr = i_reguh-lifnr.
          if sy-subrc = 0.
             select addrnumber consnumber smtp_addr into table zcon
             from adr6 where addrnumber = zadrnr.
          endif.
             loop at zcon.
                  clear zremark.
                  select single REMARK INTO ZREMARK FROM ADRT
                                   where addrnumber = zcon-zadrnr
                                   and consnumber = zcon-zconnumber.
                  TRANSLATE zREMARK TO UPPER CASE.
                  if sy-subrc = 0 and zremark = 'REMIT'.
                     zsmtp_addr = zcon-zsmtp_addr.
                     exit.
                  endif.
             endloop.
             IF zsmtp_addr <> ' '.
       search zsmtp_addr for 'britishcouncil' .
       if sy-subrc <> 0.
      code modified to check if sy-subrc = 0.
               C_FINAA-NACHA = 'I'.
    CODE MODIFIED AS PER SAP NOTE  1033893 .
          C_FINAA-NAMEP = 'Testname'.
        internet address of partner company clerk has been changed by pradeep akula as per requirements.
          C_FINAA-INTAD = zsmtp_addr.
          C_FINAA-FORNR = 'Z_F110_IN_AVIS2'.
      this zzmail_sender_addrr and zzmail_body_text  did not work in testing.
         C_FINAA-ZZMAIL_BODY_TEXT = 'This is a test body text'.
         C_FINAA-ZZMAIL_BODY_TEXT = 'Payment Advice Notes attached, please do not discard this message .All vendors should please add their company name'.
       endif.
    ENDIF.
    code changes done by pradeep akula for Body of mail .
    CLASS cl_abap_char_utilities DEFINITION LOAD.
    TYPES: t_solisti1 TYPE TABLE OF solisti1,
          t_sopcklsti1 TYPE TABLE OF sopcklsti1,
          t_somlreci1 TYPE TABLE OF somlreci1.
    DATA: lt_content       TYPE t_solisti1,
          lt_packing_list  TYPE t_sopcklsti1,
          lt_header        TYPE t_solisti1,
          ls_document_data TYPE sodocchgi1,
          l_subject        TYPE solisti1-line,
          l_content_lines  TYPE i,
          lt_receiver      TYPE t_somlreci1,
          l_address        TYPE adr6-smtp_addr,
          l_new_object_id  TYPE sofolenti1-object_id,
          l_sent_to_all    TYPE sy-binpt,
          l_msg_text       TYPE string,
          l_rc             TYPE sy-subrc,
          l_user           TYPE sy-uname.
    DATA:  l_crlf(2)             TYPE  c.
    DATA:  BEGIN OF crlf,
             x(1) TYPE x VALUE '0D',
             y(1) TYPE x VALUE '0A',
           END OF crlf.
      l_crlf = cl_abap_char_utilities=>cr_lf.
    receiver address
      DATA: ls_receiver TYPE somlreci1.
      ls_receiver-receiver = zsmtp_addr.
    receiver address type (internet address)
      ls_receiver-rec_type = 'U'.
    communication type (send via internet)
      ls_receiver-com_type = 'INT'.
      APPEND ls_receiver TO lt_receiver.
    SAP name: used for the shortcut to the inbox (optional)
    l_user = p_user.
    l_user = ' '.
    mail subject
    l_subject = p_subj.
    DATA: ls_content TYPE solisti1,
          ls_header  TYPE solisti1.
    fill the document data.
      READ TABLE lt_content INDEX l_content_lines INTO ls_content.
      ls_document_data-doc_size =
        ( l_content_lines - 1 ) * 255 + STRLEN( ls_content ).
      ls_document_data-obj_name  = 'SAPoffice'.
      ls_document_data-obj_descr =  'Test mail form payment advice its working'.
      ls_document_data-obj_prio = 5.
      ls_document_data-priority = 5.
    fill data of mail
      DATA: ls_packing_list TYPE sopcklsti1.
    update the packing list.
      ls_packing_list-transf_bin = ' '.
      ls_packing_list-body_start = 1.
      ls_packing_list-body_num = l_content_lines.
      ls_packing_list-doc_type = 'RAW'.
      APPEND ls_packing_list TO lt_packing_list.
      ls_header-line = 'Test header - Vish'.
      append ls_header to lt_header.
      ls_content-line =   'Test mail form payment advice what you want to print here'.
      append ls_content to lt_content.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = ls_document_data
          commit_work                = 'X'
        IMPORTING
         sent_to_all                = l_sent_to_all
          new_object_id              = l_new_object_id
        TABLES
          packing_list               = lt_packing_list
          object_header              = lt_header
          contents_txt               = lt_content
          receivers                  = lt_receiver
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      IF sy-subrc <> 0.
      keep error message
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                INTO l_msg_text.
      ENDIF.
    endfunction.

    Hi Pradeep,
    you can change the sender, when you change the system-field SY-UNAME before calling FM SO_NEW_DOCUMENT_ATT_SEND_API1.
    REPORT Z_TEST_SEND_MAIL.
    h_uname must be a SAP-UserId.
    sy-uname = h_uname.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = DOC_CHNG
         PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        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.
    I tried it and it was successfull.

  • Payment advice note by email

    Hi Gurus,
    After f110 transcation is used .How to change the sender name in SOST  transaction to userdefined one . i want it as AP_CLERK instead of the name of person who generates it . i want the mail also to be as AP_CLERK (SENDER NAME) instead of the name of person who generates it. The mail body should not be blank should contain text defined by me.(ie my own text) .
    anyone who dealt with this issue earlier can slove this as they would have better idea on the approach.
    do i need to change the code in my z function module of sample_process_00002040 .
    what is the process?

    Hello,
    Yes you can change the code in your Z version of sample_process_00002040
    The structure c_finna included the internet address.
    You will need to set the transmission medium to I as below:
              c_finaa-nacha = 'I'.
              c_finaa-intad = l_smtp_addr(130).  
    Hope this helps a bit.
    Regards
    Greg Kern

  • Vendor payment advice through email

    Hi gurus
    i want to send vendor payment advice through email , i am using the form F110_IN_AVIS  for payment advice
    and from the report  RFFOAT_P i want to send the email , is any configuration needed to send the email , or just i have to give selection detials properly and it will work ,
    regards
    m.a

    Hi Afzal,
    For sending Payment advice by E-Mail, "You need to copy SAMPLE_PROCESS_00002040 and adjust it to write code as per your requirement. This BTE runs for each payment advice note to be sent and in the module, it is mentioned 1=print, 2 = Fax and I=mail, so you can set your priority, that if an E-Mail address is maintained in the vendor master, send mail or if no E-mail address is maintained send Fax, and if both are not possible shoot a Print.
    From Configuration side, you need to maintain the Z copy of SAMPLE_PROCESS_00002040 in FIBF transaction under the Process module of a customer without country or application indicator.    
    SAP Note 836169 - Consulting: Payment advice notes by email or fax.   
    Regards,
    SAPFICO

  • Vendor Payment Advice - idoc PEXR2002

    Dear guru,
    My customer would like to receive a payment advice from the bank regarding the vendor payments done.
    It means that after processing the F110 and sent the payments to the bank, we will receive an acknowledgement idoc from the bank in order to inform us that all payments have been correctly processed.
    I have seen that the idoc PEXR2002 can be used as "payment advice" with message type REMADV for instance. But all the cases that i have seen concerned customer payment advices sent directly by them.
    Is anyone know if it is possible to use this idoc in order to retrieve the payment information for vendor and not customer?
    If yes, where can we retrieve those information in SAP? Besides the table AVIK/AVIP, can we check the payment advice integration somewhere else (reports, financial document)? because in our case we just want to retrieve the confirmation of payments but there wont be clearing between payment/vendor invoice because it will have been already done at F110 processing.
    I hope this is clear enough.
    Thanks a lot for you help
    Guillaume

    Hi Afzal,
    For sending Payment advice by E-Mail, "You need to copy SAMPLE_PROCESS_00002040 and adjust it to write code as per your requirement. This BTE runs for each payment advice note to be sent and in the module, it is mentioned 1=print, 2 = Fax and I=mail, so you can set your priority, that if an E-Mail address is maintained in the vendor master, send mail or if no E-mail address is maintained send Fax, and if both are not possible shoot a Print.
    From Configuration side, you need to maintain the Z copy of SAMPLE_PROCESS_00002040 in FIBF transaction under the Process module of a customer without country or application indicator.    
    SAP Note 836169 - Consulting: Payment advice notes by email or fax.   
    Regards,
    SAPFICO

  • F110 Email Vendor payment advices.

    Hi SAP Gurus,
    Today we are printing email advices to our vendors, we would like to change this so that we can email payment advices to our vendors.
    I have looked at different messages here at SDN, but I cannot get it to work.
    I have in FIBF - settings, process modules and customer - created Z_SAMPLE_Process_00002040.
    We are using form F110_IN_AVIS.
    We are using payment medium program RFFOEDI1.
    I have defined a email adress on the vendor and set the standard communication mth. to INT E.Mail.
    But it is not working, what am I missing ?.
    Thanks and best regards
    Pernille

    Dear Pernille,
    please kindly check the following hints to help you:
    1) Please check whether you selected the check box in the variant
    configuration "print payment advice".  The variant is of the variant
    that you maintain in the printout/data medium tab of transaction F110.
    2) Unfortunately it's technically not possible to send remittance
    advices per e-mail and to spool at the same time. You can only either
    send advices per e-mail or send them to spool. This is the standard
    system design.
    3) Please check FBZP to the desired company code and payment method to
    see if the customer has selected the flag "NoPaymentAdv.". It must be
    set as "Always payment Advice" and afterwards the advices via e-mail is
    executed.
    4) Please refer the documentation on the sample function module:
    'SAMPLE_PROCESS_00002040' in FIBF by following the Menu Path:
    FIBF > Environment > Infosystem (Processes) > Click 'Execute' >
    Select: 00002040 Autom. pmnt transactns: Output of pmnt advice note
    5) To send a business partner a payment advice note by fax or email,You
    must use the process interface 00002040 (Business Transaction Events)
    define the selection of the message type (printout, fax or email).
    Before you can do this, however, you must have carried out the
    necessary technical (Basis) settings for faxing or sending emails.
    6) Also consider the SAP note 836169.
    Thanks.
    Mauri

  • Vendor Payment Advices - Convert to SmartForms

    My customer is currently changing all their SAPScripts to SmartForms to use a new fax service called Fax Maker (apparently Fax Maker won't accept SAP Script).
    They run SAP 4.6C.
    They want to change the Vendor Payment Advice but this doesn't seem to be able to accept SmartForm entry in the configuration (SPRO >> Financial Accounting >> Accounts Rec & Accounts Pay >> Business Transactions >> Outgoing Payment >> Auto Outgoing Payment >> Payment Method >> Setup Pay Comp Codes for Payment Trans).
    How do I get Fax Maker to accept the Vendor Payment Advice?
    I thought I could get the SAPScript to produce a pdf file and send this, but I'm not sure on how to do this.
    Regards,
    Louise

    Dear Pernille,
    please kindly check the following hints to help you:
    1) Please check whether you selected the check box in the variant
    configuration "print payment advice".  The variant is of the variant
    that you maintain in the printout/data medium tab of transaction F110.
    2) Unfortunately it's technically not possible to send remittance
    advices per e-mail and to spool at the same time. You can only either
    send advices per e-mail or send them to spool. This is the standard
    system design.
    3) Please check FBZP to the desired company code and payment method to
    see if the customer has selected the flag "NoPaymentAdv.". It must be
    set as "Always payment Advice" and afterwards the advices via e-mail is
    executed.
    4) Please refer the documentation on the sample function module:
    'SAMPLE_PROCESS_00002040' in FIBF by following the Menu Path:
    FIBF > Environment > Infosystem (Processes) > Click 'Execute' >
    Select: 00002040 Autom. pmnt transactns: Output of pmnt advice note
    5) To send a business partner a payment advice note by fax or email,You
    must use the process interface 00002040 (Business Transaction Events)
    define the selection of the message type (printout, fax or email).
    Before you can do this, however, you must have carried out the
    necessary technical (Basis) settings for faxing or sending emails.
    6) Also consider the SAP note 836169.
    Thanks.
    Mauri

  • Summry report for payment advice notes

    Hi, All,
    I have set up email payment advice notes. So if vendors have email addresses maintained, the process will sent out emaisl. Otherwise, it will print out. But after the process I only got the summary report for those printed ones. Those emailed out are not counted in. Is there any body know how to get summary report for emailed ones? Or how I can put printed and emailed ones together in the report? Thanks.
    Meiying

    Hi Yang ,
    im trying to figure out how to send Payment advice as email from F110.
    can u tell me how you do this
    Thanks
    dave

  • Email payment advice for multiple emails

    Hi There,
    I have configured the BTE 00002040, every thing works perfectly to send the payment advice to a single email id from vendor master but out client wants a copy of the payment advice also to sent to their group email id, so with the help of our abaper we are trying to hard code the group email id and try to send the email to both vendor email id and group email id but is it nor working.
    Can any body tell me how to send the payment advice to multiple emails?
    Thank you in advance
    Madhu

    Thank you Hugo,
    We tried this but for some reason it is not working, i know some body else also suggested the same on SDN but no luck.
    It works fine for one emaild from vendor master but not when we put the group email id in the program as a hard code.
    pl let me know, if you have any other thoughts.
    Thanks
    Madhu

  • FDTA & payment advice note

    Hi, can anyone explain to me the functionality of this transaction FDTA? I particularly want to know if there is any customization for this and if not than where can i assign a form? Thanks.
    Also i need to send a payment advice note in PDF format by email to all Vendors/Customers. I have read about the BTE's that can be used but my problem is that i dont want to assign a program in all the payment methods for this.
    Is it possible to use a standard program in the F110 for this?
    Any inputs appreciated.

    Hi, can anyone explain to me the functionality of this transaction FDTA? I particularly want to know if there is any customization for this and if not than where can i assign a form? Thanks.
    Also i need to send a payment advice note in PDF format by email to all Vendors/Customers. I have read about the BTE's that can be used but my problem is that i dont want to assign a program in all the payment methods for this.
    Is it possible to use a standard program in the F110 for this?
    Any inputs appreciated.

  • Vendor payment advice with down payment

    Hi,
    A down payment was made to a vendor, without having the invoice yet.
    On the vendor payment advice, this down payment is shown as "invoice".
    I think it should be shown as "advance payment".
    The down payment is listed as a noted item in the vendor open items with document type KA (vendor document).
    How can the down payment be shown as "advance payment" on the payment advice?
    Thank you.
    Kind regards,
    Linda

    Hi Ravi,
    I have created a down payment request for a vendor via transaction F-47.
    I have made a payment run via transaction F110.
    In the payment run, I have 2 invoices and 1 down payment request.
    On the payment advice, which is printed after executed the payment run, the invoices and the down payment are listed as "invoices".
    The down payment request is in fact an "advance payment" , because we have not yet received the invoice.
    Is there a possibility to show it as an "advance payment" instead of "invoice"?
    Thank you.
    Kind regards,
    Linda

  • Withholding tax vs Vendor payment advice

    Hi,
    We have configured extended withholding tax to be calculated at the time invoice posting. Because of this configuration, during the invoice posting (FB60) we are able to see withholding tax account being effected.
    We also have configuration for withholding tax to be calculated at the time of payment posting.
    We have also designed vendor payment Z report. In that report *only the withholding tax calculated at the time of "payment posting" is showing but not the withholding tax configured to be calculated at the time invoice posting
    .Is this way system behaves? What can we do to show the with holding tax which is calculated at the time of invoice to be shown in the vendor payment advice?*
    Thanks.
    Edited by: RogerMonteiro on Nov 15, 2011 1:12 PM

    Hi,
    As you did payment agains invoice you get the BELNR for payment document.
    You get the AUGBL no from BSEG table for BELNR. Then you put this in AUGBL no in BSEG table. Here you will get document cleared against this AUGBL.
    Then use this BELNR you get by running AUGBL no. Put this BELNR no in WITH_ITEM table BELNR field. Here you will get your data of invoice or advance payment cleared against payment.
    Regards
    Arun

  • PRINT SORT OF PAYMENT ADVICE NOTE

    Hi everybody,
    i have a problem with payment advice note print sort.
    I define in variant for program ZRFFOAVIS_FPAYM that print sort will be by vendor number.
    I also define in fbzp this variant for payment method.
    finally,the payment advice note not sort as i want.
    where also i need to fefine these?
    I get a messege that saying the following:
    You should be aware that the classic payment medium programs (RFFO*)
    sort only
    according to paying company code, payment method, and house bank for output of relevant form
    closing sections. This restriction does not apply when payment media are created using payment medium
    formats, and their associated payment advice notes are printed with the print program RFFOAVIS_FPAYM.
    there is an option that for some payment program no possible to Intervene and the sort is by some defult?
    What does these mean?
    thanks,
    shlomi

    It might be spooled. Please look for t-code SP01 and enter the user ID of the user who did the printout in F110, and select the correct line and print
    Other option will be to activate print immediately for the option "Print payment advice notes" and enter the printer "LOCL" and under Output control activate "Always output advice notes"
    Thanks
    Ron
    Edited by: Ron on Mar 12, 2010 1:36 PM

Maybe you are looking for

  • WSDL Files from WAS - Can't see messages

    Hi All, I am trying to call a WS on WAS 6.4 from the XI. Following the weblog https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6bdee46d-0901-0010-7a9a-b3595d441fbf I merged the 3 files an

  • Oracle Spool Fixed Width

    Hi All, I'm trying to spool records from my Oracle table into a fixed width text file. As you'll see below, I'm using the RPAD function to set the maximum width for my columns but for some reason the spool doesn't recognize the RPAD function and just

  • Which FrameWork is Best Suitable For Using AJAX with JAVA

    And what are other differences between AJAX And Java Script other Than XMLHttpRequestObjects..i would be glad for any help or guidence given...

  • Creating Dll with Vision Library

    Greetings Board Members, I have a small Application For which i want to make a shared DLL and test them before deploying at other co worker computer, The application uses the Labview Vision, The DLL are made by Building the DLL. When I use the same d

  • VM Boot Error

    Hi, I have imported OVM_OL5U7_X86_64_PVM_10GB.tgz templte using OVM 3.0.2 manager. Created a VM using this template and when I start VM, it is failing with the following error messages about 'bootloader': can someone help me understand what the error