Payments by check

Hello all,
I have a couple of questions:
If you could please explain me the process of making payments by checks in SAP.How is this process different if the the function of printing checks is outsourced to the bank instead of printing checks in house.The payment information is sent to the bank through an interface.
How is the reverse flow of information handled( details of outgoing payments processed) in both cases if printed in house or by the bank.what would be the reverse information coming in SAP.
Also, would there be any variations in the scenario if Payment orders are used in APP?
Thanks in adavance
SA

Hello,
A situation, I have not done myself, but a few thoughts:
- You would run the proposal, which triggers creation of a file to be sent to bank. This would still create FI documents, only that the check is not printed. The bank would recieve the file and make transfers / issue checks.
- The variant you use in running the proposal is the one which triggers inputs to interface program.
-What is the advantage of bank issuing checks?, as far as I could imagine, it would increase the credibility among vendors.
- Check with bank the DME format applicable and map in the interface program.
- The reverse flow, that is collections from customers is quite normal as the bank would send a file and is uploaded in SAP and this creates payment advices and FI entries. Here again mapping the format is important.
- So, I don't think there is an impact on APP program.
Reg
*assign points if useful

Similar Messages

  • AP Payment Method (Check) & Remit-to Bank Info (Bank A/c and A/c Name) not populated automatically

    Hello all,
    We have encountered an issue during our testing for upgrade to R12 (12.1.3) where in the AP Invoice header, the remit-to bank a/c info (a/c number and name) as well as the payment method are not being picked for some sites in certain suppliers (even though the banking details and payment method have been maintained at supplier site level).
    However, this is not the same for other sites maintained under the same suppliers for eg:
    Supplier A has 2 sites
    Site 1
    Site 2
    In the invoice, when giving Supplier A, Site 1, the remit-to details are not auto populated (but can be manually picked) - same with the payment method (Check)
    If Supplier A, Site 2 is picked, all details populate automatically.
    Also, this has been noted with suppliers that have been migrated from R11 however, not all migrated suppliers show this behavior.
    Any advice is very much appreciated.
    Thanks and Regards,
    Fazleth

    Changes in relation to Supplier Bank set up in R12 upgrade I worked on in 2010 so may not be 100% but here goes:-
    R12 introduces a Priority flag in addition to the Primary flag in the Supplier Bank set up.
    This functionality replaces the R11i use of the Primary flag in the current Supplier bank set up.
    My understanding is that in the upgrade to R12 the Primary flag will be assigned as in R11i and the new priority flag will be assigned as per the logic of the R11i Primary flag. 
    In the example above it could be that for supplier site A site 2 was the primary flag and a priority has been given to site 2 if this is the case there may be some small set up that needs to happen to give site 1 a priority in R12.
    I don't have the set up steps to hand but you should be able to run some reports and query in the supplier set up to validate this.

  • Lost payment method after reversing the payment and check

    Hi all,
    After reversing payment and check via FB08 , the payment method stored in payment document is cleared.
    does anyone know that why the payment method in the payment docuemnt is cleared after reversing the document ? and where can I chase back the payment method ? Thanks

    Hi Sreehari,
    Thanks for your reply. The configuration you mentioned have already been set. The payment method can be determined by vendor master when creating invoice and the payment method can also be stored in the field "payment method" in payment document. But the problem is the value of the filed "payment method" in payment document will be cleared after reversing the payment and cheque. As a result, we can't chase back the payment method in the reversed payment document.
    Regards,
    Ken

  • Advance check payment and check bounce

    Hello All,
    Am working with a Pharma Client and the Scenario is Like ....
    Advance check payment and check bounce - Normally in bussiness when the material is selling to the stockist Client will collect  the advance post dated checks from the stockists as per Client credit policy, if the stockist issued check got bounced the stockist will be in risk category and sales order should be blocked automatically by SAP system. When the next transaction is doing with the same customer system should not allow the check payment & it should allow only demand draft.
    Please suggest me how I will map this in sap credit management
    Regards]
    Venkat

    Currently, if any cheque is bounced, where it has been recorded in SAP ??  You have to consider that field and have to try with any of the following user exits which are related to credit management.
    a)  LVKMPFZ1: USER_CREDIT_CHECK1
    b)  LVKMPFZ2: USER_CREDIT_CHECK2
    c)  LVKMPFZ3: USER_CREDIT_CHECK3
    If I am correct, only through some text maintained in FI, you can conclude whether a cheque is bounced or not.  So may be you can think of some date field which is currently considered for due for presentation.
    G. Lakshmipathi

  • Outgoing\Vendor Payment through Check

    Hi All,
    I am trying to create Outgoing payment\Vendor payment, can any provide me the code for the same, like what are the things need to me set to create Outgoing payment like check account\cash account.
    What would be code when we try to create check payment for more than one invoice in the single document.
    Thanks & Regards,
    Naresh
    Edited by: naresh2684 on Dec 5, 2010 5:43 AM

    This is taken directly from the helpfile, incoming payment example but you only need to tweak the code a bit to make it for an outgoing.
    Private Sub cmdTest_Click()
       On Error GoTo ErrorHandler
       Dim vCompany As SAPbobsCOM.Company
       'create company object
       Set vCompany = New SAPbobsCOM.Company
       'set paras for connection
       vCompany.CompanyDB = "SBODemo_US"
       vCompany.Password = "manager"
       vCompany.UserName = "manager"
       vCompany.Server = "(local)"
       'connect to database server
       If (0 <> vCompany.Connect()) Then
          MsgBox "Failed to connect"
          Exit Sub
       End If
       Dim nErr As Long
       Dim errMsg As String
       'do it now
       Dim vPay As SAPbobsCOM.Payments
       Set vPay = vCompany.GetBusinessObject(oIncomingPayments)
       vPay.Address = "622-7"
       vPay.ApplyVAT = 1
       vPay.CardCode = "D10006"
       vPay.CardName = "Card D10004"
       vPay.CashAccount = "288000"
       vPay.CashSum = 0
       'vPay.CheckAccount = "280001"
       vPay.ContactPersonCode = 1
       vPay.DocCurrency = "Eur"
       vPay.DocDate = Now
       vPay.DocRate = 0
       vPay.DocTypte = 0
       vPay.HandWritten = 0
       vPay.JournalRemarks = "Incoming - D10004"
       vPay.LocalCurrency = tYES
       vPay.Printed = 0
       vPay.Reference1 = 8
       vPay.Series = 0
       vPay.SplitTransaction = 0
       vPay.TaxDate = Now
       vPay.TransferAccount = "10100"
       vPay.TransferDate = Now
       vPay.TransferSum = 5031.2
       If (vPay.Add() <> 0) Then
           MsgBox ("Failed to add a payment")
       End If
       'Check Error
       Call vCompany.GetLastError(nErr, errMsg)
       If (0 <> nErr) Then
           MsgBox ("Found error:" + Str(nErr) + "," + errMsg)
       Else
           MsgBox ("Succeed in payment.add")
       End If
       'disconnect the company object, and release resource
       Call vCompany.Disconnect
       Set vCompany = Nothing
       Exit Sub
    ErrorHandler:
       MsgBox ("Exception:" + Err.Description)
    End Sub
    To add multiple invoices, before adding the document do:
    vPay.Invoices.InvoiceType =  = it_PurchaseInvoice
    vPay.Invoices.SumSpllied = 400
    vPay.DocEntry = 1
    vPay.Invoices.Add()
    'Repeat above as neecesary.
    There are lots of posts on the forum that cover this topic too.

  • Payment Transaction check box in Posting Key configuration

    Hi all,
    Could you please enlighten me on the use of Payment transaction check box in posting key configuration screen.
    I would like to know what impact does it have if its checked and if unchecked.
    In F1 help its mentioned, Set this indicator in the posting keys for incoming payments, outgoing payments, payment differences (residual items) and payment clearing. - but I am need to know in which scenario this check box plays a role and its affect.
    Thanks,
    DSK

    Hi,
    Generally Payment Transaction checkbox will be checked for Payment Documents. Ex: PK -25 (Outgoing payment) and PK-35 (Incoming payment)
    Payment Transaction checkbox will be unchecked for Invoice Documents. Ex PK-01 (Sales Invoice) and PK-31 (Purchase Invoice)
    In this case, Default Payment Terms will be picked by system automatically at the time of invoice posting.
    Thanks
    Chandra

  • Iam unable to purchase in AppStore reason being payment gateway,checked with my bank no issues.

    Iam unable to purchase in AppStore reason being payment gateway,checked with my bank no issues.

    Hey Bing:
    Clearly the message hasn't trickled down to Adobe support. After purchasing Captivate, and trying to register now I'm locked out of my accoun entirely-- including all my files on Creative Cloud!! I just spent a the better part of two hours dealing with this exact same issue as the orginial poster (creative cloud login issues... likely due to an old email address floating around). Here's my favorite gem:
    Khalid: I have checked the information and see that I am unable to reset your password and login to subscription service in this case I will go ahead and escalate this issue to our concern team who will reset and get back to you within 24 to 48 hours
    Jeff: great. can i get a case number so i can follow up with billing / otherwise track this issue
    Khalid: Once you close this chat you can login to your Adobe account after some time like 20 minutes later to view the case number
    Jeff: how am i supposed to login exactly?
    Khalid: If you are able to login to your Adobe account then you can login to Creative Cloud
    Jeff: Khalid, that's what we've been trying to do
    Jeff: if i could login we wouldn't have anything to escalate
    Khalid: Yes, that is correct since you are unable to login I will escalate this issue to next level they will check and get back to you at the earliest
    Jeff: got that. now how do i get this case number?

  • Report for Vendor payment with check no, reference

    Hi Gurus;
    My client issue one cheque against multiple vendor invoices and used F-53 to knockoff vendor invoices against this cheque.
    He enter the check no. in assignment field.
    Now, he want a report for - Which check is used to knockoff (Paid) which invoice.
    Is there any way or report in SAP.
    Thanks in Advance.
    Devendra Singh Chauhan

    Hi Devendra,
    How about using the check register (transaction code S_P99_41000101) and select the radio button 'with items paid'. The report provides details such as check number, payment document, vendor invoice and other relavant details per bank account.
    Ashish

  • Cancel/reverse a partial payment document / check

    Issue is:
    There is 1 payment doc for 2 checks issued.
    Check 1: Encashed by the vendor
    Check 2: Issued but not encashed and we want to cancel the check 2 and reverse the payment doc partially and then move the AP cr to u201Cunclaimed property liability accountu201D.
    How could this be doneu2026 Following tcodes  give errors as below..
    1.     FBRA or FB08 gives..
    Document includes already cleared items - reversal not possible
    Message no. F5308
    2.     FCH8 for check 2 gives..
    Document BRN1 4200023157 is not purely a clearing document
    Message no. FS601
    Diagnosis
    Payment document 4200023157 in company code BRN1 also contains the clearing document number 4200024802 in addition to its own clearing document number in line item 001. As a result, the document cannot be reversed after resetting the cleared items.

    Hi,
      As only one doument got generated for two open transaction, now indivual reversal is not possible. Only you can do manual transafer posting.
    Abhi

  • F110 - Automatic Payment Run - Checks Will Not Print!!

    Hi!
    My client executed transaction F110 - Automatic Payment Run for a range of vendors (100000 - 599999).  He was able to execute the run but could not print checks and found out that payments weren't assigned check numbers in the system.  However, payments were cleared off the vendors account as if they had been paid.
    Please help!!
    Tks,
    Deki

    Hello
    did you assign a variant in the prinout/data medium tab?
    you need to assing the proper house bank, account id and check lot in this variant.
    If this is correct then you should get the check number assigned to the payment
    document #.
    Points will be appreciated
    Regards,
    Zaid Azam

  • Outgoing Payment - Payment Means - Check No becomes ZERO

    Hi All Experts,
    When I am adding outgoing payment, I am facing problem i.e. after selecting Check No in reference on outgoing payment, then i am going to enter payment means. I checked Manual then enter check no in check no column, then get amount by pressing ctrl + B and click ok and back to outgoing payment. After that i press Add. When i review the ledger, the check no is missing. It is not showing in Ref.3.
    Can any body help me in this reagards.
    With Warm Regards,
    Chintesh Soni

    Thanks Shridharan for response,
    I am working with SAP Business ONE 2005 B PL 25.
    Have you checked in same ?
    If yes, and there is no problem, then how do i get the PL 38 ?
    I am working as System Support Exe. as end user.
    Pl Help..!!
    With Warm Regards,
    Chintesh Soni
    sonichintesh on msngr yahoo
    sonichintesh at  yahoo co in

  • Customer payment: voided check. still in clear items

    Gurus...
    We paid a customer with two checks sent out last month. The checks were returned to us and we voided and stop-paid them. However it's still showing in the system as "paid" in the customer detail. that is in FBl5n its in cleared items.
    So now we have wired the money to them but I have nothing to apply it against
    When we void a check shouldn't there be a method to reopen the other documents that were paid by this. kind of original invoice reopening.
    How can I force this to happen for the current situation? do i need to take care in some other way?
    Please explain how to go about now.
    Thanks
    Kavana

    In SAP, you can void the check but not reversing the payment or reverse the payment and void the check at once. In this case, I guess that you just voided the check (FCH9) but not reversing the payment. You should have used FCH8 to void and reverse the payment at the same time.
    For now, reverse the old payment using FBRA (reset and reverse function)

  • Problem with payment and check

    HI
      My problem is the following; there were a invoce that arrived and it was paid 50% in advanced.
    According to the invoice, it is supposed that in the Project Builder the complete quantity loaded to each project should be entered, and to the CIP.xxxx is loaded 50% that had been paid. That value in negative sign, to be able to cancel and to compense it. When one tries to enter this quantity in negative, the system show the following message: " only allowed numbers in positive." If we not carried out the before mentioned the check will come out for 100% of its value including 50% that was already paid.  
    I need to know how to do the following: 
    The check comes out for 50% that is the amount we have to pay and at the same time to enter in Project Builder the total that goes loaded to each project. 
    Thanks in advance for your help
    Message was edited by:
            Christian Meier
    Message was edited by:
            Christian Meier

    I want to clarify the transaction as under:
    1] The reciept of goods [100 % value that you book to the project] is one thing; 2] the payment to the vendor [ 50%] is another.
    Going by the above ,
    You can treat the 50% Advance payment as 'down payment" [ Spl.GL Transactions].Use t/ code: F-48.
    Once the material in entiriety is supplied you can regularize this down payment[T.code:FBA8].
    For the supply made,you can book the entire 100% in the system.
    Hope this clarifies your doubt.

  • AP tables - Payments vs Checks

    Hi All,
    We need to report transaction totals as per date range:
    - Total No of Invoices Paid
    - Total Amt Paid ($)
    - Total No of Invoices processed
    Had a basic question... which table to use.. AP_INVOICE_PAYMENTS_ALL or AP_CHECKS_ALL... because the total for same date ranges are diffrent, and not sure why.
    Please let me know the relationship between the three tables and points to be taken care when creating the sum. If there are any existing queries, please share.
    AP_INVOICES_ALL
    AP_CHECKS_ALL
    AP_INVOICE_PAYMENTS_ALL
    Noticed, AP Checks do'nt have exchange rates. How to report multi currency trns?
    Thanks in advance.
    -Bhaskar

    Bhaskar,
    Well, I had to do this type of thing in Discoverer recently, or at least something similar (maybe not exactly the same).
    You have to be careful, as I think you are seeing, with the accounting dates in AP_INVOICE_PAYMENTS_ALL. Say you wrote a check on 09/25/2009. On 11/15/2009, you voided the check. In AP_INVOICE_PAYMENTS_ALL, you get 1 set of entries dated 09/25/2009 and a reversing set dated 11/15/2009. So if you are data selecting 09/01/2009 to 09/30/2009, AP_CHECKS_ALL would say a check amount of 0, but AP_INVOICE_PAYMENTS_ALL would say a check amount (the original check amount).
    So you have to think hard about what you want and test play with your data. For example, do you want to include voided checks in your counts, or not? They were checks that you did produce, after all. If count voids, do you count for the period when issued (check date) or the period when voided (accounting date - which might mean it gets counted twice)?
    What I did was join AP_CHECKS_ALL to AP_INVOICE_PAYMENTS_ALL. I used check date (from the checks table) to select my check records. I had to do SUM(AMOUNT) from the invoice payments table. You have to do that because the amount from the checks table is in every joined row and gets added in extra times. Say you had a check that paid two invoices. Check for $100. Invoice 1 $60 and Invoice 2 $40. The join gives you Check A, 100, 60 for row 1 and Check A, 100, 40 for row 2. So if you sum amount from AP_CHECKS_ALL, you get $200, which is not right. Sum amount from invoice payments and you get $100, the right amount.
    For invoice count, you probably will have to do a COUNT_DISTINCT on invoice id from the invoice payments table. This is because an invoice might be paid on more than one check. Say Invoice A had a part 1 for $20 and a part 2 for $10. Part 1 paid on check 1 and part 2 paid on check 2. Do you want to say the invoices paid count is 2, or 1. Some people might say 2, because I did have two different payments for that invoice. Others might say invoice count should be 1, because it was the same invoice, just on multiple checks. So you have to decide what you want to do. We went for the invoice paid count should be 1, which requires the Count_Distinct function.
    Not sure what you mean by Total Invoices Processed. Maybe that is separate from payments? That you just want to know how many invoices were entered for a certain date range, regardless of payment status? We also wanted an invoice count, but not tied to payment status. So that is when you would start looking at the AP_INVOICES_ALL table.
    In all cases, you have to study and determine what record statuses you want to include in your selection criteria. As maybe you can tell from the questions I was asking up above. What you want may be different from what we wanted. That is why I say you have to do testing with your real data to make sure you are meeting your specific requirements. This posting just helps to point you in the right direction. Hopefully you have Toad or SQL Plus as tools that you can use to do manual SQL statements against the tables. I used Toad to help me review our data here and figure out what I needed to do for selection criteria. Toad lets me see the joined results in detail so I can better understand what happens when I then GROUP the results (to summarize).
    Hope this helps a bit. Good luck.
    John Dickey

  • Automatic Payment program checks not asigned in order

    Hi All,
    I configure Bank Details mandatory for check payments  in FBZP -> Payment menthod in Country -> India -  check payments-->In required master record specification - > check Bank details , then all vendors maintain bank details in master (fk02).
    Before this configuration in APP run Payment vouchers and check numbers assigned in Vendor Code order.
    After this configuration Payment vouchers generated in Vendor code order and Check numbers generated in Vendor Bank account Number order.
    My requirement is payment vouchers and check allotment in vendor code order only, Please guide me how to solve this issue.
    Regards,
    Moon.

    Hi,
    The config : Financial Accounting --> Bank Accounting --> Business Transactions -->Payment Transactions --> Payment Request --> Define Clearing Accts for Receiving Bank for Acct. Transfer
    Is to decide bank sub account of the sending bank, when you are doing Bank to Bank transfer. This is manditory for cash management bank to bank transfer. Please read the config documentation again.
    I just cut and paste from SAP documentaion.
    "In this activity you define the offsetting accounts for the receiving bank accounts for bank account transfers (payments between house bank accounts) which should be posted to when payment is made.
    The entries are necessary when payment requests are created for cash management payment advice notes that result from cash concentration, for example. The offsetting accounts for the paying house bank are determined by the payment program specifcations and the payment methods used. The offsetting accounts for the receiving house bank cannot be determined from these specifications, however, but can be defined in this section. "
    Now, when you are creating payments with F111 and if you want to get sub accounts for house bank you have to do the following config.
    F111 -> Maintain Configuration -> Bank determination -> Bank accounts ( for each accont id and payment method combination ).
    Then you will see payments from this sub accounts and you have to setup posting rule to clear this account if you are doing EBS.

