OUT GOING PAYMENT AND INVOICE

Dear All
I required a PLD for Outgoing Payment with A/P Invoice whose payment we pay. I develope a PLD for Out Going Payment but not develop of A/P how we make a print for A/P invoice with Outgoing payment in separate page. When i print Out Going Payment automatically print out A/P invoice hows payment is selected. First I select the A/P Invoice then I pay the out going payment.
Thanks in advance
M. Rafiq Khan

Hi,
It cannot be done in PLD since PLD is very basic, you can make a query and use Crystal Report or QLD.
Below is an example of the query :
SELECT
  T0.DocEntry,
  T0.DocDate,
  T0.CardName,
  T1.Dscription,
  T0.DocTotal,
  T0.DocTotal + MIN(T0.DiscSum) + MIN(T0.WTSum) + MIN(T0.DpmAmnt) AS TotalAmnt,
  'Mode' =  CASE WHEN T4.CashSum > 0 THEN 'Cash' WHEN
  T4.CreditSum > 0 THEN 'Credit' WHEN T4.TrsfrSum > 0 THEN 'Bank Transfer'
    ELSE 'Check' END ,
  T0.DocStatus,
  'APCMDocNum' = T2.DocEntry,
  T1.TargetType,
  'OutDocNum' = T4.DocNum
FROM
  dbo.OPCH T0
  INNER JOIN dbo.PCH1 T1 ON (T0.DocEntry = T1.DocEntry)
  LEFT OUTER JOIN dbo.ORPC T2 ON (T1.TrgetEntry = T2.DocEntry)
  LEFT OUTER JOIN dbo.RPC1 T3 ON (T2.DocEntry = T3.DocEntry)
  LEFT OUTER JOIN dbo.OVPM T4 ON (T0.ReceiptNum = T4.DocNum)
GROUP BY
  T0.DocEntry,
  T0.DocDate,
  T0.CardName,
  T1.Dscription,
  T0.DocStatus,
  T2.DocEntry,
  T1.TargetType,
  T4.DocNum,
  T0.DocTotal,
  T4.CashSum,
  T4.CreditSum,
  T4.TrsfrSum
Regards,
Clint

