Field - Tax Rate against Invoice Number

Hi,
Please tell me the Table Name for TAX RATE against the INVOICE NUMBER...
Thanks....

Hello Prince,
I will like to carry forward with Eric's post:
with VBRP-MWSKZ you can use FM GET_TAX_PERCENTAGE (you'll need the country as well)
Lets assume you have
1. BUKRS - Comp. Code
2. MWSKZ - Tax Code from the source table can be VBRP or RSEG
Plz try the code below, hope this will help:
    l_mwskz = p_mwskz. "--> Tax code in your case
    SELECT SINGLE land1
                  INTO l_land1
                  FROM t001
                  WHERE bukrs = p_bukrs.
  ENDIF.
* Pricing procedure
  SELECT SINGLE kalsm
                INTO l_kalsm
                FROM t005
                WHERE land1 = l_land1.
  IF sy-subrc = 0.
*   Get tax jurisdiction code
    SELECT  txjcd INTO l_txjcd
            FROM ttxj  UP TO 1 ROWS
            WHERE kalsm = l_kalsm.
    ENDSELECT.
  ENDIF.
* Calculating tax amount
  CALL FUNCTION 'GET_TAX_PERCENTAGE'
    EXPORTING
      aland   = l_land1
      datab   = p_budat  "--> You can use VBRP-PRSDT in your case
      mwskz   = l_mwskz
      txjcd   = l_txjcd
    TABLES
      t_ftaxp = it_ftaxp.
  READ TABLE it_ftaxp INTO wa_ftaxp INDEX 1.
  IF sy-subrc = 0 .
    v_tax_rate = wa_ftaxp-kbetr.
  ENDIF.
Relation between VBRK & BKPF:
1. BKPF-XBLNR = VBRK-VBELN
2. BKPF-AWTYP = VBRK & BKPF-AWKEY = VBRK-VBELN
From this you can go to BSEG, then its quite simple:
IF BSEG-BUZID = 'T'.
  v_tax_rate = ( BSEG-DMBTR / BSEG-HWBAS ) * 100
ENDIF.
Else you can use BSEG-MWSKZ and use the previous code. Upto you to decide )
BTW, you said in your firm you do not have Function ppl, is it true ??
BR,
Suhas
Edited by: Suhas Saha on Jan 14, 2009 11:20 AM

