Regarding: How to Get the Tax Amount

Hai Friends,
                        I have the Input of  Amount + Tax Group.
                       I  need the amount for every Tax from Tax group.
                       How to get the Tax amount for differnt tax type.
Please help me.
Regards,
K Sakthivel

Hai Sakthi,
As you want the report for different tax types  you can differentiate different tax types by tax rate and tax code  you can  refer the below query and modify  according to your requirement and you can add as many tax codes/tax type based on your needs.
BASED ON TAX CODE AND TAX RATE :
SELECT distinct  M.DocNum AS 'AR Inv. #', M.DocDate as 'Date', M.CardName as 'Customer Name',M.NumAtCard as 'Bill No. & Dt.',M.DiscSum,M.RoundDif,
(Select Sum(LineTotal) FROM INV1 L Where L.DocEntry=M.DocEntry) as 'Base Amt.(Rs.)',M.VATSUM,
t.statype,
(Select Sum(LineTotal) FROM INV1 L Where L.DocEntry=M.DocEntry and statype =1 and taxrate=5  AND TAXCODE='CHVAT5' ) as 'CHENNAI VAT5  SALES',
(SELECT SUM(TaxSum) FROM INV4 where statype=1 and TaxRATe =5 and DocEntry=M.DocEntry  AND STCCODE='CHVAT5' ) as ' CHENNAI VAT5 COLLECTED ',
(Select Sum(LineTotal) FROM INV1 L Where L.DocEntry=M.DocEntry and statype =1 and taxrate=0.00  AND TAXCODE='CHTAXEXE' ) as 'EXEMPTED  SALES',
(SELECT SUM(TaxSum) FROM INV4 where statype=1 and TaxRATe =0.00 and DocEntry=M.DocEntry  AND STCCODE='CHTAXEXE' ) as 'EXEMPTED COLLECTED ',
(Select Sum(LineTotal) FROM INV1 L Where L.DocEntry=M.DocEntry and statype =1 and taxrate=14.50  AND TAXCODE='CHVT14.5' ) as 'CHENNAI VAT14.5  SALES',
(SELECT SUM(TaxSum) FROM INV4 where statype=1 and TaxRATe =14.50 and DocEntry=M.DocEntry  AND STCCODE='CHVT14.5' ) as ' CHENNAI VAT14.5 COLLECTED ',
(Select Sum(LineTotal) FROM INV3 Q Where Q.DocEntry=M.DocEntry) as 'FREIGHT',
M.DocTotal as 'Total (Rs.)'
FROM OINV M LEFT OUTER JOIN INV1 L on L.DocEntry=M.DocEntry
LEFT OUTER JOIN INV4 T on T.DocEntry=L.DocEntry
LEFT OUTER JOIN INV5 J ON M.DocEntry = J.AbsEntry
LEFT OUTER JOIN INV3 Q ON M.DocEntry = Q.DocEntry
INNER JOIN NNM1 T4 ON M.SERIES=T4.SERIES
where (t4.series ='1' ) AND TARGETTYPE !='14'
GROUP BY
M.DocNum,M.DocDate,M.CardName,M.NumAtCard,M.DocEntry,M.DiscSum,M.WTSum,M.DocTotal,M.Series,T4.SeriesName,M.RoundDif,M.VATSUM,T.STATYPE,T.TAXRATE,Q.LINETOTAL,t4.series,
Regards,
P.V