Similar Messages

  • Error in the Out going payments

    Am getting error when making an out going payment : -
    Cannot add or update this document , its rows are missing [Outgoing payments - invoices -sequence no.][Line 0][Message 131 - 197]
    Any one had this before, what's causing it ?
    Edited by: Martin Kamau on Mar 24, 2009 10:00 AM

    My problem was with missing detail in the database tables. The outgoing data table OVPM, VPM2 etc were not posted correctly. The system hanged at some point and the table inserts were not completed. Try check on those tables and see if the data postings are ok
    Good luck.
    Edited by: Martin Kamau on Apr 8, 2009 9:48 AM

  • Issue in PLD of Out going Payment

    Hi All,
            I have a pld on out going payment where when we select the Account, we also get field to add description. Now when i try to caputre this detail in PLD, the system shows an error message, "The requested action is not supported for this object". In the pld, i have selected table RCT4, description.  Can anyone please tell me whats the cause of this error and ho can I capture the Doc. Remarks in PLD??
    Thanks in advance,
    Joseph

    Hi Joseph,
    It is not possible on Outgoing Payments.
    Try to Create QPLD.
    IF you need Outgoing Payments row details. Try to Create Query Print Layout Designer(QPLD).
    If you need to Print rows of Accounts in Outgoing Payments.
    Try this Query and you will design QPLD.
    SELECT T0.DocNum, T0.DocDate, T0.CardCode, T0.CardName, T0.Address, T1.AcctCode, T1.AcctName,
    T1.Descrip, T0.CashAcct, T0.CheckAcct, T0.Comments, T0.DocTotal,  CASE WHEN T0.CashSum > 0 THEN 'Cash'
    WHEN T0.CreditSum > 0 THEN 'CC' WHEN T0.TrsfrSum > 0 THEN 'WIRE' ELSE 'Check' END AS 'Mode'
    FROM OVPM T0
    LEFT JOIN VPM4 T1 ON T0.DocEntry = T1.DocNum
    INNER JOIN OPID T2 ON T0.PIndicator = T2.Indicator
    WHERE T0.[DocNum]>='[%0]' and T0.[DocNum]<='[%1]' and T2.[Indicator]='[%2]'
    ORDER BY T0.[DocNum]
    If you need to Print rows of Accounts and Cheque Details in Outgoing Payments.
    Try this,
    SELECT T0.DocNum, T0.DocDate, T0.CardCode, T0.CardName, T0.Address, T1.AcctCode, T1.AcctName,
    T1.Descrip, T0.CashAcct, T0.CheckAcct,
    T4.[DueDate],
    T4.[CheckNum],
    T4.[BankCode] as 'Bank Name',
    T4.[Branch],
    T4.[AcctNum] as 'Check A/C No.',
    T0.[CheckSum],
    T0.[CashSum],
    T0.[TrsfrSum],
    T0.[TrsfrDate],
    T0.[Comments],
    T0.DocTotal,  CASE WHEN T0.CashSum > 0 THEN 'Cash'
    WHEN T0.CreditSum > 0 THEN 'CC' WHEN T0.TrsfrSum > 0 THEN 'WIRE' ELSE 'Check' END AS 'Mode'
    FROM OVPM T0 full outer JOIN VPM1 T4 ON T0.DocEntry = T4.DocNum
    LEFT JOIN VPM4 T1 ON T0.DocEntry = T1.DocNum
    INNER JOIN OPID T3 ON T0.PIndicator = T3.Indicator
    WHERE T0.[DocNum]>='[%0]' and T0.[DocNum]<='[%1]' and T3.[Indicator]='[%2]'
    ORDER BY T0.[DocNum]
    IF you want extra some details, Check this thread.
    Re: PLD- outgoing payment .(RCT4 ,tables data is not comming)
    Re: PLD-How to increments rows of accounts in O/g payment.
    Regards,
    Madhan.

  • Table Relation with Payment and Invoice of Vendor

    Hi all,
         I have one question about Table Relation with Payment and Invoice of Vendor.
         the scenario is.
         2 Purchase Order number : 100000001/100000002
         1 Invoice document number : 200000001 which include  2 Purchase Order.
         1 Payment document number : 300000001
         How should I found out table relation from Payment document number - Invoice document number - Purchase Order number. ?
          I try to link the following table, but it does not work.
          RBKP     *     Invoice Receipt
          RSEG     *     Invoice Receipt document line item
          BKPF     *     Accounting Document Header
    BSEG     *     Accounting Document Segment
    PAYR          Payment Medium File
    BSIK          Accounting: Secondary Index for Vendors
    BSAK          Accounting: Secondary Index for Vendors (Cleared Items)
    BSIS          Accounting: Secondary Index for G/L Accounts (Open Items)
    Does any one know about it ?
    Regards
    KY Chuang

    Hi Venkatesh,
    Thnx a lot for the reply. This has almost solved my problem, however there's one thing left. when I'm trying to take a print out after exporting the info into an excel sheet, the information really looks scattered, i.e.,  is there a way where we can go ahead and get the info in a rather unscattered manner.
    I've tried to take a print directly without actually transferring the info into an excel sheet, then each of the vendor is printed in a separate page, which again they feel is a problem.
    So, if you have an idea pls suggest.
    Thnx again for the information.
    regards
    sandhya

  • How to print vendor ref. no. in out going payment.

    hi all,
    i want to print vendor ref. no in out going payment pld.
    hw to get it in pld?
    regards,
    chetan.

    Hi Chetan
    In the VPM2 Table look for the field DocEntry, Join it on OPCH.DocEntry, and then look for NumAtCard in OPCH to find out the vendor's Ref No
    the following query expains it
    SELECT     dbo.OVPM.CardName, dbo.VPM2.SumApplied, dbo.OPCH.NumAtCard
    FROM         dbo.OVPM INNER JOIN
                          dbo.VPM2 ON dbo.OVPM.DocNum = dbo.VPM2.DocNum INNER JOIN
                          dbo.OPCH ON dbo.VPM2.DocEntry = dbo.OPCH.DocEntry
    WHERE     (dbo.OVPM.DocEntry = %x%)
    I hope this now solves your problem!! Cheers
    Regards,
    Murtaza

  • Vendor Out Going Payment Tcode(F-53)

    Hi Experts
    While Posting Documents In Vendor Out Going Payment tcode F-53 i didt get invoice against posting screen
    I get post outgoing payments select open items screen
    plz giv valuable solution to me
    thanks

    You need to check in FBL1N first with the Vendor, whether there are any line items in open status or not?
    While searching in FBL1N - keep the Open item date as today's date.
    If yes, go to F-53, requirements which are necessary, just see throughly..
    Posting date
    Document date
    Bank account
    Amount
    Vendor account (basically appears as ACCOUNT under open item selection)
    Click on "Process open items"
    They should display
    If there are no open items at Vendor line item level, then there won't be any list t display at payment level, means
    FBL1N   Open items should display in F-53
    Check them plz
    Thnaks
    Edited by: nkonnipati on Feb 18, 2012 6:27 PM

  • Not picking all open items at the time of out going payment(F-53)

    Dear Experts,
    I'm facing the issue at the time of out going payment(F-53)
    At the time of vendor line item display system is showing open items but at the time of out going payment(F-53)
    system is not picking the all open items it is picking only two items
    Pls help
    Regards
    Hari Prasad

    Hi Experts,
    Thnx for Quick response
    As per your instructions, I checked auto payment run here we have done successfully for vendor
    Open items shown in FBL1N but these open items not coming at the time of  out going payment
    I checked SPL GL indictors also
    Regards
    Hari Prasad

  • Probably stupid question but I am new to Mac's.  Somehow my picture is at the right top of my out going emails and I don't know how to delete it.  Help!!

    Probably astupid question but I am new to Mac's.  Somehow my picture is gotten placed at the top right of all my out going mail and I don't know how to delete it.  Help!!

    This may help:
    http://www.maclife.com/article/how_can_i_remove_my_photo_from_messages_in_apple_ mail

  • EWT-Tax on Down Payment and Invoice

    Hello,
    I've activated the accumulation feature in the Withholding Tax Type for both IV as well as Payments. The tax code is the same for both tax types.I've also defined the minimum base amount for Witholding Tax code as Rs.5000 for Official Withholding Tax key 194A and have also maintained formula for Tax code i.e tax should only get calculated if tax amount is more than Rs 5000.
    However I've noticed that the tax is getting calculated on the accumulated amount of both Payment and IV separately.
    Example:
    Tax Type for IV is 01
    Tax type for Payment is P0
    Tax code is T1 @ 11.33%
    I've made a down payment entry using T-code F-48 for Rs 4000 (Tax type P0 and Tax code T1). Now Tax is not getting calculated on this amount which is correct.
    Now if I post an Invoice for Rs 1500 for the same vendor (Tax type 01 and Tax code is T1), ideally my tax should get deducted on Rs 5500 (4000 of DP and 1500 of IV) @11.33%. Howver this does not happen. The accumulation feature is working for Payments and IVs separately.
    Can someone please help me on this. Is it a particular config  which I've missed?
    Thanks and Regards,
    Sumita

    Hi Sumita,
    Please follow the below mentioned steps for this issue.
    Steps:
    1. Define Withholding Tax Type for Payment Posting
    Path: FA/****/Withholding Tax/Extended Withholding Tax/Basic Settings/Calculation/Withholding Tax Type/Define Withholding Tax Type for Payment Posting
    Here create 2 Withholding Tax Types:
    1. 1st for TDS (Basic@10%) Tax Type: S1 and
    2. 2nd one for Education Cess (EC@3%) Tax Type: S2
    2. Define Withholding Tax Codes
    Path: FA/****/Withholding Tax/Extended Withholding Tax/Basic Settings/Calculation/Withholding Tax Codes/Define Withholding Tax Codes
    Create 2 Tax codes (One for Basic and another one for Education Cess)
    In that screen, give the following inputs
    Give WT Key also on the same screen
    Save the data
    WT Name    WT Type    Tax Code    Base Amount     Calculation
    1. Basic               S1               C1                             100%                    10%
    2. EC                  S2                C2                             10%                       3%
    3. Define Min/Max Amounts for Withholding Tax Codes
    Path: FA/****/Withholding Tax/Extended Withholding Tax/Basic Settings/Calculation/Minimum and Maximum Amounts/Define Min/Max Amounts for Withholding Tax Codes
    Letu2019s say there is no TDS up to Rs. 1,50,000 per annuam
    Monthly amount or Invoice amount Rs. 12,500 per month
    There is no TDS up to Rs. 12,500 and TDS will be charged if the salary exceeds Rs.12,500 p.m.
    WT Name    WT Type     Tax Code     Max Amount     Minimum Base Amt
    1. Basic                  S1                         C1                 99,999,999,999      12,501
    2. EC                      S2                         C2                99,999,999,999      375.03
    4. Assign Withholding Tax Types to Company Codes
    Path: FA/****/Withholding Tax/Extended Withholding Tax/Company Code/Assign Withholding Tax Types to Company Codes
    5. Update Withholding Tax Codes in the Vendor Master (Employees A/c u2013 Employees will be treated as vendors here)
    Give WT Type and WT code here
    WT Type     WT Code  
            S1              C1
             S2              C2
    Note:
    1. Please follow the above example and apply it in your case.
    2. We have created 2 tax codes for Basic W Tax and Education Cess.
    3. Assumed there is no Sur charge.
    Hope this is clear and let me know if you have any queries.
    Regards,
    Kannusamy S

  • TDS Not deducted at the time of Vendor out going payment (F-53)

    Dear All,
    First we did prepayment through F-47, iam tryin to clearing the vendor payment amount through F-53 , at this  TDS amount not deducted for that payment. can any one solve this issue as soon as possible....
    Thanks & Regards
    Vijay Kumar

    Hello vijay,
    TDS should be deducted at time time of Advance Payment or Invoice Booking only, not in F-53( Payment against invoice).
    if Payment is made in Advance you must have deducted tds amount. f-53 is normally using for payment against invoicing.
    and invoicing is already done with deduction of tds.
    Regards
    Vishal Sonawane

  • How to select  multiple vendors in out going payment

    Hi,
    We are issuing Letter to Bank asking to issue DD against 10
    Vendors. In this case Bank issuing DD and making debit as
    one entry. In Outgoing payment is it possible to select 10
    vendors at time ( Is there any other way instead of 10 outgoing
    payments )and make it as single payment, so that bank
    reconciliation will be easy.
    any body can help pl.

    Hi,
    I am a little bit surprise but I need more explanation from you.
    do you mean the vendors are the same ? it means the 10 vendors are actually 10 A/P invoices ?
    if not, I am afraid that outgoing payment can take 10 different vendor codes all at once in the same outgoing payment no.
    it must be using DTW but the final result is not one outgoing payment no.
    You could create a consolidation vendor although actually they are not under one company group. It is in the BP master data --> tab accounting --> payment consolidation
    Rgds,

  • DMEE tree: to split the details to 2 type; payment and invoices

    my client requests to have new set of payment format. the header footer stil same, but on the details, they request to split to 2 type; P-payment and I-invoice. the flow will be like below:
    H,P
    P,ACH,ON,,,, MY,KUL,312148938785,25/01/2006,XXXXXX BERHAD ,MENARA XXXX,84 JALAN RAJA CHULAN,50200 KUALA LUMPUR,,ABNAMYKLXXX,, ,,732837238,,,,,,,,,,,,,,,,,4,MYR,201000,C,,,,,,,,,S, , ,MENARA ING,84 JALAN RAJA CHULAN,50200 KUALA LUMPUR,,,Please call XXXXX Supplier Helpdesk at +603 21653215 for payment inquiry,,,,,
    I,N8788,01/12/2005,N8788,1000
    I,XXX,01/12/2005,XXX,200000
    P,ACH,ON,,,, MY,KUL,312148938785,25/01/2006,XXXXXX SDN BHD ,NO 6C TINGKAT 3 JLN MAMANDA 7,TMN DATO AHMAD RAZALI,68000 AMPANG SELANGOR,,CITIMYKLXXX,, ,,8734736712,,,,,,,,,,,,,,,,,4,MYR,36000,C,,,,,,,,,S, , ,NO 6C TINGKAT 3 JLN MAMANDA 7,TMN DATO AHMAD RAZALI,68000 AMPANG SELANGOR,,,Please call XXXXX Supplier Helpdesk at +603 21653215 for payment inquiry,,,,,
    I,TTTTT,01/12/2005,TTTTT,30000
    I,11111,01/12/2005,11111,2000
    I,09872,01/12/2005,09872,4000
    T,2,237000
    normally, for invoices i just combine into 1 line and concatenate with the payment record. which means, the detail will have 1 type only; P-payment. but now the new request is to split it to few lines.
    appreciate somebody who has experience on this to give idea/suggestion. Or maybe if you think got forum on this topic, then please forward me the linkage.
    thanks a lot

    Could you tell us how you solved this issue?

  • Electronic bank statement customer payment and invoice(s) clearing

    Hi there,
    I am configuring electronic bank statements and wanting to "increase the hit rate" of automatic clearing. For this, I have configured postings, posting rules, etc. and I am testing on a bank statement we receive from the bank (this is ABN Amro in Germany) and all works fine. I see it with FEBA and the line items are posted to GL ok. I then configured the define search string for electronic statements to search in the note to payee our invoice numbers, which also are our document numbers, that the customers pay. I linked the search string use to algo 20 Document number search. I also changed the external transaction type assignment so that the appropriate posting rule refers to algo 20 too. When I use the simulation prog FEBSTS, it shows me all the documents found in the note to payee of all the items, and displays the document numbers found that match the note to payee for the few cases I have set-up for testing. All this look to me very good.
    My question is as follows. Despite the above, when I get to FEBA to post/clear the posting area 2 of the matching cases, SAP links to FB05 and asks me to select line items first of all, expecting that I enter either the customer id, or the document numbers. I don't understand this, and I don't understand why it does not get automatically to the matched documents and clear them automatically. I very probably am missing something, but I don't know what and I am somwhat stuck.
    I would very much appreciate some hints as to what to do to make this work.
    I thank you in advance.
    Jean
    PS. We are running SAPKH47025
    Message was edited by:
            Jean Weyrich

    Thks Ramesh for the hint but this did not change, although I changed this table so that it looks for BELNR only for all account type D.
    When I hit save on the FEBA_bank statement line item to clear (in Posting Area 2)SAP brings me to the FB05 screen asking for either customer id or document no (invoice). If I feed this then it would clear the invoices I have prepared. What I would like is that SAP finds out these invoices by itself using the search I have configured which seems to work ok from the simulation transaction FEBSTS. Well when I say it works ok, this is because I see the invoice numbers that have been mapped, have been found. I also see in the Cat column the field BELNR, I see however that the column Partner remains empty (should that be filled with the customer number ?), and lastly I see that the last column Partner Type is a D for customer which looks OK.
    If by any chance you have another path to drive me that would be great. Many thks

  • Payment and invoicing

    I have a problem when I want to by applications on the apple store, an error message says that my payment  end is not accepted,
    I did purchases before without in facing this problem
    Thank you for your help

    Dear sir;
    First of all thank you for your kind reply , I have first created On PO like below for example.
    total amount 8,000.00 Rs
       30.00% 2,400.00 down payment
      12 30.00% 2,400.00
      13 30.00% 2,400.00
       40.00% 3,200.00
    PO is linked with project activity ,whenever the project person accept the activity in the PO invoicing plan, the line item status is unlocked ,and then I directly i go for MIRO,the amount is taking automatically percentage wise ,but when I go for the advance payment with F-47  & F-48 the vale I have to enter maually and after MIRO .How to solve the problem .
    Thanking you
    Regards;
    Joydeep Mukherjee

  • Question regarding receiving payment and invoice

    Hello, So today one person was supposed to send me money to my PayPal.Guy said he did send the money, I received invoice which is marked as paid on my mail which says: "You have received a PayPal Gift! A transaction of €9.5 has been made on "10/08/2015" by XXXXX with the recipient XXXXX We inform you that the 'Gift ' €9.5 sent on the "10/08/2015" has been transacted and confirmed via PayPal International under PayPal Terms and Conditions. Unfortunately due to the discrepant currencies of both parties and the associated PayPal Account a period of up to 1-2 business days would be required to reflect the transaction in balance of the related recipient in the case of the following 'Gift' Transaction due to the manner of exchange. Under the PayPal Buyer Protection system we inform both parties that this transaction is non-refundable due to the use of a Credit Visa Electron and PayPal is not responsible for the rebate of any funds associated with such a transaction. Paypal,a better life"  I'm kinda new to PP, does this mean, my money should be on my PP account in next 2 days?    

    If it was marked as an invoice then its probably a scam doing the rounds as its been sent by a buyer and altered to look as though he has paid you.
    Signs its a scam are >>>
    its an invoice BUT sellers send invoices not buyers
    marked as paid
    marked as gift
    says payment won't show in your balance for eg 24 hours
    can't be chargedback.
    Paypal NEVER tell you to send anything until the funds are showing in your paypal account balance.
    Paypal payments are more or less instant.
    Paypal will never tell you that a payment can't be subject to a chargeback.

Maybe you are looking for