How to Collect the Incoming Payment from Alternative Customer?

Hi All,
Can any one solve the below problem and in which screen I have to execute?
1. How to Collect the Incoming Payment from Alternative Customer, if one Customer is having 2 Accounts in the same Company Code?
Thanks
Chandra

Please see the below link:
http://help.sap.com/saphelp_47x200/helpdata/en/01/a9b220455711d182b40000e829fbfe/frameset.htm
Thanks
Chandra

Similar Messages

  • How to display the report output from a customized Oracle Form button

    Hi Gurus
    I developed a customized oracle form and one customized report. I want to run report from oracle customized form, for this i use one button to submit concurrent request for request.
    its successfully submitted and i can view output by using View ----> Request --------> Find -------------> Output...
    But problem is that how can i view output by using button not doing all steps to view output.
    Regards,

    Hi Haq Nawaz,
    Refer Here
    Regrads,
    Guru

  • How to call the print method from a custom program

    Hi,
        I need to print the text thats displayed in a custom area. Its added to a custom container. Can anyone help me out to do this?
    Thanks
    Lilan

    Hi
    U should create an abap list and print it, so a possible code could be:
    * Leave the MODULE POOL
    LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN <SCREEN>.
    * Create a new page to be printed immediataly
    NEW-PAGE PRINT ON.
    * Create the list
    WRITE: 'TEXT'.
    * Back to MODULE POOL
    LEAVE LIST-PROCESSING.
    Try and let's know the result
    Max

  • How to collect the cash from letter of credit

    Hi,
    I have made the incoming payment using F110 screen using the letter of credit. How can i collect the cash from the bank using the letter of credit? Which t.codes to use.
    also let me know the link in sap help where i can read more about letter of credit.

    Hi The ltr of cr functionality is similar to Bills of Exch. functionality.  What matters is all about the doc. processing.
    I suggest you know about Ltr of Credit functionality in google first.
    Regards.........AJ

  • I have checked around the internet, but still can't find any answers. How can I prevent incoming mail from interrupting the music I am listening to on my iPhone? That 1-second muting function drives me insane, especially when a lot of mail is coming in.

    I have checked around the internet, but still can't find any answers. How can I prevent incoming mail from interrupting the music I am listening to on my iPhone? That 1-second muting function drives me insane, especially when a lot of mail is coming in.

    If you want to hear your music on iPhone without interruption, switch Settings > Airplane Mode: ON.

  • How to do an incoming payment based on journal entry whit SDK ?

    Hello
    Somebody have the code for SDK of Business One,  how  to do an  incoming payment based on journal entry?
    Tks

    Hello Julio,
    Here some example code from the SDK helpfile.
    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
       'Set the object's properties
       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 = 0
       vPay.Invoices.AppliedFC = 0
       vPay.Invoices.AppliedSys = 0
       vPay.Invoices.DocEntry = 8
       vPay.Invoices.DocLine = 0
       vPay.Invoices.DocRate = 0
       vPay.Invoices.InvoiceType = 13
       vPay.Invoices.LineNum = 0
       vPay.Invoices.SumApplied = 5031.2
       Call vPay.Invoices.Add
       Call vPay.Invoices.SetCurentLine(1)
       vPay.Invoices.AppliedFC = 0
       vPay.Invoices.AppliedSys = 1089.65
       vPay.Invoices.DocEntry = 11
       vPay.Invoices.DocLine = 1
       vPay.Invoices.DocRate = 0
       vPay.Invoices.InvoiceType = it_Invoice
       vPay.Invoices.LineNum = 1
       vPay.Invoices.SumApplied = 1000
       vPay.CreditCards.AdditionalPaymentSum = 0
       vPay.CreditCards.CardValidUntil = CDate("10/31/2004")
       vPay.CreditCards.CreditAcct = "295000"
       vPay.CreditCards.CreditCard = 3
       vPay.CreditCards.CreditCardNumber = "884848448"
       vPay.CreditCards.CreditCur = "EUR"
       vPay.CreditCards.CreditRate = 0
       vPay.CreditCards.CreditSum = 5031.2
       vPay.CreditCards.CreditType = 1
       vPay.CreditCards.FirstPaymentDue = CDate("11/29/2002")
       vPay.CreditCards.FirstPaymentSum = 5031.2
       vPay.CreditCards.LineNum = 0
       vPay.CreditCards.NumOfCreditPayments = 1
       vPay.CreditCards.NumOfPayments = 1
       vPay.CreditCards.OwnerIdNum = "3993939"
       vPay.CreditCards.OwnerPhone = "383838888"
       vPay.CreditCards.PaymentMethodCode = 1
       Call vPay.CreditCards.Add
       Call vPay.CreditCards.SetCurentLine(1)
       vPay.CreditCards.AdditionalPaymentSum = 0
       vPay.CreditCards.CardValidUntil = CDate("10/31/2004")
       vPay.CreditCards.CreditAcct = "295000"
       vPay.CreditCards.CreditCard = 3
       vPay.CreditCards.CreditCardNumber = "884848448"
       vPay.CreditCards.CreditCur = "EUR"
       vPay.CreditCards.CreditRate = 0
       vPay.CreditCards.CreditSum = 1000
       vPay.CreditCards.CreditType = 1
       vPay.CreditCards.FirstPaymentDue = CDate("11/29/2002")
       vPay.CreditCards.FirstPaymentSum = 1000
       vPay.CreditCards.LineNum = 1
       vPay.CreditCards.NumOfCreditPayments = 1
       vPay.CreditCards.NumOfPayments = 1
       vPay.CreditCards.OwnerIdNum = "3993939"
       vPay.CreditCards.OwnerPhone = "383838888"
       vPay.CreditCards.PaymentMethodCode = 1
       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
    HTH Regards Teun
    Edited by: Teun Aben on Aug 4, 2010 9:00 PM

  • How to change the residual payment document type?

    Hi,
    When i make residual partial payment then the document type of the residual amt will become DZ/KZ. However this is wrong because all invoices must be DR or KR. How can i change this doc type for residual payments?

    hi,
    its quite simple i beleive .. all you need to do is let me take an example of a customer ...
    while a collecting a payment from a customer you recieve it from  the tcode  f-28
    so once you are on the screen you are asked for a date and doc type also
    this is were you can change the doc type
    regards
    sayeed

  • DueDate field in the Incoming payments

    I need know the Incoming payments paid with the respective duedates..
    for this, i use this SQL statement:
    SELECT
    T1.DocNum ,
    T2.Serial ,
    T1.CardCode ,
    T1.Cardname ,
    T6.GroupName,
    T4.SlpName ,
    T3.CityS ,
    T0.SumApplied,
    T1.DocDate ,
    FROM  [dbo].[RCT2] T0
    LEFT OUTER  JOIN [dbo].[ORCT]  T1  ON  T1.DocNum = T0.DocNum
    LEFT OUTER JOIN [dbo].[OINV] T2  ON  T2.DocEntry = T0.DocEntry
    LEFT OUTER JOIN  INV12 T3  ON T3.DocEntry=T2.DocEntry
    LEFT OUTER JOIN  OSLP T4 ON T4.SlpCode=T2.SlpCode
    LEFT OUTER JOIN  OCRD T5 ON T5.CardCode=T2.CardCode
    LEFT OUTER JOIN  OCRG T6 ON T6.GroupCode=T5.GroupCode
    WHERE T1.CardCode='[%0]'
    How can i add the duedate field from INV6 table, without duplicate records in this select?There is any other duedate field
    in another table that corresponds the INV6 table(duedate)?
    Thanks
    Edited by: Philip Eller on May 20, 2008 9:25 AM
    Edited by: Philip Eller on Jun 3, 2008 8:37 AM*
    Edited by: Philip Eller on Jun 17, 2008 9:30 AM**

    The value date in the INV6.. (AR Invoice>Accounting tab>Instalments)...
    The date of the expiration in the Invoice's DUE DATE. (DocDueDate) can be different of the date of Instalments.
    I can divide the total of the Invoice with different dates(DueDate).
    Each one generates a incomming payments
    I need a query that shows this field...
    basically...
    SELECT
    T1.DocNum ,
    T2.Serial ,
    T1.CardCod,
    T1.Cardname ,
    T0.SumApplied ,
    FROM  [dbo].[RCT2] T0
    LEFT OUTER  JOIN [dbo].[ORCT]  T1  ON  T1.DocNum = T0.DocNum
    LEFT OUTER JOIN [dbo].[OINV] T2  ON  T2.DocEntry = T0.DocEntry
    WHERE T1.CardCode='[%0]'
    and add the the DueDate (Instalments)

  • How to remove the credit card from the Apple id?

    how to remove the credit card from the Apple id?
    plz ITS urgently

    If the option to select "None" isn't appearing when you attempt to edit your payment information, then there is likely a billing issue with your last iTunes Store purchase(iTunes didn't receive payment from your credit card company for that order). Before you can remove your credit card, you have to pay for the unpaid order. You can call your credit card company and troubleshoot the billing issue with them, or try another card, or if you live in a country that supports iTunes Gift Cards, you can redeem one of those to pay for the order. Once you have done that, you should be able to remove your credit card info as outlined in http://support.apple.com/kb/ht1918

  • Error while opening the Incoming Payment Form

    hi,
            When i open the incoming payment(Banking -> Incoming Payments -> Incoming Payment) in sap b1 07 i got a error message "linking primary sales account has not been  completed" .how can i open it?

    Open Administration -> Setup -> Financials -> G/L Account Determination ->Sales Tab ->General Tab.
    Check if the "Checks Received" and "Cash on Hand" accounts are set

  • Error while posting Incoming payments from customers

    Hi Experts,
                      when i am trying to post Incoming payments from customers in F-28,The payment difference amount is Rs 5.
    while simulating the following error 
    "TAX CODE C2 FOR COUNTRY IN HAS BEEN DELETED OR INCORRECTLY CHANGED"
    MESSAGE NO.FS201

    Hi,
    OBZT just controls the display of the various tax codes in the drop down list if MIRO/ FB60 etc.
    You need to maintain the atx coe correctly in FBZP. Go to FBZP and in this tax code and check whether the tax rates etc. have been defined correctly for it.
    Regards,
    SDNer

  • How to clear the down payment against the vendor invoice in the payment program?

    A down payment is made $25 Later an invoice is posted for $100 Now i want to Pay $75 to Vendor But the Automatic payment program  is not clearing the down payment against the vendor invoice. Could you please help how to clear the down payment against the vendor invoice in the payment program?

    Swathi,
    Need your help i have a strange situation
    1) F-48 and document posted with document no = 15..... in company code = L002 with payment block getting populated automatically
    2) F-48 and document posted with document no= 15..... in company code = Us11 without payment block and the screen does not even show payment block, I had to check this from BSEG table
    My question is
    a) How and where does this payment block is triggered through configured and how to process next steps.
    b) when I use F-48, how do we do the actual payment, is there a check printing and linking it to the KZ document or is check printing done outside the system and the KZ document type does not have any linkage.
    c) If I do FB60 for a higher amount how do we pay partial amount.
    Your response is appreciated.

  • Incoming payment from a vendor-is there any tcode to post

    How do we post an incoming payment from a vendor.Is there any tcode to post or f-02 should be used.

    Hi
    Also try F-52
    Thank You,

  • BAPI for TOCE : FF68 - Posting Incoming Payments from Customers

    Hi,
    Can anybody provide me if there is any BAPI for the transaction FF68 : Posting Incoming Payments from Customers?
    Cheers,
    Yash K

    Hi,
    OBZT just controls the display of the various tax codes in the drop down list if MIRO/ FB60 etc.
    You need to maintain the atx coe correctly in FBZP. Go to FBZP and in this tax code and check whether the tax rates etc. have been defined correctly for it.
    Regards,
    SDNer

  • Create Incoming payment from an A/R Invoice

    Hello,
    I am on SBO2005A SP01 PL39 and do not find the option to create Incoming payment from an existing Invoice. When I open an existing A/R Invoice and click on CopyTo it shows only A/R Credit Memo. I remember seeing the Incoming Payment option in the earlier patch. Does this mean I cannot create an Incoming Payment based on an A/R Invoice?
    Thanks and Regards,
    Sheetal

    Sheetal,
    Just to clarify, the Incoming Payment has never been available as a Copy to option from Invoice.
    The Incoming Payment resides inside the Banking module. 
    From Main Menu > Banking > Incoming Payment ...Incoming Payment
    The only time the Payment Means window will automatically open when you Add the Invoice is when the Payment Terms of the Business Partner is setup to open Payment Means window.
    Suda

Maybe you are looking for

  • Adapter Module for SOAP Sender

    Hi, Any alternative way to create adapter module for soap sender? Regards, Farooq

  • Prepared Statement in MS Access

    Hi, I want to pass a string value for a SELECT statement like this for MS Access: /** Get the connection */ getConnection(); if (tableName.equals("Confidential_Data")) { pstmt = conn.prepareStatement("select emp_no, emp_name, project_name from " + ta

  • Hi All Authorization Issue for CS02

    Hi, I have a transaction cs02. I am making changes using by calling this transaction( ie i have used it in program as call transaction cs02.) but for this transaction few user's don't have Authorization .So when these user's run the report they are n

  • Java(TM) Plug-in

    I am looking for a way to change the settings on the browser tab of the Java Plug-in Control Panel, on a Windows OS, from a command line. We have two IE based applications that need to be used by one user, one of the apps requires the Sun JRE, and th

  • HT203254 What is the question mark when I turn on the power?

    When I turn on the power, it doesn't work but the question mark appears. What am I supposed to do?  (question mark inside of a file mark)