Print Incoming Payments report

Hi
Please advise if it is possible to reflect INVOICE numbers on the 'Print Incoming Payments' report.
Thnx
Nthabiseng

Hi,
it is not possible to reflect INVOICE numbers on the 'Print Incoming Payments' report(in repetitive area).
but its is possible to reflect all invoice no with amount in Page footer on Print incoming Payments Print.
Use this System Variable - 130 in Page footer.
OR
If you need to print the invoice no & total in incoming payments row level print.
Try to Create a Query Report and design the Query PLD.
Regards,
Madhan.

Similar Messages

  • How to print incoming payment receipt !

    Dear all,
    I am now want to print incoming payment receipt.
    work-flow is : end-user will use Cash journal (FBCJ) or incoming payment (F-28) to enter incoming payment. during posting and after posted document, they want to print out payment receipt.
    from Cash journal (FBCJ), they want to using "print receipt" feature with different layout.
    so, i don't know how to using correspondence.
    i have not experience on using correspondence.
    so, i have all of you help to guide me how can we do to create correspondence as our end-user requirement.
    thanks you so much !

    Quoc,
    You can use the correspondence for internal document (SAP09) for printing the document you are posting.
    In SPRO go to Financial Accounting --> AR and AP and then customer Account --> Line item and then correspondence.
    There you have to attach the form developed by the ABAPer to the correspondence SAP09. ABAPer has to copy the exiting standard foprm attached to the correspondence and do the changes and design the layout as per the requirement.
    When you post the document , you have to attach the relavent correspondence (SAP09) to the doc and then go to F.64 tcode and execute with the inputs in the selection screen such as Correspondence, doc number, fiscal year .
    Regards..

  • Error when trying to print incoming payment of type "account"

    Hello all:
    One of our customers has just upgraded from 2007 to 8.8 SP00 PL12. Now, whenever they try to print a PLD of an incoming payment which is of type "Account", the following error appears:
    No matching records found  'Payment Terms' (OCTG) (ODBC -2028)  [Message 131-183]
    I have already created an empty layout containing only a sample text field, in order to rule out any unsupported database field in the PLD, but I still have the same error.
    The incoming payments of type "customer" work fine, it is only the account type payments that do not print, and that after the upgrade to 8.8.
    Any ideas? I guess I will have to open a support ticket on this...
    Thanks,
    Joerg.

    As an additional info, I tried, as a workaround, to use a Crystal Report
    layout for the incoming payments, but I do have the same effect as with
    the PLD layouts. Customer receipts print fine, yet account receipts do
    come up with the error mentioned.
    Am I the only one with this error or is there anybody else?
    Thanks,
    Joerg.

  • Incoming Payments Report

    Hi,
    My client is updating the incomimg payments by 2 ways. If it is a chech or cash or bank transfer from a single party then they are using Incoming Payment Window.
    But for certain instances like the filed persons collect the money from 10 or 15 customers and the total cash was deposited in Bank. At that time they are updating the payments by passing a JE to the customer.
    Now how can i get the total payments collected (Eigther a RC or JE) from all the customers fro a perticular dates between. I am trying to use General Ledger for BP but it's taking so much time to execute and to uncheck the Daily and Monthly marks it's taking long time to display. How can i get the total collection from the customers ...is there any custom query- plz help
    Thanks & Regards
    Srini

    Hi Srini,
    Check this query result first:
    SELECT T1.TransID,T0.ShortName, T0.Debit, T0.Credit
    FROM dbo.JDT1 T0
    INNER JOIN dbo.OJDT T1 ON T0.TransID = T1.TransID
    WHERE  T0.ShortName LIKE '[%2]%' AND T0.TransType IN ('24', '30')
    AND T1.RefDate > [%0] AND T1.RefDate < [%1]
    Thanks,
    Gordon

  • Incoming/Outgoing Payment Reports

    Hi Friends
    My Cleint Need The outgoing/Incoming Payment report and they r asking the following selection creteria
    Incoming payment/Out going Payment -
                              Bank Transfer Payment means wise,
                               Check payment  means wise
                                Cash payment means wise
                                Crdit card Payment Means wise
    Wat i have to do tell me the solution
    Sankar

    HI Sankar,
    Basically you want all those information in one selection criteria window?
    If you use XLR, it will be one selection criteria at a time.
    If you user Query you can combine them in one selection criteria using survey variables. Since you will be accessing the Incoming Payment and Outgoing Payment as one of the selection criteria option, I would suggest that you use t-sql and not just ordinary select statement.
    Laurence Resubal

  • Incoming Payments separate columns for differents currencies

    Hi everybody
    I am modifing this query in order to have an incoming payment report, but we want each currency in one column.
    For example Checks in USD in one column and checks in other currency in a separate column.
    Same for cash and transfers.
    Right know my query is putting all check in one column.
    Any advise?
    SELECT T0.[DocNum] 'Recibo', T0.[DocType] 'Tipo Doc',  T0.[DocDate] 'Fecha', T0.[CardName] 'Cliente',
    EFECTIVO = CASE WHEN T0.[DocRate]> 0 THEN T0.[CashSumFC] ELSE T0.[CashSum] END,  
    CHEQUE = CASE WHEN T0.[DocRate]> 0 THEN T0.[CheckSumFC] ELSE T0.[CheckSum] END,
    TRANSFERENCIA = CASE WHEN T0.[DocRate]> 0 THEN T0.[TrsfrSumFC] ELSE T0.[TrsfrSum] END,
    T0.[TrsfrRef] 'Referencia', T0.[PayNoDoc] 'Pago Calculado', SUM(T0.[CashSum]T0.[CheckSum]T0.[TrsfrSum]) 'Total' , T0.[PaymType] 'Tipo de Pago', T0.[OpenBal] 'Balance', T0.[DocRate] 'Tasa'
    FROM ORCT T0
    WHERE T0.[DocDate] >=[%0] AND  T0.[DocDate] <=[%1] GROUP BY T0.[DocNum], T0.[DocType],
    T0.[DocDate], T0.[CardName], T0.[CashSum], T0.[CheckSum], T0.[TrsfrSum], T0.[TrsfrSumFC], T0.[TrsfrRef],
    T0.[PayNoDoc], T0.[PaymType], T0.[OpenBal], T0.[OpenBal], T0.[DocRate], T0.[CashSumFC], T0.[CheckSumFC]
    ORDER BY T0.[DocNum]
    Thanks Bart Masellis

    Ho Gordon, thank for replying, I have another version where I have 2 Columns.
    I am using 2 currencies.
    The idea is to have checks in $ in one column and checks in Local Currency in another column.
    Same for Cash and Transfers.
    Please check this one:
    SELECT T0.[DocNum] 'Recibo', T0.[DocType] 'Tipo Doc',  T0.[DocDate] 'Fecha', T0.[CardName] 'Cliente', T0.[CashSum] 'Efectivo', T0.[CashSumFC] 'Efectivo $', T0.[CheckSum] 'Cheque', T0.[CheckSumFC] 'Cheque $', T0.[TrsfrSum] 'Transferencia', T0.[TrsfrSumFC] 'Transferencia $',  T0.[TrsfrRef] 'Referencia', T0.[PayNoDoc] 'Pago Calculado', SUM(T0.[CashSum]T0.[CheckSum]T0.[TrsfrSum]) 'Total' , T0.[PaymType] 'Tipo de Pago', T0.[OpenBal] 'Balance', T0.[DocRate] 'Tasa'  FROM ORCT T0 WHERE T0.[DocDate] >=[%0] AND  T0.[DocDate] <=[%1] GROUP BY T0.[DocNum], T0.[DocType], T0.[DocDate], T0.[CardName], T0.[CashSum], T0.[CheckSum], T0.[TrsfrSum], T0.[TrsfrSumFC], T0.[TrsfrRef], T0.[PayNoDoc], T0.[PaymType], T0.[OpenBal], T0.[OpenBal], T0.[DocRate], T0.[CashSumFC], T0.[CheckSumFC]
    ORDER BY T0.[DocNum]

  • Incoming payment rows details in Crystal report

    Hi Xperts
    I want to create Payment Advice print layout in Crystal Report.  Can anybody tell me which table is related Incoming payment Row wise details in SAP.
    I need following Details in SAP (Row Details)
    Document No,  Document Date, Document Total
    Any body help me out regarding this
    Thanks
    Balaji

    Hi Balaji,
    Check this link.
    [Crystal Generic samples from SAP|https://websmp204.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000635012009E&]
    It consists of most of all the documents in SAP.
    Hope this helps.
    Regards,
    Bala

  • Incoming Payments Repeatitive Area Printing

    Hi All
    I need to know how to print in the repeatitive area in incoming payments.....
    I need to print paid invoices and the customer name in the report.
    Please help.....

    Bongani,
    The Customer Name appears on the top and can also be added anywhere else in the report. 
    Add a database field:
    Table: Incoming Payment:
    Field: Customer Name
    The list of invoices cannot be added to the repetitive area.   The system template prints the list of invoice in the End of Report section using System Variable 130 (In the 2005A Receipt template this field is FIELD_340)
    Suda

  • Query Print Layout - Incoming Payment

    Hi All,
    I have done the query print layout for incoming payment. but it cannot show the correct A/R invoice: document number. When I only make the payment for 1 invoice it seems to be correct, but when I choose 2 invoices to be paid, then the A/R invoice: document number for the second row is wrong ( if follows the first row).
    Below is the query:
    SELECT T0.DocNum, T0.DocDate, T0.DocCur, T0.DocTotal,
    T0.DocTotalFC, T1.DocNum, T1.CardCode, T1.CardName,
    T1.DocDate, T1.Comments,T1.TrsfrRef as 'Cheque No',
    T2.BankCode' 'T2.AcctNum as 'Bank Code' , T0.Address , T3.Phone1 , T3.CntctPrsn , T0.PaidToDate, T0.PaidFc , T4.AppliedSys , T4.AppliedFc
    FROM [dbo].[OINV]  T0 INNER JOIN ORCT T1
    ON T0.ReceiptNum = T1.DocEntry LEFT JOIN RCT1 T2
    ON T1.DocNum = T2.DocNum LEFT JOIN RCT2 T4
    ON T4.DocNum = T2.DocNum LEFT JOIN OCRD T3
    ON T1.CardCode = T3.CardCode
    WHERE T1.DocNum = [%0]
    ORDER BY T1.DocNum
    the fields that i want to display in repetitive area are: A/R invoice: Document date , A/R invoice: document number, Amount that they have paid ( partial payment / full payment) i used this database: Incoming payment - a/r invoice: paid, outstanding amount i used formula ( total document - paid to date), and document currency
    Thank you! hope you can help.
    Pauline

    Pauline,
    I've tested your query in B1 2007A SP00 PL30 and works fine. I even created PLD for the query and I can see 2 invoice paid by one incoming payment.
    Rgds,

  • Customer Aging Report Query (without invoices offset by incoming payment)

    Hi All Experts,
    May I know is there any field from JDT1 mention which invoices is already offset by the Incoming payment or AR Credit note? Because I do not want those invoices that already offset by incoming payment appear at the Customer Aging Report. Meaning, the data appear in the Customer Aging Report is only show those invoices that yet to pay by the customer. Kindly give some advise on it. Thanks a lot.
    Thanks and regards,
    Angie Ng

    Hi David,
    Thanks for your suggestion. I have try it, but all of my JDT1.IntrnMatch is in 0 value. Meaning in my situation it is none of any reconcilliation making. But from my SBO window, i manage to see that actually this incoming payment is pay for which invoices. Problem is it is difficult for me to do the possiblity logic that might be happen in my Customer Aging Report Query. Please give some advise that how to show only those invoices yet to pay? The current query will show all the data no matter the invoices or credit memo has been offset.
    select OCRD.cardcode 'Supplier Code',OCRD.cardname 'Name',sysdeb  'Debit GBP',syscred 'Credit GBP',
    case JDT1.transtype
    when '13' then 'INV'
    when '14' then 'AR CN'
    when '24' then 'INCOMING'
    else 'Other'
    end 'Type',
    Ref1,
    fccurrency 'BP Currency',
    CONVERT(VARCHAR(10), refdate, 103)'Posting Date' ,
    CONVERT(VARCHAR(10), duedate, 103) 'Due Date',
    CONVERT(VARCHAR(10), taxdate, 103) 'Doc Date' ,
    CASE
    when (DATEDIFF(dd,refdate,current_timestamp))+1 < 31
    then
    case
    when syscred <> 0 then syscred * - 1
    else sysdeb
    end
    end "0-30 days",
    case when ((datediff(dd,refdate,current_timestamp))+1 > 30
    and (datediff(dd,refdate,current_timestamp))+1< 61)
    then
    case
    when syscred <> 0 then syscred * - 1
    else sysdeb
    end
    end "31 to 60 days",
    case when ((datediff(dd,refdate,current_timestamp))+1 > 60
    and (datediff(dd,refdate,current_timestamp))+1< 91)
    then
    case
    when syscred <> 0 then syscred * - 1
    else sysdeb
    end
    end "61 to 90 days",
    CASE
    when (DATEDIFF(dd,refdate,current_timestamp))+1 > 90
    then
    case
    when syscred= 0 then sysdeb
    when sysdeb= 0 then syscred * - 1
    end
    end "90 + days"
    from JDT1,OCRD where JDT1.shortname = OCRD.cardcode and cardtype = 'c' and intrnmatch = '0'
    ORDER BY OCRD.CARDCODE, taxdate

  • Invoice number against incoming payment in report

    Dear Experts,
    I want to know if we can add the reference of the column invoice number in the customer ledger of SAP against the incoming payment number which we have taken the against those invoices.  these are on account payments done which are reconciled later with the particular invoices. is there any report in SAP which can show this information. for just this one column, we have to prepare entire ledger customized which we want to avoid. please advise.
    Thanks,
    Binita

    Dear
    Please post only one thread for your question.  You may close the other thread first:
    Invoice number against payment in report
    Thanks,
    Gordon

  • Down Payment Invoice & Incoming Payment docs print with Sales Order

    Hi,
    When print a Sales Order that has a Down Payment linked to it, the Down Payment Invoice & Incoming Payment also prints.
    How do I turn this off?
    Thanks,
    Ron

    Hi Ron,
    What is your B1 version and PL?
    Thanks,
    Gordon

  • Receipt (Incoming Payment) system default print layout

    Hi,
    When I print the Incoming payment receipt with the default print layout - APA Receipt (System), it always show many rows in the table.
    e.g. the incoming payment is a cheque from "Bank of China". I expect there should be only 1 row in the repetitive area.  However, it shows 3 rows for each bank defined in the system.
    Then, I do the following:
    1) I add a database field to get "Incoming payment - Cheques" table, "Bank Code - Account No." field.
    2) Update the existing database fields (Bank Code - Bank Name) in repetitive area, make it "Related to" the above field.
    After that, I get 3 rows, all under "Bank of China"
    How to get rid of the duplicate rows?  I expect to have only 1 row under "Bank of China" in this case.
    I am using SAP Business One 2007.
    Thank you very much!
    Yvonne

    May I have your advise please? Thanks a lot!

  • Tcode for report on incomming payments

    Hi,
    i want a report on only incomming payments from a particular customer within certain time frame,
    please let me know
    thanks in advance

    Hi,
    Check S_ALR_87012177 - Customer Payment History
    Program RFDOPR20 enables you to carry out a detailed analysis of the payment history of customers. It also contains a forecast of payment volumes and payment arrears, based on the existing payment history.
    Regards,
    Sanjay

  • A report which displaies Bank Incoming payments for each Customer

    Hi All,
    could anyone show me a report which displaies the Bank Incoming payments for each Customer?
    Thanks
    Gandalf

    Yes u can very well see the Off setting account ( Bank account number ) in the line item report.
    For that small customization is requiered so as to activate the off setting account display in all line item report.
    Just implement the below changes
    NodeFinancial Accounting
    PathIMG u2192 Financial Accounting u2192 Financial Accounting Global Settings u2192 Business Transaction Events
    1                    Active Settings
    Setttings u2192 Products u2192 u2026 of a customer
    Following new product added and activated:
    Product                        -            OFF
    Text                 -            Offsetting account
    Active               -            Yes
    Setttings u2192 P/S Function Modules u2192 u2026 of a customer
    Following new event added:
    Event                      -           00001650
    Product                                    -            OFF
    Ctr                               -            (Leave Blank)
    Appl.                            -            (Leave Blank)
    Function Module -            LINE_ITEMS_GET_GKONT
    The above settings enable the function module for displaying the offsetting account in line item display.
    Ritesh

Maybe you are looking for

  • PDF Error in Performance Management

    Hi When launching the Performance Management link from Manager Self Service (Role) --> Talent Management --> Performance Management I am getting the PDF error. Seems the page is trying to open the form in PDF, instead I want it to be displayed in htm

  • Make to order scenario-customer requirement

    hi, here we are having one scenario that client is having MTO process, where HALB level components can exchanged from one sales order to another.here costs of HALB material used in the FERT production order is not picked  as the typical functionality

  • DG4ODBC adds black spaces after every character

    I am trying to set up HS using Oracle 10.2.0.5 on RHEL5 (64 bit), FreeTDS, and MS SQL Server. The ODBC Driver works fine: [oracle@phsbe1pr ~]$ isql sfasql_freetds_dsn sqlSinfoOne *** | Connected! | | | | sql-statement | | help [tablename] | | quit |

  • No Password Entered

    I keep getting a "No Password Entered for E-mail account" message when I try to send and receive mail. The password is entered and it is the correct password. I have removed the password and reentered it a number of time but all to to avail. What can

  • Debuggin in abap

    hai, can any one help me to know the step by step procedure for debugging in abap from the begining thanking you, vinu karthik