Similar Messages

  • Regarding: How to get the Tax Breakup  Amount using SDK

    Hai Friends,
                   I created one saled order . I have given Tax code (Service) then it show total  amout of tax is 370.80. when i click the link button of Tax Amount field  from sales order then it show  the  Tax Breakup Details in Separate Screen of SAP. That screen Contain following Details.
    From Caption is : Define Tax Amount  Distribution
          Type               Tax Parameter Code         Tax Parameter Name                Rate            Duty         Tax Amount        Base Amount
          Service           Service                            Service Tax                               12                                 360.00
          Cess_ST        Cess_ST                          Education Cess for Sevice          2                                     7.20
          HSCess_ST   HSC_ST                            HSCee for Service                      1                                     1.00
                  My Doupt is :
                           How do i get the Service tax Breakup value from above grid.
                           How to get the Tax Breakup value from that SAP Screen, is it any help in SDK.
    Please Help Me.
    Regards,
    K Sakthivel
    Edited by: ksakthivel on Dec 7, 2011 10:41 AM
    Edited by: ksakthivel on Dec 7, 2011 10:53 AM
    Edited by: ksakthivel on Dec 7, 2011 10:54 AM

    Hai Friends,
                   I created one saled order . I have given Tax code (Service) then it show total  amout of tax is 370.80. when i click the link button of Tax Amount field  from sales order then it show  the  Tax Breakup Details in Separate Screen of SAP. That screen Contain following Details.
    From Caption is : Define Tax Amount  Distribution
          Type               Tax Parameter Code         Tax Parameter Name                Rate            Duty         Tax Amount        Base Amount
          Service           Service                            Service Tax                               12                                 360.00
          Cess_ST        Cess_ST                          Education Cess for Sevice          2                                     7.20
          HSCess_ST   HSC_ST                            HSCee for Service                      1                                     1.00
                  My Doupt is :
                           How do i get the Service tax Breakup value from above grid.
                           How to get the Tax Breakup value from that SAP Screen, is it any help in SDK.
    Please Help Me.
    Regards,
    K Sakthivel
    Edited by: ksakthivel on Dec 7, 2011 10:41 AM
    Edited by: ksakthivel on Dec 7, 2011 10:53 AM
    Edited by: ksakthivel on Dec 7, 2011 10:54 AM

  • How to get the tax break up??

    hello experts
    I want to know how to get the Tax break ups In Sales Order Or purchase order under the conditions tab as it is not stored in Database.
    And The Text Fields In Miro screen where it is stored In Db and  how can i retrieve it ???
    How to retrieve Data using  fuction Module. from Database??
    if possible Plz attach a Code.
    [email protected]
    Plz reply as it is urgent
    Thanx and Regards

    Hi
    All tax related amounts are stored in KONV and KONp tables based on condition Types(KSCHL) field
    so for sales order take the VBAK-KNUMV and pass to KONV table and take the different tax amount sbased on the KSCHL field
    similarly for PO
    Take the EKKO (po Header) KNUMV field and pass it to KONV-KNUMV and get the condition type based amounts (KBETR and KWERT) from table KONV
    Or search for the Condition tables in which the tax related COnditions are maintained for that Tax COde (like A003 or some other A* table) and take the KNUMH field from it and pass it to the table KONP and take the condition type based all tax  amounts from KONP tables.
    Regards
    Anji

  • How to get the Tax break up in a report??

    hello experts
    I want to know how to get the Tax break ups In Sales Order Or purchase order under the conditions tab as it is not stored in Database.
    And The Text Fields In Miro screen where it is stored In Db and how can i retrieve it ???
    How to retrieve Data using fuction Module. from Database??
    if possible Plz attach a Code.
    hello experts
    I want to know how to get the Tax break ups In Sales Order Or purchase order under the conditions tab as it is not stored in Database.
    And The Text Fields In Miro screen where it is stored In Db and how can i retrieve it ???
    How to retrieve Data using fuction Module. from Database??
    if possible Plz attach a Code.
    [email protected]
    Plz reply as it is urgent
    Thanx and Regards
    Plz reply as it is urgent
    Thanx and Regards

    Hi
    Please try table - KONV
    Field Application will be very critical from your report point of view.
    Regards
    Rajesh
    Do reward if useful...

  • How to get the tax spliting functionality using BAPI_ACC_DOCUMENT_POST

    Hi Experts,
    In FB01 tcode when we post the invoice separate tax line item is getting created automatically.
    But we are posting invoice with BAPI_ACC_DOCUMENT_POST here it is not happening.
    Before posting this question here found a thread https://scn.sap.com/docs/DOC-43262.
    Here from the thread info we implemented the BADI and enabled the tax calc flag and implemented the exit.
    Still the separate tax line item is not getting created.
    Can any one please clarify how we can acheive that functionality.
    Thanks in advance.
    kind regards,
    Shiva

    Hello Shivram,
    Your requirement is post FI document with tax line item's automatically with using above BAPI ( FI Posting) ! Suppose you want to post vendor invoice as mentioned below.
    Expenses account.......Dr.....100
    Input tax account.........Dr.......10
      To Vendor account..............Cr....110
    Your upload format should be as mentioned below to post above document in SAP.
    Item No
    Company code
    Pos.date
    Doc.date
    Currency
    Ref
    Header text
    PK
    Account
    Amount
    Tax code
    Assignment
    Text
    00001
    1234
    28.05.2014
    28.05.2014
    USD
    TEST
    TEST
    40
    E1234
    5600
    XA
    TST
    TEST
    00002
    1234
    28.05.2014
    28.05.2014
    USD
    TEST
    TEST
    31
    1001
    6160
    Tax code line item of above '00001 pass in to Calculate tax BAPI which was mentioned above with all required fileds & you can get one retrun table over there > those line items ,you have to pass as additional line item in FI document. ( Through coding). Check with technical consultant.
    Read note : 1873588 - Filling tax information for BAPIs
    626235 - Tax postings with accounting BAPIs
    Above notes only information purpose
    Regards
    Mani Kumar

  • How to get the tax screen in Sales View 1

    Hi,
    I am creating a HAWA material but I do not see the tax date tab in sales view1.
    How can I get it activated.can you please suggest the settings to be done ?/
    Regards,
    Manoj

    Hi Manoj,
    Use the Transaction code OVK1 to define the Tax determination rule for the Country.
    Path: SPRO> Sales and Distribution-> Basic Functions> Taxes> Define Tax determination rule for the Country.
    Country code and Output Tax condition type MWST, there should be a in entry here other wise we can not see Tax classification in Sales view.
    Br,
    Satya.

  • How to get the tax data for the material in the Sales:sales org.1 view 1?

    as the title,many thanks!

    Hi,
    the TAX details are stored in table  TSKM  ---> Material Taxes
    You can find field TAKLV  --->  Tax classification of the material in MARA table .
    You need to link MARA-TAKLV  and TSKM-TAXKM field .
    Best regards,
    raam

  • How to get the initial amount of a posted document?

    Hi guys!
    Upon posting a document, the amount of a G/L Account is automatically calculated (55,000.00) . From <b>vbsegs</b> it will be transfered to <b>bseg</b> table. And the value has been changed, the amount is divided by a tax code(12% VAT) = 49,107.14. How will I get 55,000 back without manually computing it? In what table or is there a standard bapi?
    Points for helpful ideas. Thanks!

    Hi Maui,
    If you go to table <b>S001</b>, you would see the details of the sales figures divided into "Gross and Net". You can also obtain some information from table VBAP.
    I hope the above helps.
    Do not forget to award the points please.
    Regards,
    Jacob

  • How to get the total amount and hide the field

    Hi Experts,
    In Crystal report parameter screen, user has the option to Mutliselect either Donor or Grant or Donor & Grant; based on that in report output user is expected to see list of Donors with Grand Total. Requirement is not to split Amount by Donor rather need to show list of all Donor in header and Grant Total in Footer.
    For example from the above list if user selected Algeria, Austria, Australia and India each country/Donor contribution  is 150 than expected output will be
    Algeria
    Austria
    Australia
    India
    America
    Grand Total = 600
    please let me know if any one get idea about this requirement.
    Best Regard,
    sowjanya.k

    Hi Sowjanya,
    If you're simply trying to place a grand total, use the 'Insert Summary' option.
    Choose the measure field as the 'Field to Summarize' > Choose 'Sum' as the summary operation > Under 'Summary Location' choose 'Grand Total Report Footer'.
    -Abhilash

  • How to get the Tax information details  from the Business partner window.

    Hi Experts,
    I want the Tin No. and the Pan No. to be displayed in the Print layout designer. How to fetch those details?
    Regards,
    Magesh.

    Hi magesh,
    Select Business Partner -- > Click Accounting Tab --> Click Tax tab -->
    Click button adjacent to tax information, you should maintain TIN no & PAN no,
    Then only it will copied to respective  documents.
    Clarify me for which document you are using Print layout designer,I will tell you from
    which table name TIN & PAN no shoudle be retrieved.
    With regards,
    A.Jeyakanthan

  • How to get the total amount of filtered row in a table view

    I have created filter tables for each columns of my tableview. Now I want to add a row with some totals. For this I use an iterator and implement the RENDER_ROW_START. It is easy to add a new lines knowing the number of expected rows (add the line at the end). But the hic comes when there is a filter. How can I know how many rows I will have in the filtered table. There is no parameters that I found. Not even in an event handler.
    Thanks a lot in advance for your help

    i found the solution, thanks

  • Urgent Please regarding how to get the correct name from it,

    I have asome input values say {a=1,b=2,c=3,d=4} in bag A .Now I need to display the name "a" in one column of the table and its value "1" in another column in a jTable so can some one help me out as I have to turn in the stuff tomorrow.
    Thanks in advance.

    I have asome input values say {a=1,b=2,c=3,d=4} in
    bag A .Now I need to display the name "a" in one
    column of the table and its value "1" in another
    column in a jTable so can some one help me out as I
    have to turn in the stuff tomorrow.
    Thanks in advance.Looks like you have spent too much time in the pub! The only way you will get this done is if someone does it for you. Since your specification is so poor (you don't say what form your bag takes) I suspect nobody will even attempt to do it for you.
    Cut your losses. Go back to the pub and accept that you will fail this particular assignment.
    P.S. Start the next assignment in plenty of time.
    P.P.S. Marking something as 'urgent' is normally counter productive.

  • How the tax amounts are linked to PO

    hi
      i have created a tax code T1 with ED, Cess and 4% tax.
    when i create a PO with tax code T1 the tax amounts are calculated correctly and brought in PO against a condition type Ztax.
    Now i checked the procedure and ztax is included in the procedure but without any from condition number.
    so i would like to know how the procedure gets the tax amounts in PO.
    is there any separate settings which says that the taxes are to be got from the taxcode in PO.
    please reply
    Raja

    HI Srinivas,,
    By condition number i mean the value that we give in the pricing procedure just next to condition type saying that the particular condition gets the base value from a condition type.
    ex:  for discount condition we give like 10 which means the discount % base value is from PB00 . in this the line number for PB00 will be 10.
    And we are not giving any records in MEK1 for tax since the value gets calculated in the taxcode for every transcation.
    so im wondering whether we need to maintain any records or does any other settings links the value of the taxcode to the  procedure
    thanks
    Raja

  • Unable to get the tax value in Sales order

    Hi Forum,
    I am preparing a sales order for a customer with a material.
    When I go to the item conditions tab, I see that the correct tax value is being calculated but that tax value is not appearing in the TAX field.
    Net value is appearing correctly in the NET field.
    Please help me which are the areas of concerns i should look for to get the tax amount in the TAX field.
    Many thanks.
    Regards,
    Sheetal

    Dear Sheetal
    Go to V/06, select the tax condition type and execute.  There check whether you have maintained "Condition Class" as D.   If not, maintain D and then retry.
    thanks
    G. Lakshmipathi

  • How to get the list of database Views modifying the DB tools list tables.vi

    Hi,
    I have a problem, I just started using LabVIEW and in particular the LabVIEW connectivity toolkit and I am lookig fgor suggestion regarding how to get the list of database Views modifying the DB tools list tables.vi...
    Thanks in advance,
    Michela

    Hi Michela,
    since the VI you want to modify is part of a Toolkit, I suggest you to copy the whole block diagram in a new VI and then save it in a new location.
    Place the DB List Tables.vi on a block diagram, double click on it and go to the tab "Window -> Show Block Diagram "
    Select "Edit -> Select All" to select the whole block diagram and select "Edit -> Copy"
    Open a new VI and select "Edit -> Paste"
    Save the new VI
    In this way you can modify everything you want without overwriting the Toolkits VIs.
    Hope this can help.
    Regards, 
    Andrea N.
    Systems Engineer ATE & RF - Mediterranean Region
    National Instruments Italy

Maybe you are looking for