Bank statement Nr in journal entry and Payments

In Notenumber 1374872 (SP 01/PL7) a change has been implemented that the number of the payment run is copied to the remarks of the payment and the journal entry. I think it will be good idea to do the same for the number of the bankstatement in bank stament processing. Hereby the text for the note 1374872. The reason why and the solution are the same.
Regards,
ProSigma BV
Cees Hameete
Symptom
To find the number of the payment wizard run in payments and journal entries, bookkeepers currently have to open the journal entry, navigate to the payment document, and then search manually in the executed payment wizard runs to find the correct number.
Other terms
Incoming payment; outgoing payment; payment wizard; journal entry
Reason and Prerequisites
Functionality description
Solution
To improve usability and provide integrated journal remarks information, SAP Business One was changed as follows:
When an incoming or outgoing payment is generated using the payment wizard, the application adds the payment wizard run number to the "Journal Remarks" field of the payment document and to the "Remarks" field in the journal entry on both header and row level.
The values in the "Journal Remarks" and "Remarks" field have the following structure:
Incoming Payments - [Customer Code] - [Payment Wizard Run Number]
Outgoing Payments - [Vendor Code] - [Payment Wizard Run Number]
SAP intends to provide a patch or patches in order to solve the problem described.
The section Reference to Related Notes below will list the specific patches once they become available.
The corresponding Info file of the patches in SAP Service Marketplace will also show the SAP Note number.
Be aware that these references can only be set at patch release date.
SAP will deliver patches only for selected releases at its own discretion, based on the business impact and the complexity of the implementation.

I completely agree with your proposal.  We have the same problem at the moment.  I hope SAP will implement a solution for this.