Similar Messages

  • How to maintain Form C against Invoice Number

    Hi Gurus,
    We want to maintain Form C against Invoice Number..
    From where i can maintain the Form C against Invoice number...is there any way of it...
    Plz help...

    SOLVED MYSELF

  • VAT tax rate question --invoices

    Hello, I am working to configure NL VAT tax for the Netherlands. I have applied the EBTax Configuration Library and completed additional required setups. For Payables, the standard tax rate is being applied to each invoice upon creation. Per business requirements, the tax rate is situational or should be optional, (sometimes Reduced rate, or Exempt rate applies or both). Looking to eliminate default tax rate, having all available for a single transaction. I need a more manual entry approach, providing the user the ability to apply taxes as they are applicable. If anyone is working toward similiar goal input would be appreciated.
    Thanks. Amanda.

    I have figured it out that there were was extra record with Active_flag = 'N'
    Cheers

  • Regarding different tax rates in invoice

    hi
    i have a scenario.for aparticular company manchanda co the invoice date is *today's date*.i have a
    particular invoice  for item 1(100pieces),item2 (20pieces),item3(150)pieces with reference to a purchase
    order.the price of item1(100pieces) is 1000eur,price of item2(20pieces)1000eur,price of item3(150pieces)
    3000.there is 10% VAT on (item1,3) i.e 400eur.there is 5% VAT on item2 i.e. 50 eur.the total invoice amount is 5450 euros includind tax
    in the tax tab of the header data in tax code iwill have to enter 10% of input tax for tax amount 400
    and 5% input tax on the tax amount 5% input tax. while creating new taxcode for the above said 2
    requirement in  FTXP,they are not showing as default tax code .only tax code VN,TP is showing as default.how to remove the shortcoming.
    thanks

    If it is Input Tax then in Put Condition type put 5%.
    You can refer other Tax code.
    It is difficult to say without knowing the Purpose.
    Regards
    Biswajit

  • Accounts Payable - Tracking of Advances & Partial payment against Invoice

    I want to co-relate the advance payment and various partial payments made to one vendor with the specific Invoice. Can you please suggest the wayout?
    Suppose I have made down payment to Mr. A. Then I have booked the invoice against which various part payments have been made. Now I want to know the pending due amount against the particular invoice. How can I track the same?

    Hi Kapil,
    My suggestion would be -
    Use the reference field to update the Invoice number in all the documents - Down payment, Invoice posting and the partial payments.
    The reference field is editable even after the document is posted. So, you can update the down payment document also once you recieve the invoice.
    Now, from FBL1N, you can sort/filter by the reference field and find out the balance to be paid for a particular invoice.
    Regards,
    Mike

  • FTXP -tax rate -table

    what is the table for tax master? i want to tax rate to display in one of my reports?
    I have checked T007V,T007A.BUT WHAT I NEED IS TAX RATE against the tax code.

    Hi,
    In Table T007V, there is field Request/Task.  Could you please explain whow the request will be created and transported.
    How it is coming into this table?  Recently I was changed the tax rates through FTXP, directly in all clients, because its not generating any request.
    How the requested generated????
    Thanks
    Partha

  • Tax Combinatiom. Tax rate, tax Amount in the PLD of sales Invoice

    Hello guys,
    This i seached in previous forum and got partial result
    Plz help me ragrding this
    for my query plz scroll down
    To accomplish this, you will have to create a new repetitive area (Repetitive Area1)and create the following 7 hidden fields in this new Repetitive Area1:
    Field_1 > Type = Text > Value = 1 {VAT. For BED, value = -90} (you can find this value from OSTT table, numerator field)
    Field_2 > Type = DB > Table = Sales Tax Authorities; Column = Numerator
    Field_3 > Type = Formula > Value = Field_1==Field_2 (from step 1 & 2)
    Field_4 > Type = DB > Table = AR Invoice Tax Amt Per Doc; Column = Tax Rate {this is required to display the tax rate in the document footer. For Eg. 4% for VAT@4%. If you just want to display the tax amount, do not create this field} - Link this to Field_3
    Field_5 > Type = DB > Table = AR Invoice Tax Amt Per Doc; Column = Tax Amount - Link this to Field_3
    Field_6 > Type = Formula > Value = Field_3*Field_4
    Field_7 > Type = Formula > Value = Field_3*Field_5
    Now in Repetitive Area Footer1 (i.e. the footer of the new repetitive area), create the following fields (visible):
    To display the Tax Rate: Field_8 > Type = Formula > Value = ColSum(Field_6)
    To display the Tax Amount: Field_9 > Type = Formula > Value = ColSum(Field_7)
    NOTE: You cannot display the tax name with this method. So to do that, you will have to create a Text field with the tax name in the repetitive area footer1, link it to Field_8 and then next to it, create Field_8 & Field_9 to display the relevant values
    I did exaclty the same way and i am getting result too
    But it is working for only 1 item , for 2nd the result is getting added up 4 times
    ex : for item1 10000 base value
    excise at 8% = 800
    when i select 2nd item total value becomes suppose 20,000
    excise at 8% becomes =3200
    which sholud be 1600
    Plz suggest
    i am in serious trouble

    Hi Manish,
    you have to mke the formula using the ostt and inv4 for invoice pld. table .
    Every taxcode has a unique nota fiscal id .Use that in ur PLD .
    Ex:
    First insert a repetitive area.
    Suppose Hcess id is 70 in ostt.
    1. Make a text field in repetive area and give 70 to it .
    2. make a db field and fetch nota id from ostt.
    3. make a formula field and Compare text field and db field .
    4. link the text field and db field with formula field .
    5. make a db field and fetch taxamount from inv4.
    6. link this filed also to formula field
    7 . make a new formula field and multiple the amount field and previous formula field .
    8. make a new formula field in repetitive area footer and do copulmn sum of last formula field which have the result of multiplication. This is what we have done. Hope it helps.
    Thanks,
    Joseph

  • Extended Withholding Tax Rate change at invoice Level

    Hello Every One
    We are implementing Extended Witholding TAx in US.
    How can i achieve Below
    Requirement 1:
    At the time of invoice the business want to override the Tax rate, but i am not sure how it will happen since tax rate % is defined in tax codes and tax codes are assigned in the vendor master?  The reason for this is that if one vendor has existence in two different countries  then our company will with held tax at different rate.
    My Solution: I will define one tax code with 100% rate and then if the that vendor has to be deducted at 30% rate. Then in the vendor master in the exemption % field they can put 70%, so at the time of invoice it will be calculated 30%, but the draw back of this is that it has to be maintained by the master data team  and the invoice clerk cannot do it right away if the requirement gets changed. (if someone has other than this please let me know)
    Requirement 2:
    How we can with hold tax at line item level, is it possible?
    for example if we receive an invoice from a vendor for 2000$. Out of 2000$ $1200 is belong to service which is taxable and 800$ is belong Material which is not taxable.
    Requirement 3.
    What will be the configuration setups of with holding tax account in FS03
    Best Regards

    Refer the sdn thread posted on similar issue
    Please search in sdn before posting .
    [SDN URL|Set exchange rate indicator in billing;

  • Invoice number ,ivoice date against Billing,delivery ,sales order,purchase

    Hai,
    Can you please help me for getting the fields for achieving invoice number and invoice date against
    1.PO
    2.SO
    3.Billing
    4.Delivery
    5.Goods receipt.
    Please tell me the table and the field name so that it would be really helpful for me.
    It urgenttttt.....
    Neeraj

    PO- ekko, ekpo
    SO- vbak,vbap
    Billing-vbrk,vbrp
    Delivery-likp,lips
    Goods Receipt-
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • Tax Rate Determination in Credit Memos With Ref to Invoices

    The requirement in US is that when the customer has changed his address to a different region, from that where the services was supplied (The region in which the customer (ship-to party) was residing when the invoice was raised) and if a credit memo is raised with reference to this invoice, then the taxes applicable on the credit memo for this customer should be the rates applicable for the state where the original invoice was raised. However currently in SAP the new customer address is updated in the billing document (invoice that was raised for the region where the customer had his place of business previously) and hence the original region code in the invoice will not be available and will be overridden with new region code.
    Consider the following example:
    1 - Invoice raised on 01-Jan-2010 to a customer whose region is Florida and tax rate is "X %"
    2 - On 01-Feb-2010 the customer in Florida changes his place of business to Texas region.
    3 - On 01-March-2010 a credit memo is raised with reference to the invoice dated 01-Jan-2010 u2013 On this credit memo the tax rate applicable will be of the region of Texas u2013 Example u201CY%u201D
    The requirement is that in the credit memo the system should capture the original region code or there should be a provision to change the region code of the customer (ship-to party) at line item level u2013 so that the tax determined is applicable to the region where the customeru2019s place of business originally existed.
    From our side we did check the SAP screen for Creation of contract/Order (VA41/VA01) u2013 However we were unable to find the customer region field in these screens at line item level.
    We request you to please look into this at the earliest and let us know what the options that exist for this are.
    Please also let us know should you require any clarifications with reference to the above requirement.
    Regards
    Siddharth Sridhar

    Hi Siddharth,
    As for the region code that you mentioned, in fact yes, you can change during transaction creation, and Region is coming from the customer master record that you maintained.
    You can find it at the Item level --> Partners, but you will not be able to change the Region there.
    To change it, double click on the Sold-to Party at Header level, then select Sold-to Party --> Details.. Here you can change the Region accordingly.  It will reflect accordingly at the Item level --> Partners.
    Note: This change will not change the central master data maintained for this customer. It will only affect this document.
    Hope this helps.
    Thanks.

  • Chinese "Government Tax Invoice" number

    Hi Experts,
    How and where to enter/store the official Chinese "Government Tax Invoice" number, if both document header fields (BKPF-BELNR & BKPF-XBLNR) are filled already?
    AND which report has to be run out of  SAP for printing official Chinese voucher (Document overview, document list or something similar) to fulfil tax authority requirement.
    Please provide me the details. Please help me if there any links for Chinese Localizatoin
    Thanks

    Hi
    Ideally if it is configured for SD then VBRK-XBLNR and BKPF-XBLNR would be filled with the tax invoice number which is a 16 digit number. For your F1 invoice type check the accounting document type generated. It would mostly be RV.
    You need to set up this accounting document type to consume the tax invoice number range. I guess FB70 transaction would be associated with accounting document type DR which is configured to use up the tax invoice number range.
    So follow these steps:
    1. First check the accounting document type created for the invoice of type F1.
    2. Go to SPROCross Application Component-General Application FunctionsCross-Application Document NumberingIndonesia--Document Numbering
    3. Check the document class created for country ID.
    4. If document class is created as I guess it has been because you can already generate the number through FB70 transactions then check if accounting document type created from F1 invoice is assigned to the document class.
    I guess it is this setting which you are missing. As a result of this tax invoice number is not getting generated for SD documents.
    Thanks
    Indranil

  • Outbound delivery date in June and customer invoice post in July,tax rate?

    Hi Experts
    tax rate (June)=22%
    tax rate (july)=24%
    issue is Outbound delivery date in June and customer invoice post in July,so sytem taking tax rate =24% instead of 22%.Because outbound delivery is happened in June.
    Please let me know that,
    1)how system picking tax rate on base like billing date or service render date or ...?
    2)how to take tax rate (june)=22% in July posting.
    regards
    sachin

    Tax Rate is picked based on the pricing date.
    You need to check with your SD collegue to configure the pricing date to be equal to outbound delivery date to pick the outbound delivery date based tax rates.
    Regards,
    Gaurav

  • Excise invoice number getting reflected in the reference field in VF01

    Hello,
    I require excise invoice number to get get reflected in the reference field of billing document number . (i.e accounting document generated from VF01)
    Thanks,

    Dear Muscan,,
    As per STANDARD SAP PROCESS this functionality is not Possible. The reason is very clear, Excise Invoice is always created after creating billing/invoice document. Without creating excise invoice you cannot have excise invoice number reflected in the reference field of billing document.
    Hope this clarifies your doubt?
    Regards
    MBS

  • Make "invoice number" and "description" fields both mandatory on payables

    I want my 'invoice number" and "description" fields both manadatory on quick invoice to force users to fill in the fields.

    995170 wrote:
    I want my 'invoice number" and "description" fields both manadatory on quick invoice to force users to fill in the fields.Please see my reply to your other thread -- https://forums.oracle.com/forums/thread.jspa?threadID=2514322
    Thanks,
    Hussein

  • AP invoice with different tax rate and cost center?

    Dear all,
    We are just upgrade from 11i to R12.1.3. Before in 11i, we can change distribution account in AP invoice distribution line if the type is "Tax". However, after updated to R12, we define tax code (e.g. P1 for particular account combination), so once user selects tax code "P1" and invoice will automatic creates tax line for such invoice but the user cannot change distribution account anymore. Because in 11i, user will change the distribution account (cost center segment) but now in R12 user cannot change it.
    The only work around is defining different tax code for different cost center.
    For example: P1-0001 => 01.0000.999999.00001
    P2-0001 => 01.0000.999999.00002
    We have hundred of tax code and cost center combination.
    Any other work around for this? or anyone encounter the same problem?
    Please advice.
    Thanks.

    Let me explain more in details:
    1) The cost centre will will more. 2 cost centres just a simple example.
    For now, we have 5 cost centres for each of the tax rate. For the work around now, I need to define 5 tax codes for the same tax rate for different distribution combinations:
    Quote
    Tax Code ==>Tax Rate ==> AP Distribution Combination
    A1-3500 ==> 10% ==>001.9999999.3500.00
    A1-3600 ==> 10%==> 001.9999999.3600.00
    A1-3700 ==> 10%==> 001.9999999.3700.00
    A1-3800 ==> 10%==> 001.9999999.3800.00
    A1-3900 ==> 10%==> 001.9999999.3900.00
    2) The driving factor would be 100% percent.
    Please kindly advice.
    Many thanks.
    driving factor for the cost centre