Maybe you are looking for

  • DNS issues from one domain controller to another (but not the other way) nslookup DNS request timed out

    Hi All I've been trying to trudge my way through an issue our client is having but I'm getting nowhere fast. This issue was discovered when searching for why users at our second site were experiencing slow logons every morning (5-10minutes to login).

  • Passing MSI properties causes itunessetup to fail

    Trying to install latest iTunes 11.0.2.26 Installing on Windows 7 x86 SP1 all updates applied. Here is the behavior I've noticed. If trying to run iTunesSetup.exe via command line and you pass any MSI PROPERTY arguments to the setup it will fail. It

  • How to check which table

    Hi Gurus, Need some advice. In SM69, I could see a list of jobs define by SAP and also by the customer. SM69 refers to table SXPGCOTABE. When I view the table from SE16, it only shows the jobs define by SAP not by the customers. Could anyone tell me

  • Pdf file not opening on pushing fdf file with F key in Adobe  Reader

    Well i am a novice developer in case of PDF Development. The problem which i am facing is:- In our application a PDF document submits the data to server and server sends back FDF to client with f key as http path of PDF which is present on web server

  • HT201263 HELP ON THE IPHONE NOT STARTING-UP

    Hi I reset my iphone yesterday and now the screen only shows the apple logo. Moreover, sometimes it show the red battery feature which i dont understand as i will be connecting the iphone to the computer and it all cant help me to charge the iphone.