Similar Messages

  • NULL Value in Journal Entry and Wrong Tax Summary

    Hi people,
    I need your expert help for a big problem that appens to some customers.
    They run SAP BO 8.8 SP:00 PL:12
    This is the scenario:
    You insert a new documet,  A/R Invoice or A/P Invoice is the same, problem appear in all of them.
    After you insert the document, using SQL Server Management try this Select statment:
    Select * from JDT1 where JDT1.debit is null OR JDT1.credit is null
    A list of record where listed. And, this is the problem, NULL values are all in the VAT Lines in debit or credit colums.
    If you try to make a SUM(debit-credit) you discovery that, 1000,00-null=null
    Consequently, TAX Sumary report, that probably use arithmetic operation like me in SELECT statment,  count a wrong number when null values in DEBIT or CREDIT column in JDT1 for VAT declaration.
    How could I solve? And how i can make invoices store 0 rather than NULL in the VAT Line?
    Thanks in advance for your tips and solutions

    Thaks Neetu for your answer.
    I thinks there is a misurandertanding.
    My problem is not SQL.
    My problem is the SAP TAX Report.
    I used SQL only for check data and discover why SAP raise a wrong TAX Summary report.
    So, my question is: Why invoices write null values in journal entry, and how I can solve the problem that TAX summary report use null value in operations so the results are wrong.
    Thanks,
    Jonny Cortonicchi

  • Duplicate rows on Query with journal entries and AP documents

    Hi Experts,
    I ahve the below query allowing me to have some information from journal entries and retrieve some other from AP docuements and PO.
    The thing is the query duplicates rows because the AP docuements have several rows but i don t know how to do to remove them (i guess this has to do with JOIN function...)
    SELECT
    T2.[GroupMask] as 'Account Family',
    T2.[FatherNum] as 'Parent Account',
    T2.[AcctCode] AS 'Account Code',
    T2.[AcctName] AS 'Account Name',
    T0.[TaxDate] AS 'Document Date',
    T0.[Number] AS 'Number',
    T0.[DocSeries] AS 'Document Series',
    T0.[BaseRef] AS 'Base Reference',
    T0.[TransId] AS 'Transaction Number',
    T0.[Ref2] AS 'Reference 2',
    T1.[ContraAct] AS 'Offset Account',
    T4.[BaseRef] AS 'PO code',
    T1.[Project] AS 'Project Code',
    T1.[ProfitCode] AS 'Distribution Rule',
    T1.[OcrCode2] AS 'Costing Code 2',
    T1.[OcrCode3] AS 'Costing Code 3',
    T1.[OcrCode4] AS 'Costing Code 4',
    (T1.[SYSdeb]-T1.[SYSCred])  AS 'Total Amount EUR',
    (T1.[FCDebit]- T1.[FCCredit]) AS 'Total Amount (FC)',
    T5.[DocTotalSy] AS 'PO Amount (EUR)'
    FROM  [dbo].[OJDT] T0 
    INNER  JOIN [dbo].[JDT1] T1  ON  T1.[TransId] = T0.[TransId]  
    INNER  JOIN [dbo].[OACT] T2  ON  T2.[AcctCode] = T1.[Account]  AND T2.[AcctCode] = T1.[Account]  
    INNER JOIN [dbo].[OPCH] T3 ON T3.[DocNum] = T0.[BaseRef]
    INNER JOIN [dbo].[PCH1] T4 ON T3.[DocEntry] = T4.[DocEntry]
    LEFT JOIN [dbo].[OPOR] T5 ON T5.[DocNum] = T4.[BaseRef]
    WHERE
    (T2.[AcctCode] > (N'599999' ) ) AND  (T2.[AcctCode] < (N'799999' ) )
    AND (T0.[TaxDate]>= [%0] ) AND (T0.[TaxDate]<= [%1])

    Try This
    SELECT T2.[GroupMask] AS 'Account Family',
       T2.[FatherNum] AS 'Parent Account',
       T2.[AcctCode] AS 'Account Code',
       T2.[AcctName] AS 'Account Name',
       T0.[TaxDate] AS 'Document Date',
       T0.[Number] AS 'Number',
       T0.[DocSeries] AS 'Document Series',
       T0.[BaseRef] AS 'Base Reference',
       T0.[TransId] AS 'Transaction Number',
       T0.[Ref2] AS 'Reference 2',
       T1.[ContraAct] AS 'Offset Account',
       T4.[BaseRef] AS 'PO code',
       T1.[Project] AS 'Project Code',
       T1.[ProfitCode] AS 'Distribution Rule',
       T1.[OcrCode2] AS 'Costing Code 2',
       T1.[OcrCode3] AS 'Costing Code 3',
       T1.[OcrCode4] AS 'Costing Code 4',
       sum(T1.[SYSdeb]-T1.[SYSCred]) AS 'Total Amount EUR',
       sum(T1.[FCDebit]- T1.[FCCredit]) AS 'Total Amount (FC)',
       T6.[DocTotalSy] AS 'PO Amount (EUR)'
    FROM OJDT T0
    INNER JOIN JDT1 T1 ON T0.TransId = T1.TransId
    INNER JOIN OACT T2 ON T1.Account = T2.AcctCode
    INNER JOIN OPCH T3 ON T0.TransId = T3.TransId
    INNER JOIN PCH1 T4 ON T3.DocEntry = T4.DocEntry
    INNER JOIN POR1 T5 ON T4.[BaseEntry] = T5.[DocEntry]
    AND T4.[BaseLine] = T5.[LineNum]
    INNER JOIN OPOR T6 ON T5.DocEntry = T6.DocEntry
    GROUP BY T2.[GroupMask],
       T2.[FatherNum],
       T2.[AcctCode],
       T2.[AcctName],
       T0.[TaxDate],
       T0.[Number],
       T0.[DocSeries],
       T0.[BaseRef],
       T0.[TransId],
       T0.[Ref2],
       T1.[ContraAct],
       T4.[BaseRef],
       T1.[Project],
       T1.[ProfitCode],
       T1.[OcrCode2],
       T1.[OcrCode3],
       T1.[OcrCode4],
       T6.[DocTotalSy]
    Regards,
    Kennedy

  • Duplicate Journal Entry and system crash

    Hi All,
    Just wondering anyone experience when duplicate the journal entry and change the posting date and system will just hang and follow by crash?
    Please advise.
    Best Regards,
    Foong Yee

    Hi Foong Yee Tai...
    Check with the Following SAP Note...
    1616687 - B1 shuts down when updating amount in Journal Entry
    Regards
    Kennedy

  • PARK & POST  Journal Entry and auto reversal

    Dear All,
    Our auditors has offered the following changes to be implemented in SAP system.
    1. JE approval: Configure the system functionality to place journal entries in a u201Choldu201D status when entered into the system, then the supervisor/manager review and approval then required to release the journal entry from the u201Choldu201D status and post the entry to the general ledger. The reviewer should not have the ability to initiate a journal entry.
    2. JE reversals:  Utilize the functionality to automatically reverse journal entries, booked in prior month as u201Creversing,u201D when new period is opened.
    3. 3-way match: Utilize the SAP functionality to perform an automated 3-way match process between invoice, purchase order, and goods receiving documentation. If invoices meet the 3-way match criteria based on established variance thresholds, invoices should automatically be approved for payment. If variances are noted, which exceed tolerance thresholds set by Management within the system, work flows should be used within the system to automatically route the invoice for the require approval.
    How this changes can incorporated in the system.
    Do suggest.
    Regards,

    For point 1, there is a functionality in SAP where all parked documents will be blocked and then released by the authorized person. There is a standard workflow for that. You may want to check Make and CHeck Settings for Document Parking. If this doesn't satisfy, then there's a need to create a customized workflow. Plus authorizations must be checked so that the users will not be able to Post but only Park. Note that, there is another functionality in Document posting called "Hold" this one, system doesn't assign any financial document. You can assign any reference/number to the document.
    For point 2, there is a Mass Reversal functionality in SAP called the F.80. For accruals, you may use FBS1 which you can input the reversal date and run F.81 to run the reversal.
    For point 3, it is a standard SAP functionality. You must set tolerance as to qty or price variance and the system automatically blocks the invoice for posting and the authorized person is required to release the approved invoices to remove the block for payment. In SAP, when you enter the PO for a particular invoice, it will give you how much or how many is actually goods received for that particular PO. in that sense you will be able to see whether the invoice is completely billed for the whole PO or not.

  • Function Module: to get Cash Journal Entries and Balances

    Dear Guru's,
    We need to develop a function module to display cash journal opening balance line item entries and closing balance of specific period.
    we have found document entries through table TCJ_DOCUMENTS or TCJ_POSITIONS now require help to generate opening and closing balances.
    Please help for the solution.
    AAR

    Hi,
    check FM FCJ_GET_DATA_FOR_SCREEN. Next time you can try to figure out by yourself. The program for transaction FBCJ is not that complicated and you can easily find this FM used there.
    Cheers

  • Documents, Journal entries and DTW

    Hello,
    Is there a way that when I import a journal entry, DTW tells me that I can't because this JE is coming from a document and the JE already exists ?
    I saw that there is the field "Origin No." (table OJDT, BaseRef) which is displayed when a document is created in SBO.
    But is there a way to import this number (coming from the document) in this field using DTW ?
    Thank you
    Thibault

    Hi again
    The best would be to import all your documents. Then once you are done make a dump of all the documents and journals created, use sql and link them in sql already. The new journals you are going to import, use vlookup in excel to match keys and debit and credits to pick up possible duplication.
    Hope this helps

  • T.code FF7B: Liquidity Forecast for Entry and Payment for each House Bank

    Hi All,
    With reference to the Report FF7B,
    I need to obtain the Liquidity Forecast for Entry (from Customers) and the Payment (to Vendors) for each House bank.
    Is it possible?
    Thanks
    Gandalf

    Hi,
    In help.sap.com, you can get the best practice document for Cash Management. This will give you a better idea on how to acheive your requirement.
    Hope this helps.
    Thanks and Regard,
    Anit

  • Journal entries and regulation requirements

    Hi experts ,
    One of our subsidiaries is located in Taiwan and we are planing to implement SAP there.
    We were told that according to the local regulation , we can't create JE in minus.
    Did you hear about something like that ? Can it be override somehow ?
    Thanks !
    Yoav
    Edited by: Yoavron on Jun 29, 2010 9:14 AM

    Hi,
    To find out about SAP B1 fitness for particular country please examine Globalization Knowledge Base document on the Document Resource Center in the portal.
    To avoid in the journal, specially reversal journal please untick option "Use Negative Amount for Reverse Transaction" in the company setting.
    Cheers

  • FMS- Journal Entry and AP Invoice

    2007B
    I ve created a UDF 'AP Remarks' in the JE Header level.
    I need the data in 'remarks' field of the AP invoice to be copied to the UDF in JE
    what is the FMS query for that?

    You can use the next query:
    If $[OJDT.TransType]=18
    Select I.Comments
    From OPCH I
    Where I.DocEntry=$[OJDT.CreatedBy]
    (But the Auto Refresh function works only connected to a manually modified field.)

  • Adding Journal Entry  throgh Incoming Payments,

    Hi Friend,
                  I need Help ....
    I need to create a journal entry using incoming payment. I have different types of deduction Accounts. All deductions need to display in  journal entry and also its reflect in Invoice.Then only invoice going to close.
    Dim junEntry As SAPbobsCOM.JournalEntries
    Ex :-
    :::::Journal Entry::::::
    *Account Code/BpName*                *AccountName*          *DR*            *CR*
    620005                                Deduction1            10      
    620006                                Deduction2           100
    620007                                Deduction3           100
    620008                                Deduction4           115
    620009                                Deduction5            10
    6200010                              Deduction6             10       
    6200011                         Cash Recived               655             1000
                                                              1000             1000 
            Dim decDebi As Decimal = 0
            Dim dtCount As Integer = dtDataTable.Rows.Count - 1
            junEntry = objAddOnCentral.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries)
            junEntry.Memo = strBpCode
            junEntry.ReferenceDate = Now.Date
            For intLoop = 0 To dtDataTable.Rows.Count - 1
                junEntry.Lines.AccountCode = dtDataTable.Rows(intLoop)("Account").ToString()
                junEntry.Lines.Debit = dtDataTable.Rows(intLoop)("Amount").ToString()
                decDebi += CDec(dtDataTable.Rows(intLoop)("Amount").ToString())
                junEntry.Lines.Add()
            Next
            junEntry.Lines.ShortName = strBpCode.Replace("Incoming Payments", "")
            junEntry.Lines.Credit = decDebi
            junEntry.Lines.Add()
            intErrCode = junEntry.Add()
            If intErrCode <> 0 Then
                objAddOnCentral.objApplication.StatusBar.SetText("" & objAddOnCentral.objCompany.GetLastErrorCode & " " & objAddOnCentral.objCompany.GetLastErrorDescription & "", SAPbouiCOM.BoMessageTime.bmt_Short, SAPbouiCOM.BoStatusBarMessageType.smt_Error)
                Return False
            End If

    Hi,
    I thing no need addon once u add incoming payment automatically invoice will close and JE also will pass.
    Regards,
    Siva

  • Create a payment based on a journal entry document

    Hello!
    In SBO 2007A PL44 I could add an incoming payment based on journal entry, but my code doesn't work in PL46.
    It's a bug?
    The Code:
            Dim oPay As SAPbobsCOM.Payments = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oIncomingPayments)
            oPay.DocType = SAPbobsCOM.BoRcptTypes.rCustomer
            oPay.DocDate = Today
            oPay.TaxDate = Today
            oPay.DueDate = Today
            oPay.VatDate = Today
            oPay.CardCode = "310000010"
            oPay.Invoices.DocEntry = 1882
            oPay.Invoices.InvoiceType = SAPbobsCOM.BoRcptInvTypes.it_JournalEntry
            oPay.Invoices.SumApplied = 12000
            oPay.CashAccount = "38117000"
            oPay.CashSum = 12000
            oPay.DocCurrency = "Ft"
            If oPay.Add <> 0 Then
                Dim errCode As Integer = 0
                Dim errmsg As String = ""
                oCompany.GetLastError(errCode, errmsg)
            End If
    I got the following error:
    errCode: -10
    errMsg: Cannot pay partial down payment 
    Regards Csaba
    Edited by: Csaba Fülöpcsei on Apr 8, 2009 4:49 PM

    Dear Jane Jing!
    Yes I have a issue in B1 app for this payment:
    In Incoming payments windows select the customer doctype and select the customer (310000010), and the list of the invoices check the line (1882, journal entry) and type 10000 in the Total Payment column. And after 'Payment Mean' icon, I can add the payment.
    The problem is still on all payments of jourlnal entries from DI API.
    If I assign any value to oPay.Invoices.SumApplied field, I couldn't add the payment.
    Regards Csaba

  • Advice Bank Statement and External Reconciliation Report

    I am looking for suggestion on how to prepare a Bank Reconciliation Report for Checks in Crystal Report. I have short listed Tables ORCT and RCT1 for Incoming Payments and OVPM and VPM1 for Outgoing Payments.  My main concern is how to differentiate between Reconciled and Non Reconciled Checks. As Seen under Banking -> Bank Statement And External Reconciliation-> Manual Reconciliation Under cleared column.

    You can go to Administration> System Initialisation>Company details> basic initialisation> (check) Bank Processing.
    Also, you need to do a few set ups before you start using the bank statement facility. You can find this in SET Up> Banking> Bank Statement Processing.
    When you check this, you would be able to see the Bank Statement Processing Form in the banking module.
    all the information that you might need for the Bank Statement Processing for versions A and B can be found in the Portal under the following path:
    SAP Portal -> Support -> Documentation Resource Center -> Modules and Features -> Bank Statement Processing (BSP)
    Hope the documentation helps you.

  • Manual bank statement -  report

    Hi SAP Gurus,
    Is there any standard report in SAP which can pull out the entries maintained through manual bank statement, the business transactions used for a year??
    Regards,
    SATVIR SINGH

    Hi:
              I guess your requirement can be met through FBL3N. As you know FF67 credits Bank Incoming clearing a/c and debit Main Bank account as BRS is posted and vice versa for Outgoing. This posting is done using document types as defined in SPRO...Financial Accounting....Banks...Business Transactions...Payment Transactions....Manual Bank Statement..Define posting key and posting rules....Define posting rules...There you will see doc type against various transaction types you use for postings BRS.
    All posting done through FF67 can be tracked by executing Main Bank Accounts GLs in FBL3N and filtering the document type.
    Hope it will help you.
    Regards

  • Choose Posting Date when entering Bank Statement

    Version: 2007A SP00 PL49 (and newer)
    Problem: Because of SAP note 1296726, you have to use the bank statement date as the posting date for the corresponding journal entries and reconciliations.  This is not flexible: if I have a bank statement of 24/06/2009 and I want to reconcile an invoice with posting date 30/06/2009, I get an error: "Reconciliation date must be on or after the last posting date for
    transactions selected for reconciliation Message 3821-3".  Using 30/06/2009 as posting date for this particular row is not possible because the posting date of the bank statement is 24/06/2009 and you will get the same error again because you reconcile that row JE with the total bank statement JE at date 24/06/2009 containing a journal entry on 30/06/2009 (namely that row JE).
    Since PL49 and the fix of SAP note 1296726, it is no longer possible to use a different posting date and bank statement date and this is the main cause of the problem above.
    Current Workaround: Don't reconcile the invoice when entering the bank statement and do this manually after you have finalized the bank statement.
    Proposed solution: Make an extra field "posting date bank statement" in the "Bank Statement Details" window where the user can choose on which day he can post his bank statement (just like in other documents like invoices, ...).  In the problem described above the user could choose 30/06/2009 as the posting date, but keeping 24/06/2009 as the statement date.

    >
    Avinoam Fraenkel wrote:
    > Pieter
    >
    > I had some feedback recently that the cumulative journal posting in the Bank Statement Processing functionality which is unique to the Belgian localization may in fact not be a general requirement from a business process perspective in Belgium
    This is true. I completely agree with that.
    >
    > If this is true then my preferred approach to solve this issue is to provide the standard Bank Statement Processing functionality to Belgium where each separate Bank statement line creates a separte posting with no collective cumulative posting being made.
    >
    > Please confirm if this approach will be acceptable to you.
    I'm not a business man, but an IT expert.  But as far as I know, your approach is correct.
    Before we used SAP in our company, our previous accounting software made only one journal post for each Bank statement.  This way, the (series) numbering of the journal posts correspond to the bank statement numbers.
    >
    > If so then I will need to do some further research and will consider this approach in our future version planning.
    >
    > Aside from the above I will add your proposal to the future change list but cannot currently guarantee if and when it will be implemented.
    Thanks for taking my proposal into consideration.
    >
    > In the meantime I would ask you to kindly use the workaround of performing manual reconciliations after bank statement finalization.
    >
    > Thank you for raising this issue and providing your solution proposal.
    >
    > Grateful thanks,
    >
    > Avinoam
    You're welcome!
    Regards,
    Pieter Verhaeghe

