Posting incoming payment ismore than the net due

Dear Experts,
How can we do the transactions where in the customer incoming payment is more than the net due.
with regards
Ramesh Y

Hi Ramesh,
I think I have replied to your query in other tread. Remaining amount you have to treat as advance. This advance can be posted using with Special GL indicator.
Rgds
Murali. N

Similar Messages

  • F-28 partial incoming payment entered more than the net due

    Dear Experts,
    My users are entering the partial payments in F-28 transactions more than the net due. How can we avoid these in future.
    And secondly how can we do the transactions where in the amount received is more than the net due.
    with regards
    Ramesh Y

    Hello Ramesh,
    If you receive more amount than net due, then you can post these amount with special gl indicator in transaction F-29 as a advance. So that this amount is being displayed separately in FBL5N.
    Rgds
    Murali. N

  • Post incoming Payments (F-28)

    I am getting an error when I tried to post incoming payment from Customer.The txn is F-28. The error message is "The difference is too large for clearing"
    Please help me to resolve this issue.
    Thanks.

    Hi Latha,
    Check your tolerance limits(should have been defined for both employees and customer/vendors).Also you are trying to clear items against each other which donot match. In such cases select Partial/Residual clearing and try to clear the open items.
    You can select Partial/residual clearing tab and proceed.
    This may happens because amount entered and amount assigned both are different and in amount not assigned there is some amount difference.
    So, First select all documents with help of select all and click on Item deactivation tab. Now it will show amount entered same in block of not assigned .(unless the amount entered is equal to amount assigned..u cant clear)
    Now select the document agt which u want to clear.
    If any partial payment is there go to partial tab and there double click before payment amount.
    It will show payment amount.
    This might solve your problem
    Regards
    Aravind
    <b>PLEASE DO ASSIGN POINTS IF USEFUL</b>

  • T-code F-28 (Post Incoming Payments) - only 16 lines to enter invoice doc

    Hope someone can help me on the following issue:
    Issue is pertaining to t-code F-28 (Post Incoming Payments). There are only 16 lines for user to enter invoice documents when we select Document Number for the Additional Selection. For some cases, we do need to enter more than 16 lines.
    Question:
    1.     Anyway to increase number of lines for user to enter invoice documents
    2.     Any workaround if the number of lines cannot be increased.
    Thank you very much.
    Wilson

    Hi,
    That is standard SAP screen defination.
    You can use "Page Down" button to enter additional 16 document numbers and so on. Or can give the document numbers in ranges.
    If you have a huge list of invoice numbers to be given which can not be met by above, then you need to develop a custom program to call BDC or BAPI_ACC_DOCUMENT_POST
    Regards,
    Gaurav

  • BDC / Bapi For  Post Incoming Payment (F-28)

    Hi
    Im creating BDC for F-28. But it got error coming out.
    >> It says DB05B-PSZAH(02) is not an input field.
    What I do is: First, I search for Line Item then Document Number. Then It return to basic list. Then I loop again for the second Line Item Number and Document Number.
    I can activate the first amount but cannot for the next amount and so on.
    Anybody could help me on this??
    Is there any BAPI for Post Incoming Payment (F-28)?
    Thank you.
    Regards.

    i dont think there is a BAPI for this Transaction...
    i have done a BDC on F-28 myself....pasting the code....hope it helps you....
    *******NOTE********
    the parameter in the subroutine is to see if there is a single document or multiple documents being posted.
    FORM fill_bdc_data_f-28_9005 USING p_i_mult_doc TYPE c.
    **BDC from screen 9005
      DATA : l_amt_bdc(13), l_amt_bdc_remain(13), l_amt_bdc_mult(13),
             l_amt_bdc_mult_remain(13), l_assignment(14), l_period(2),
             l_amount(13).
      CLEAR t_bdcdata.
      REFRESH t_bdcdata.
      PERFORM bdc_dynpro USING 'SAPMF05A' '0103'.
      PERFORM bdc_field USING 'BDC_OKCODE' '=AB'.   "OK CODE - doc overview
    **get user default date format and pass date in that format
      PERFORM convert_date_to_user_format USING bkpf-bldat.
      PERFORM bdc_field USING 'BKPF-BLDAT' w_date.  "cheque date
      CLEAR w_date.
      PERFORM bdc_field USING 'BKPF-BLART' i_blart.  "doc type
      PERFORM bdc_field USING 'BKPF-BUKRS' i_bukrs.  "comp code
    **get user default date format and pass date in that format
      PERFORM convert_date_to_user_format USING bkpf-budat.
      PERFORM bdc_field USING 'BKPF-BUDAT' w_date.  "posting date
      CLEAR w_date.
      l_period = sy-datum+4(2).
      PERFORM bdc_field USING 'BKPF-MONAT' l_period. "period
      PERFORM bdc_field USING 'BKPF-WAERS' 'INR'.    "currency
      PERFORM bdc_field USING 'BKPF-BKTXT' i_bankl.  "doc. hdr. text
      PERFORM bdc_field USING 'BKPF-XBLNR' i_xblnr.  "Ref. Document No.
      PERFORM bdc_field USING 'BSEG-ZUONR' i_zuonr.  "Assignment(Depot Code)
      PERFORM bdc_field USING 'RF05A-KONTO' i_bank_gl. "Bank GL acc
      PERFORM bdc_field USING 'BSEG-GSBER' i_gsber.  "Business Area
      l_amount = bseg-wrbtr.
      PERFORM bdc_field USING 'BSEG-WRBTR' l_amount. "Amount
      PERFORM bdc_field USING 'BSEG-PRCTR' ''.  "Profit Center
    **open items data
      PERFORM bdc_field USING 'RF05A-AGKOA' 'D'.     "Acc type (D=customers)
      PERFORM bdc_field USING 'RF05A-XNOPS' 'X'.     "Std OIs check box
    **end of first screen
    **document overview screen
      PERFORM bdc_dynpro USING 'SAPMF05A' '0700'.    "Overview Screen
      PERFORM bdc_field USING 'BDC_CURSOR' 'RF05A-AZEI1(01)'.     "cursor
      PERFORM bdc_field USING 'BDC_OKCODE' '/00'.     "OK CODE
      PERFORM bdc_field USING 'RF05A-NEWBS' '19'.    "posting key
      PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
      PERFORM bdc_field USING 'RF05A-NEWUM' 'B'.     "Spl GL Indicator
    **for single document selected
      CLEAR l_amt_bdc.
      IF p_i_mult_doc = ''.
    ***new screen - next line item
        PERFORM bdc_dynpro USING 'SAPMF05A' '0303'.
        PERFORM bdc_field USING 'BDC_OKCODE' '=BU'.    "OK CODE
    **for single document, use the bouncing amount calculated earlier
        l_amt_bdc = w_amt_ant_bouncing.
        PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc. "amount
    **due date - same as posting date on screen
    **get user default date format and pass date in that format
        PERFORM convert_date_to_user_format USING bkpf-budat.
        PERFORM bdc_field USING 'BSEG-ZFBDT' w_date.  "due date
        CLEAR w_date.
    **assignment
        CLEAR l_assignment.
        CONCATENATE t_seldoc_ant_bouncing-belnr
                    t_seldoc_ant_bouncing-gjahr INTO l_assignment.
        PERFORM bdc_field USING 'BSEG-ZUONR' l_assignment. "assignment
        PERFORM bdc_field USING 'BSEG-GSBER' i_gsber.
    **if there is some remaining amount, then go for another line item
        IF w_rem_amt_ant_bouncing > 0.
          PERFORM bdc_field USING 'RF05A-NEWBS' '15'.    "posting key
          PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
    **new screen
          PERFORM bdc_dynpro USING 'SAPMF05A' '0301'.
          PERFORM bdc_field USING 'BDC_CURSOR' 'BSEG-ZTERM'. "CURSOR
          PERFORM bdc_field USING 'BDC_OKCODE' '=BU'.    "OK CODE-ENTER
          l_amt_bdc_remain = w_rem_amt_ant_bouncing.
          PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_remain.
          PERFORM bdc_field USING 'BSEG-ZTERM' '0001'.
    **AGAIN
          PERFORM bdc_dynpro USING 'SAPMF05A' '0301'.
          PERFORM bdc_field USING 'BDC_CURSOR' 'BSEG-WRBTR'. "CURSOR
          PERFORM bdc_field USING 'BDC_OKCODE' '=BU'.    "OK CODE-SAVE
          PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_remain.
          PERFORM bdc_field USING 'BSEG-ZTERM' '0001'. "pmt term -hardcoded
          PERFORM bdc_field USING 'BSEG-SKFBT' l_amt_bdc_remain.
        ENDIF.
    **multiple documents
      ELSE.
    **initialize remaining amount to amt entered on screen
        l_amt_bdc_mult_remain = bseg-wrbtr.
        LOOP AT t_seldoc_ant_bouncing.
          IF l_amt_bdc_mult_remain > 0.
            IF bseg-wrbtr > t_seldoc_ant_bouncing-rem_amt.
              l_amt_bdc_mult = t_seldoc_ant_bouncing-rem_amt.
            ELSE.
              l_amt_bdc_mult = bseg-wrbtr.
            ENDIF.
    **remaining amt = screen amt - amt calculated above.
            l_amt_bdc_mult_remain = l_amt_bdc_mult_remain - l_amt_bdc_mult.
            PERFORM bdc_dynpro USING 'SAPMF05A' '0303'.
            PERFORM bdc_field USING 'BDC_OKCODE' '=BU'.    "OK CODE
            PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_mult. "amount
            PERFORM bdc_field USING 'BSEG-GSBER' i_gsber.  "Business Area
    **due date - same as posting date on screen
    **get user default date format and pass date in that format
            PERFORM convert_date_to_user_format USING bkpf-budat.
            PERFORM bdc_field USING 'BSEG-ZFBDT' w_date.  "due date
            CLEAR w_date.
    **assignment
            CLEAR l_assignment.
            CONCATENATE t_seldoc_ant_bouncing-belnr
                        t_seldoc_ant_bouncing-gjahr INTO l_assignment.
            PERFORM bdc_field USING 'BSEG-ZUONR' l_assignment. "assignment
    **posting key 19 for all but last document
            PERFORM bdc_field USING 'RF05A-NEWBS' '19'.    "posting key
            PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
            PERFORM bdc_field USING 'RF05A-NEWUM' 'B'.     "Spl GL
          ENDIF.
        ENDLOOP.
      ENDIF.
    **post remaining amount
      IF p_i_mult_doc = 'X'.
    **new screen if there is some amount left
        IF l_amt_bdc_mult_remain > 0.
    **posting key 15 with remaining amount
          PERFORM bdc_field USING 'RF05A-NEWBS' '15'.    "posting key
          PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
          PERFORM bdc_field USING 'RF05A-NEWUM' ''.     "Spl GL
    **new screen
          PERFORM bdc_dynpro USING 'SAPMF05A' '0301'.
          PERFORM bdc_field USING 'BDC_OKCODE' '=BU'.    "OK CODE
          PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_mult_remain.
          PERFORM bdc_field USING 'BSEG-ZTERM' '0001'. "pmt term - hardcoded
        ELSE.
    **if no amount is left, no need for a further line item
          PERFORM bdc_field USING 'RF05A-NEWBS' ''.    "posting key
          PERFORM bdc_field USING 'RF05A-NEWKO' ''. "customer
          PERFORM bdc_field USING 'RF05A-NEWUM' ''.     "Spl GL
        ENDIF.
      ENDIF.
    **clear variables
      CLEAR : l_amount, l_assignment, l_amt_bdc,
              l_amt_bdc_remain,l_amt_bdc_mult, l_amt_bdc_mult_remain.
    ENDFORM.                    " fill_bdc_data_F-28_9005

  • Reconciliation amount must be less than the balance due for this tran

    Hi,
    I received the error below when creating an outgoing payment for the invoices.
    "Reconciliation amount must be less than the balance due for this transaction."
    I have found this thread from Forum "Reconciliation amount must be less than the balance due for this trans " but that was posted in 2009 Jul.
    The database version I am using is 2007B PL 13.
    Kindly suggest if you know the solution for 2007b PL 13 for the above mentioned error.
    Thank you.
    Regards,
    Yadana

    Hi Yadana,
    The solution from that thread is still valid for you. Your version is as early as 2008.
    Thanks,
    Gordon

  • Error while posting Incoming payment Cancellation entry in Current date

    Hi Experts
    Scenario
    Incoming payenet created on 31-05-2009
    Cancellation to be done on current date - 02-06-2009
    Current period selected as 010609 to 300609 in general settings
    When Incoming payment is cancelled - The system shows message ' The selected period is locked, Posting will be created in Current period', Continue - ?
    When YES is clicked - 'Date deviates from permissible range - (Journal Entry - posting date) Msg - (173-11)
    Document Numbering Journal entry is for Current period. (All the Journal entries are getting posted in current date, hence Document numbering is correct for Journal entry)
    PLEASE NOTE - The cancellation entry is needed to be passed on system date (02-06-2009) and NOT original document date of incoming payment (31-05-2009)

    Hi Sundaraja
    In 2007 B this issue does not arise, working FINE
    In 2005 B, there is option to set period as Current which I have done. and Active 'YES' & Locked 'NO'. Infact I have done this for all the periods of yr 2009-10.
    Still getting the error.
    Regards,
    Sid

  • Error while posting Incoming Payment.

    Hi
    I Got this error while posting Incoming Payment. What do this Error Mean. How to solve it.
    Error:
    SBO_Application_ItemEventAP Object reference not set to an instance of an object
    Thank You

    Hi Gayathri,
    Try to disconnect the add-ons if any and then add the incoming payment.
    Regards,
    Vijay kumar

  • 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

  • Posting Incoming Payment : Message F5 536

    Dear Experts,
    When passing F-28 - Post Incoming Payments, I keep getting this error.
    "Tax-relevant accounts not defined in this area; please correct
    Message no. F5536"
    Any idea ? what can be wrong.
    Pleae asdvise ASAP.
    Best Regards,
    Mitesh Desai

    Hi,
    Check in FS00 for the customers related reconciliation account master data.
    Go to control data tab and check whether anything is given in the tax category column.
    If there is any selection in that, on the next field, please select post without tax allowed .
    Go to FTXP and create the relavant tax codes for customers and vendors. And also check in the customer master data in control tab for the tax selections.
    and also go thru this thread
    Tax Relevant Account
    Hope this helps
    Regards
    Jyotsna

  • Posting Incoming Payment

    I am trying to Post Incoming payment through T.Code: F-28
    I suppose I am facing an error with respect to G/L account. I am core SD Consultant & unable to detect, what will be required to repair the following Error:
    Tax-relevant accounts not defined in this area; please correct
    Please Guide.
    Thanks & Warm Regards,
    Rajesh Banka

    Dear Rajesh:
    This is the work of FI Consultant.
    However the following configuration should be done to remove the error.
    Check Whether Tax codes have been defined in T.code FTXP.
    check Whether GL Accounts have been defined for tax OB40
    and also the check The GL Account in T.code FS00 in the tab
    Control data .Mention the tax category or select the check box  - (Posting without tax allowed).
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    MSReddy

  • Posting Incoming payments - F-28

    *Tcode> F-28*
    I am trying to post incoming payment. The customer is created in company code 1050 but, I am getting this error message:
    "The entry 1050 is missing in table T043G"
    How do I correct this error?
    Please, I need step by step how to solve the problem not just general statement or comment. thanks

    Dear David,
    The reason for this is probably as a result of your customizing:
    In table T043G-ZTERM you can define a payment term as a standard
    for carryforward postings. Please have a look at the documentation of
    this field:
    "Standard payment term for carryforward postings
    Terms of payment key which is to be transferred to the line
    item when posting residual items.
    Procedure
    You only need to specify a terms of payment key here if the
    terms are to be transferred from the original document."
    You can customize T043G via SM31 or via IMG.
    You are probably assigned to a tolerance group that has a fixed
    payment term associated with it, in this case 1050.
    Therefore you would either have to delete this fixed payment term
    from the settings of your tolerance group, or maintain the entry
    in table T052.
    You can check this in transaction SE16, enter table name T043G, and
    leave all the selections blank except for 'Fixed Term' where you
    should enter 1050.
    I hope this helps.
    mauri

  • Posting Incoming Payment via T-code: F-28

    Hi SAP,
    Our users need to post incoming payment via t-code F-28, but when they simulate the
    transaction, only 1 line item was appeared and system gave error
    message;" please correct the marked line item". Then i correct the line item (fill in business area).
    Then, when i enter the next posting for 2nd line item, system gave an
    error message: "You are not authorised for company code 9000". Before
    this our user can do the posting via incoming payment.This problem only
    happened after we upraded the system to ECC.6.
    I try check Txn SU53 to display the error message, unfortunately no error was generated by
    the system. Please help me. I did ask our local consultant before but they asked me to implement note 727973. we already implemented the note but the problem still happened.
    Will give points for those who help me solve this problem.
    TQ
    Regards,
    Nazrul

    Now that you are working on a ECC 6.0 the suitable note will be:
    "1249923 - FB05: F5 413 for field GSBER for automatically created item".
    Please, apply the correction instructions on this note and afterwards the problem should be solved.
    Regards,
    Lidia

  • Posting Incoming Payment thru R-28

    Hi ,
    While posting incoming payment thru f-28 on simulation the second line item is Highlighted on entry of text & assignment we are able to post the document.
    I want to know where and what changes are done to get this feature.
    Thanks
    Surojit

    Hi
    This means that either text/assignment or both have been made mandatory for that line item, either in GL related field status group or Posting key realted field status group or through validations.
    Hence you may need to check all these to find out where it is customized.
    Regards

  • The "net due date" of a Credit memo

    Hi All,
    if a creatate a credit memo (t.code FB75), and fill in a "Payment Term", SAP doesn't calculate the "Net due date" according to it (the Payment Term).
    SAP shows a "Net due date" equal to the "bline date", ignoring the "Payment Term".
    Could anyone tell why does it happen?
    Thanks

    Invoice related credit memos:
    1. Credit memos can be linked to the original invoice by entering the invoice
    number in the "Invoice Reference" field during document entry. In this case,
    the terms of payment are copied from the invoice so that the invoice and the
    credit memo are due on the same date.
    Other credit memos:
    2. Terms of payment in other credit memos are invalid. These credit memos are
    due on the baseline date. To activate the payment terms on these non-invoice
    related credit memos, enter a “V” in the "Invoice Reference" field when
    entering the document.