Maybe you are looking for

  • Boot Camp, Vista Ultimate x64 SP1, 2009 Mac Pro Quad 2.93, ATI 4870 HD

    Hello All, I’ve run into a problem installing Boot Camp with Vista Ultimate x64 SP1 on my early 2009 Mac Pro Quad 2.93 with Apple’s ATI Radeon 4870 HD (the one with one DVI and one mini-display). I followed the instructions from the Boot Camp Install

  • Can't connect to LAN when booting MBP from external drive?

    In an effort to always work in my computer environment, I backup my Mac Pro main drive to an external firewire drive, plug in to my new Macbook Pro 2.9 and option start off this drive. Result is I'm working off the last backup of my main Mac Pro driv

  • Exporting from PDF to Word 2010 is not working in Acrobat 8

    Exporting from PDF to Word 2010 is not working in Acrobat 8.  I'm getting the following errors/messages.  Any suggestions? The instruction at "0x29034c05" referenced memory at "0x0000030". The memory could not be "written". Click OK to terminate the

  • To increase the VARCHAR datatype column length

    Hi, I need to increase the VARCHAR datatype column length from VARCHAR2(16) TO VARCHAR2(100) on Production environment. Kindly let us know the impact on Production and also required for downtime to proceed the activity. Please find the details as bel

  • Photos Received as win.dat File

    I have tried to e-mail photos to myself and in many cases they arrive as win.dat files and not jpeg files.  Other times they arrive OK.  Does anyone know why this is happening?  I'm assuming it is related to file size, but I'm not sure.  Is there a f