Maybe you are looking for

  • How can I return to the last selected item in a dialog box

    In OS 9 using Dreamweaver (for example) when I was adding images to a document, each time I added one the dialog box would return to the last selected image and I could just arrow down to the next in the list, add it (exiting the dialog box) and then

  • Why wont' my Iphone 4 print to hp 4500 all in one?

    I downloaded the Hp home&biz app to print to HP 4500 All in one printer.   I can print from Ipad, Itouch and MacBook Pro but not from Iphone 4.????? I have tried everything. Thanks.

  • Mac osx 10.4.11 update problem

    hi!! i took care of the duplicate fonts but i cant manage to post a grab here-cant find the file attachment- but from the link u send me i must tell you that it aint the same,my font problem is only concerned with my web browsers,like,if i make a sea

  • Incorrect results with design-time artifacts

    Hi, Problem description: After creating design-time artifacts, Analytic view with Anlaytic privilege having assign restriction as repository procedure is not returning desired results. HANA AWS revision 70. Problem Recreation: Below I am giving the p

  • Weblogic.security.auth.login.UsernamePasswordLoginModule only accepts uid=weblogic & pw=weblogic (Why?)

    I am playing (learning) with weblogic.security.auth.login.UsernamePasswordLoginModule as a LoginModule using JAAS based authentication. Surprisingly, the only userid and password combination acceptable is uid=weblogic, pw=weblogic combination. I went