Maybe you are looking for

  • Error in po creation wrt pr

    i am creating a pr , releasing it and then creating a po with reference to pr...but i get this rror message. "PROCESSING STATE 01 VERSION IN PROCESS,DOESNT ALLOW PROCESSING OF DOCH EADER" regards

  • BI Schedule and Presenation Server on Different Servers Configuration

    I'm having a problem getting my iBots to run and deliver the information to the catalog with the following configuration: 2 Presentation Servers on Windows with IIS for NTLM authentication (via a Load Balancer) OBIEE Server and Scheduler, and Presena

  • Data Drop-Down list

    I have a table with 2 columns: code, description and I view the descriptions in the data drop-down list (4 lines). it works. I want that if I type a new string in the drop-list (it works) - so it should be added to the table as a new record, so the n

  • My airplay has disappeared from my windows laptop, using itunes vs 12.1.1.4, but not on iphone6 or ipad, what gives?

    My Airplay disappeared from my Windows laptop, using iTunes vs 12.1.1.4, but I still see it on my iphone6 and ipad. How do I get it back on my laptop?

  • Database not creating using DBCA

    Hi, I installed oracle on solaris 10 sparc system when i try to create a database using dbca, it is not creating. after i click on finish button on dbca to create a database, database creating windows is not opening, i mean it is in same window, i cl