Cash discoount for a/c payable

hi
iam trying to get a cash discount from my vendor xyz by payment term 002
i have configured my own payment terms for company code t100
when i post invoce with f-43 and provide paymnt term 002 i get error saying cash discount only be granted 0.000%
this keep happening in every vendor invoice  posting only with payment term 002
could anybody suppot me ,i appreciate ur help in this regards
saj
uk

Hi Saj,
Check your tollarence limit for cash discount, if it has been mentioned as 0% cash discount by any chance?

Similar Messages

  • To get cash discount for my payment term

    Hi there,
    To get cash discount for my payment term, I make configuration as below
    *Step 1: Create a payment term in Maintain of Payment term
                 On immediate payment 5 % cash discount
    *Step 2: -  Define acount for Cash discount taken
                 -  Define acount for Lost Cash discount
    *Step 3: Assign the payment term to my Vendor
    *Step 4: Post a new invoice
    *Step 5: Clear it with payment immediately
    But I still don't receive cash discount
    Please show me the reason and how to check configuration
    Kind regards
    Minhtb

    HI,
    Follow the path
    Financial accounting ->Account receivables and payables ->vendor account->business transactions->outgoing invoice/credit memos->maintain terms of payment.
    In this  percentage coulumn u can maintain discount rates.
    Pleasa assign points if useful.
    Regards,
    Shradha.

  • Defining Accounts for Automatic Tax Payable Transfer Posting

    Dear all,
    I would like to know about accouting process of Accounts for Automatic Tax Payable Transfer Posting.
    Please give me a detail example about business that use this account
    Thanks so much
    Minhtb

    Hello,
    This scenario applies at month end.
    Say during the month you have posted payables are receivables resulting in the following balances on your tax accounts:
    Input tax account: 10.000 Dr
    Outpux tax account 12.500 Cr
    When you prepare your tax return at month end with report "Sales Purchases tax returns", it will print out all if your input and output tax transactions, detailing the total balances mentioned above.
    At the same time you can activate the tax payable posting option with help of the variant options. Besides the printout, SAP will then also automatically post the following document:
    Dr Output tax account 12.500
    Cr Input tax account 10.000
    Cr Tax payable account 2.500
    in other words, the input/output tax accounts are zero and the remaining (payable) balance is offet to a special clearing account, the "tax payable account". This account is then cleared against cash as part of e.g. bank processing when the payment is made and that ends the process.
    hope this clarifies, please do not forget to assign POINTS if this answers your question.
    Thanks
    Rene

  • Devolped an ALV report for daily cash receipts for selected date range

    hi,   
                 how to devlop an ALV report for daily cash receipts for selected date range.for this report what are the tables and fields we have to use.what is the selectionscreen&what is logic.give me sample report.

    hi,   
                 how to devlop an ALV report for daily cash receipts for selected date range.for this report what are the tables and fields we have to use.what is the selectionscreen&what is logic.give me sample report.

  • Devloped an ALV report for daily cash receipts for selected date range

    hi,   
                 how to devlop an ALV report for daily cash receipts for selected date range.for this report what are the tables and fields we have to use.what is the selectionscreen&what is logic.give me sample report.

    Hi,
    You can develop simple reports using Report Painter.
    You may be also interested in:
    Check report SAPMF05A for credit memo
    See the following Std reports on Payment Advices execute the Tcodes:
    S_ALR_87009888
    S_ALR_87009889
    S_ALR_87009890
    S_ALR_87009891
    S_ALR_87009892
    S_ALR_87009893
    S_ALR_87009978
    S_ALR_87009979
    S_ALR_87009980
    S_ALR_87009981
    S_ALR_87009982
    S_ALR_87009983
    S_ALR_87010056
    S_ALR_87010057
    S_ALR_87010058
    S_ALR_87010059
    S_ALR_87010060
    S_ALR_87010061
    S_ALR_87010066
    S_ALR_87010067
    S_ALR_87012106
    S_ALR_87012107
    S_ALR_87012108
    S_ALR_87012109
    S_ALR_87012110
    S_ALR_87012111
    S_ALR_87012116
    S_ALR_87012117
    S_ALR_87012200
    S_ALR_87012201
    S_ALR_87012202
    S_ALR_870122
    S_ALR_87012204
    S_ALR_87012205
    S_ALR_87012350
    S_ALR_87012351
    S_ALR_87012352
    S_ALR_87012353
    S_ALR_87012354
    S_ALR_87012355
    sample ALV report:
    tables:
    marav. "Table MARA and table MAKT
    Data to be displayed in ALV
    Using the following syntax, REUSE_ALV_FIELDCATALOG_MERGE can auto-
    matically determine the fieldstructure from this source program
    Data:
    begin of imat occurs 100,
    matnr like marav-matnr, "Material number
    maktx like marav-maktx, "Material short text
    matkl like marav-matkl, "Material group (so you can test to make
                            " intermediate sums)
    ntgew like marav-ntgew, "Net weight, numeric field (so you can test to
                            "make sums)
    gewei like marav-gewei, "weight unit (just to be complete)
    end of imat.
    Other data needed
    field to store report name
    data i_repid like sy-repid.
    field to check table length
    data i_lines like sy-tabix.
    Data for ALV display
    TYPE-POOLS: SLIS.
    data int_fcat type SLIS_T_FIELDCAT_ALV.
    select-options:
    s_matnr for marav-matnr matchcode object MAT1.
    start-of-selection.
    read data into table imat
      select * from marav
      into corresponding fields of table imat
      where
      matnr in s_matnr.
    end-of-selection.
    Now, we start with ALV
    To use ALV, we need a DDIC-structure or a thing called Fieldcatalogue.
    The fieldcatalouge can be generated by FUNCTION
    'REUSE_ALV_FIELDCATALOG_MERGE' from an internal table from any
    report source, including this report.
    The only problem one might have is that the report and table names
    need to be in capital letters. (I had it )
    Store report name
    i_repid = sy-repid.
    Create Fieldcatalogue from internal table
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
           EXPORTING
                I_PROGRAM_NAME         = sy-repid
                I_INTERNAL_TABNAME     = 'IMAT'  "capital letters!
                I_INCLNAME             = sy-repid
           CHANGING
                CT_FIELDCAT            = int_fcat
           EXCEPTIONS
                INCONSISTENT_INTERFACE = 1
                PROGRAM_ERROR          = 2
                OTHERS                 = 3.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM       = i_repid
                I_STRUCTURE_NAME         = 'marav'
                I_DEFAULT                = 'X'
                I_SAVE                   = 'A'
           TABLES
                T_OUTTAB                 = imat.
      IF SY-SUBRC <> 0.
        WRITE: 'SY-SUBRC: ', SY-SUBRC .
      ENDIF.
    Hope this will help.
    Regards,
    Naveen.

  • Creation of Service Tax code for Service Tax Payable

    Hi
    Please advise me to create service tax code for service tax payable
    Thanks and Best Regards
    Shekhar
    Edited by: Shekhar Yecham on Sep 16, 2008 8:28 PM

    Hi Randeep,
    As they said it is service tax GTA.Right we are doing out of SAP, we want it to be done in SAP
    The tax calculation will be like below
    service tax of 10.3%  has to caluclate on the 25% of the Base amount. Like
    25% is taxable and 75% is livied.
    Base Amount - 100.00
    25% of the base amount(100/25) = 25.00
    service tax(10.30%) to be calculate on Rs. 25.00
    25*10.30% = 2.57
    Base amount --> 100.00
    Service Tax  -->      2.57
            Total:           102.57
    Regards,
    Siva.

  • SAP Tables for FI Accounts Payable

    Hello gurus,
    Does anyone know what are the SAP Tables for FI Accounts Payable and what TCodes to display these A/P tables?
    Thanks in advance.
    Best regards,
    Gab

    And use transaction code SE16 to view the tables mentioned by Jan.  And to add check BSAK for cleared items.
    Elias
    Edited by: Elias Akorli on Dec 11, 2009 4:01 PM
    Edited by: Elias Akorli on Dec 11, 2009 4:02 PM

  • Post-Capitalization of Cash Discount for Asset

    Hi,
    We are in ECC 6.0 and have activated Document Splitting.
    Further, have provided asset field in Define post capitalization of cash discount to assets in Document Splitting of SPRO.
    After the both, my expectation is to see the entry as stated by SAP in the scenario of Post-Capitalization of Cash Discount for Asset.
    But unfortunately, the discount amount is not being capitalized on the payment date, but is being posted to cash discount account.
    Kindly let me know what mistake i might have carried for this.
    Thanks and Regards,
    Purna.
    Scenario: Posted invoice for asset purchase using F-90 with payment terms as 2% cash discount if paid within 15 days.
    Assume: Asset purchased on 06.01.2012 and as per the payment term if paid before 20.01.2012 i will get 2% cash discount.
    Have made the payment to vendor using T-code F-53 on 10.01.2012, even though i see a cash discount is being calculated as required, but the account is an cash discount received account. Instead, what i was expecting is the asset account.
    Hope, my question is being clear and i will look forward for a reply.

    Hi,
    Please check your config below.
    IMG->FA->AA->Transactions->Acquistions->Prevent Subsequent Capitalisation of discounts...
    If the indicator is set for your company code, system will not capitalised the subsequent discounts.
    Regards,
    Srinu

  • Using of cash journal for advance payment to vendor or from customer.

    using of cash journal for advance payment to vendor or from customer.please give advice?

    Hi,
    Set up a new transaction for "Advance Payment to Vendor" in Cash Journal IMG. The menu path in IMG is Financial Acct --> Bank Accounting --> Business transction --> Cash Journal --> Create, Change, Delete Business Transactions. Transaction Code for this configuraiton activity is FBCJC2.
    Enter Company Code, Business Transaction Type as "K" and Cash Journal Business Transaction as "Advance Payment to Vendor". This will work if you are paying to Vendor from Petty Cash.
    Check Receipt from Customer is supported if you take it in Cash Journal and then later deposit to Bank. But check payment to Vendor should be handled trhough either automatic payment program or outgoing payment transaction.
    Hope this helps,
    Reagrds
    CSM Reddy

  • How to post cash journal for Advances payment to vendor in SAP

    Hi Experts,
    I need some clarification about How to do the cash journal for special G/L indicator for customers and vendors.
    Please provide valuable suggestions.
    Regards
    Madhan Mohan

    Hi Madan,
    Whenever you use FBCJ for postings, it has to be for Cash postings only. The Cash posting is default and you don't get the option to enter the cash GL. So, whenever you make postings in FBCJ, one leg has to be Cash A/c(Either DR. or CR.)
    My question to you is, why would you like to post Vendor Invoice in FBCJ? You have FB60 to post Vendor Invoice which would post a Credit on vendor and your advance postings in FBCJ would have posted a Dr. on Vendor.
    You just need to clear this Dr. and Cr. postings in T-Code F-44 and your transaction is complete. There is no need to try to post Vendor Invoice in FBCJ. Only & Only Cash transactions can be posted in FBCJ.
    Hope this helps. If this has answered your query, please close the thread.
    Regards,
    Kavita

  • Cash Forecasting for FICA - PSCD

    Hi
    Can anybody tell me the extra steps needed for configuring Cash forecasting for FICA / PSCD application?

    Hi Prasad
    Thanks for the reply. I assigned planning groups to contract accounts and assigned planing level to planning groups. Made settings in FICAIMG in integration with cash management section for automatic updates to cash management. Then posted a document using FPE1. I can view the documents in FDSR table and I can view the total in in FF7B. But while drilling down to line item level I am getting " Level belongs to deb/cred. No line items found".Error number: RQ388.

  • Automatic SAP Cash Application- for ACH incoming payments

    Dear experts,
    We have requirement to automatically apply cash for the ACH incoming customer payments. We have been using LOCKBOX for automatic cash application for Check incoming payments. Now we want to implement automatic cash application for incoming ACH payments as well. What are available best options? Can we do this through EBS?
    Any suggestions are highly appreciated.
    Thanks,
    Tina

    Hi Tina
    I suggest to use a different GL code for incoming ACH payments and set this up using BAI codes from your banks EBS file. I believe you are not running EBS statement upload or manual load currently. Identify all the bank transactions and their related BAI codes with the help from your bank.
    Thanks
    Sekhar

  • Cash Flows For Investment Order

    Hello
    Is it Possible to generate cash flows for Investment Order
    Regards

    Hi,
    Investment order is determined by the object class and used for asset creation. The other funtionalities of the Internal order will remain same. So you can create cash flow for investment Order.
    This may help
    Regards
    Shantanu

  • Cash Journal For different Cureencies

    Hi,
    We want to create multiple cash journals for different currencies? For example, for USD bank account we want to create two cash journal one for USD and one for EUR.
    Can we do that?
    Regards,
    Nand

    Hi,
    You can have different cash journals for same GL account.
    You have to create separate cash journal for each currency, but GL account is same.
    You can have currency wise expense details through RFCASH20 progrmme.
    Rgds
    Murali. N

  • Cash jouranl for business area wise

    Hi ,
    can we create cash journal for each business area wise.
    If it so , can you explain configuration steps in precise wise.
             For example ,  Company code have 8 business area.
    we need to create 8 cash journals or simply create 1 cash journal for all business area.
            Thanks in advance.
    Kiran Konujula

    Hi Kiran!
    You have two option
    1) Create 1 cash  journal  for Ccode
    2) Create  8  cash  journal  as per your BIz Areawise.
    You have choice.
    regards,
    Rup

Maybe you are looking for

  • Can no longer connect wirelessly to hub

    Until today everything has been fine. Now I cannot connect wirelessly to my hub. I get connection time out messages. Sometimes my hub does not even show up in the list of available networks. I can connect to BT Fon though. I've tried re-booting both

  • Downloading a Software Program for a Golf League

    I just purchased and downloaded a Golf League software program from a website and I can't execute the file to install. I am told by their technical support, that I would need to purchase a SOFT WINDOWS PC or Microsoft Virtual PC software before I cou

  • Re: Query before commit

    For my tests, I used the tutorial and didn't played with setIgnoreCache(). And indeed, my newly created objects are part of the query. As per the code snipet, I create a new dog called "Medor". I add some code to print the value of setIgnoreCache too

  • Tomcat 4.2 is not loading a class in jar file

    Hi All, I have a java class B in a jar file which is in tomcat's lib directory. I am trying to instantiate class B from class A which is in the same jar file. But I am unable to create an instance of class B and the control in the program simply adva

  • Automatic user provisioning

    Hi, I have done provisioning manually from OIM to AD sucessfully. Now i wants it to automate. For example if i create a user in OIM in abc org, then it should automatically provision to AD in the abc org. To achive this i did the below steps 1. Creat