Need india based tax reports of VAT,Excise duty, etc seperately

Hi All,
I need India based reports like RG1, Input tax in the given time, output tax in the given time.

Hi Nagaraju...
You can try this one....Basicaly this report give you all the details regarding your purchase and all that...
*Declare @DateFrom Datetime*
*Declare @DateTo Datetime*
*set @DateFrom = '20101001'*
*set @DateTo = '20111005'*
*SELECT T20.Cardcode,T20.CardName, T11.[TaxId11], T11.[AddrType], T20.[Address], T20.[BillToDef] INTO #TIN FROM OCRD T20  INNER JOIN CRD7 T11 ON T20.CardCode = T11.CardCode WHERE T11.Address IS NULL OR T11.Address = '' AND T11.AddrType='S' AND T20.Cardtype='S'*
*Select *,*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .02 THEN CST*
      *ELSE NULL*
*END 'CST2%',*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .03 THEN CST*
      *ELSE NULL*
*END 'CST3%',*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .04 THEN CST*
      *ELSE NULL*
*END 'CST4%',*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .04 THEN VAT*
      *ELSE NULL*
*END 'VAT4%',*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .125 THEN VAT*
      *ELSE NULL*
*END 'VAT12.5%',*
*CASE*
      *WHEN Basic <> 0 AND ROUND(BED / Basic ,2) = .08 THEN BED*
      *ELSE NULL*
*END 'BED8%',*
*CASE*
      *WHEN Basic <> 0 AND ROUND(BED / Basic ,2) = .10 THEN BED*
      *ELSE NULL*
*END 'BED10%',*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .135 THEN VAT*
      *ELSE NULL*
*END 'VAT13.5%'*
*FROM*
*SELECT DISTINCT*
*(Select CompnyName from OADM) Company,*
*T0.DocNum AS 'Invoice / Bill No.',*
*T0.DocDate as ' Invoice / Bill Date',*
*T0.CardName as 'Seller Name',*
*(Convert(varchar,T6.Block) + ', '+Convert(Varchar,T6.Address)+', '+Convert(Varchar,T6.City)+', '+Convert(Varchar,T6.Zipcode)+' '+Convert(Varchar,T6.Country)) 'Seller Address',*
*T7.Name 'State',*
*SUM( T1.LineTotal )  as 'Basic' ,*
*SUM(T1.[VatSum])   as 'TotalTax',*
*SUM( T1.LineTotal +T1.[VatSum]) as 'InclTax',* 
*T0.[TotalExpns] 'Freight Charge',*
*T1.[TaxCode],*
*T0.NumAtCard 'Vendor Ref. No',*
*T5.DocNum as 'P.O/Memo No',*
*T5.DocDate as 'P.O/Memo Date' ,*
*T8.[SeriesName] 'Purpose',*
*T17.Taxid11'Tin No',*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=-90 and PCH4.docentry=T0.Docentry  )BED,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=-60 and PCH4.docentry=T0.Docentry )ECess,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=10 and PCH4.docentry=T0.Docentry )SAD,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=1 and PCH4.docentry=T0.Docentry )VAT,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=4 and PCH4.docentry=T0.Docentry )CST,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=5 and PCH4.docentry=T0.Docentry )ServiceTax,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=6 and PCH4.docentry=T0.Docentry )ECessForService,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=7 and PCH4.docentry=T0.Docentry )HCess,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=8 and PCH4.docentry=T0.Docentry )Surcharge,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=25 and PCH4.docentry=T0.Docentry)Freight,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=15 and PCH4.docentry=T0.Docentry )ADC,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=16 and PCH4.docentry=T0.Docentry )CustomeECess,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=12 and PCH4.docentry=T0.Docentry )CVD,*
*(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=22 and PCH4.docentry=T0.Docentry )CustomHECess*
*FROM  OPCH  T0*
*INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry*
*INNER JOIN PCH12  T3 ON T3.DocEntry = T0.DocEntry*
*LEFT OUTER JOIN PDN1 T4 ON T4.TrgetEntry = T0.DocEntry*
*LEFT OUTER JOIN OPOR T5 ON T5.DocEntry = T4.BaseEntry*
*INNER JOIN OCRD T6 ON T0.Cardcode= T6.Cardcode*
*Left Outer JOIN OCST T7 ON T7.Code =T3.State AND T7.Country=T6.Country*
*INNER JOIN NNM1 T8 ON T8.Series = T0.Series*
*LEFT OUTER JOIN #TIN T17 ON T0.CardCode=T17.Cardcode*
*INNER JOIN PCH4 T13 ON T0.DocEntry=T13.DocEntry*
*WHERE*
*     T0.DocDate >= @DateFrom  AND  T0.DocDate <= @DateTo*
*     AND T13.StaType=1     *
*GROUP BY*
*T0.DocEntry,*
*T0.DocNum,*
*T0.DocDate,*
*T0.CardName,*
*(Convert(varchar,T6.Block) + ', '+Convert(Varchar,T6.Address)+', '+Convert(Varchar,T6.City)+', '+Convert(Varchar,T6.Zipcode)+' '+Convert(Varchar,T6.Country)),*
*T7.Name ,*
*T1.[TaxCode],*
*T0.NumAtCard,*
*T5.DocNum,*
*T5.DocDate,*
*T8.[SeriesName],*
*T17.Taxid11,*
*T0.[TotalExpns]*
*)#Purchase*
*UNION ALL*
*Select *,*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .02 THEN CST*
      *ELSE NULL*
*END 'CST2%',*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .03 THEN CST*
      *ELSE NULL*
*END 'CST3%',*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .04 THEN CST*
      *ELSE NULL*
*END 'CST4%',*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .04 THEN VAT*
      *ELSE NULL*
*END 'VAT4%',*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .125 THEN VAT*
      *ELSE NULL*
*END 'VAT12.5%',*
*CASE*
      *WHEN Basic <> 0 AND ROUND(BED / Basic ,2) = .08 THEN BED*
      *ELSE NULL*
*END 'BED8%',*
*CASE*
      *WHEN Basic <> 0 AND ROUND(BED / Basic ,2) = .10 THEN BED*
      *ELSE NULL*
*END 'BED10%',*
*CASE*
      *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .135 THEN VAT*
      *ELSE NULL*
*END 'VAT13.5%'*
*FROM*
*SELECT DISTINCT*
*(Select CompnyName from OADM) Company,*
*T0.DocNum AS 'Invoice / Bill No.',*
*T0.DocDate as ' Invoice / Bill Date',*
*T0.CardName as 'Seller Name',*
*(Convert(varchar,T6.Block) + ', '+Convert(Varchar,T6.Address)+', '+Convert(Varchar,T6.City)+', '+Convert(Varchar,T6.Zipcode)+' '+Convert(Varchar,T6.Country)) 'Seller Address',*
*T7.Name 'State',*
*SUM( T1.LineTotal ) * -1 as 'Basic' ,*
*SUM(T1.[VatSum]) * -1  as 'TotalTax',*
*SUM( T1.LineTotal +T1.[VatSum]) * -1 as 'InclTax',* 
*T0.[TotalExpns] * -1 'Freight Charge',*
*T1.[TaxCode],*
*T0.NumAtCard 'Vendor Ref. No',*
*T1.Baseref as 'P.O/Memo No',*
*T0.DocDate as 'P.O/Memo Date' ,*
*T8.[SeriesName] 'Purpose',*
*T17.Taxid11'Tin No',*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=-90 and RPC4.docentry=T0.Docentry  )* -1 BED,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=-60 and RPC4.docentry=T0.Docentry )* -1 ECess,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=10 and RPC4.docentry=T0.Docentry ) * -1 SAD,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=1 and RPC4.docentry=T0.Docentry ) * -1 VAT,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=4 and RPC4.docentry=T0.Docentry ) * -1 CST,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=5 and RPC4.docentry=T0.Docentry ) * -1 ServiceTax,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=6 and RPC4.docentry=T0.Docentry ) * -1 ECessForService,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=7 and RPC4.docentry=T0.Docentry ) * -1 HCess,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=8 and RPC4.docentry=T0.Docentry ) * -1 Surcharge,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=25 and RPC4.docentry=T0.Docentry) * -1 Freight,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=15 and RPC4.docentry=T0.Docentry ) * -1 ADC,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=16 and RPC4.docentry=T0.Docentry ) * -1 CustomeECess,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=12 and RPC4.docentry=T0.Docentry )* -1 CVD,*
*(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=22 and RPC4.docentry=T0.Docentry )* -1 CustomHECess*
*FROM  ORPC  T0*
*INNER JOIN RPC1 T1 ON T0.DocEntry = T1.DocEntry*
*INNER JOIN RPC12  T3 ON T3.DocEntry = T0.DocEntry*
*INNER JOIN OCRD T6 ON T0.Cardcode= T6.Cardcode*
*Left Outer JOIN OCST T7 ON T7.Code =T3.State AND T7.Country=T6.Country*
*INNER JOIN NNM1 T8 ON T8.Series = T0.Series*
*LEFT OUTER JOIN #TIN T17 ON T0.CardCode=T17.Cardcode*
*INNER JOIN RPC4 T13 ON T0.DocEntry=T13.DocEntry*
*WHERE*
*     T0.DocDate >= @DateFrom  AND  T0.DocDate <= @DateTo*
*     AND T13.StaType=1     *
*GROUP BY*
*T0.DocEntry,*
*T0.DocNum,*
*T0.DocDate,*
*T0.CardName,*
*(Convert(varchar,T6.Block) + ', '+Convert(Varchar,T6.Address)+', '+Convert(Varchar,T6.City)+', '+Convert(Varchar,T6.Zipcode)+' '+Convert(Varchar,T6.Country)),*
*T7.Name ,*
*T1.[TaxCode],*
*T0.NumAtCard,*
*T1.baseref,*
*T8.[SeriesName],*
*T17.Taxid11,*
*T0.[TotalExpns]*
*)#MEMO*
*DROP TABLE #TIN*
you can thet the table name for A/R Sales and get the salres report too for the same.
Edited by: itskumaramit on Mar 19, 2011 3:43 AM

Similar Messages

  • Sales order -Tax Exemption License and Excise duty Tabs In  IDEAS

    Dear Team,
    Kindly anyone explian me wat are the importance of the Tax Exemption License and Excise duty Tabs In  sales order - IDEAS, ECC 6.0.
    Please explain me how to maintain currently it is in greyed mode how to maintain and what is the importance of the said tabs.
    Regards
    abhi

    No answers

  • Activate tax reporting date (VAT due date) Spain

    Dear all,
    My Spanish customer should start using electronic VAT book, Modelo 340. If I understood correct VAT due date (activate tax reporting date) is a prerequisite for this? If I activate this functionality in their system, what affect will this have except a new field?
    Is it possible to do this during a year or should it be done in the beginning of a new year, from 1st of January? Does it matter?
    What affect will it have on already existing documents?
    If they start to use electronic VAT book, do they not need to use the ordinary Tax report, transaction S_ALR_87100833, then and use only this instead?
    Please help me to understand how to tell the customer of how this will affect them.
    BR L

    Hi Paul,
    I have already red these notes but don´t think that my questions are answered by these. Escpecially the question if ordinary tax report, program RFUMSV00 (transaction S_ALR_87100833) are replaced by Modelo 340, is not answered.
    Could you please help?
    BR L

  • I need  Web based Dynamic Reporting tools

    Hi,
    I need a Web based Dynamic Reporting tool.
    I have to user oracle products and this reporting tools must support OLAP and Data Warehousing.
    thanks,

    Hi Shima,
    Let me quote from Oracle Reports website:
    "Oracle Reports is Oracle's award-winning, high-fidelity enterprise reporting tool. It enables businesses to give immediate access to information to all levels within and outside of the organization in an unrivaled scalable and secure environment. Oracle Reports consists of Oracle Reports Developer (a component of the Oracle Developer Suite) and OracleAS Reports Services (a component of the Oracle Application Server)."
    Since you need a web-based reporting tool, this is what is available with Oracle Reports:- you cannot design reports on the web, but you can use Oracle Reports Developer to design high quality reports that are suitable for viewing on the web.
    Oracle Reports support OLAP as a data source.
    From your requirements, it seems that it might be worthwhile for you to check out Oracle Discoverer which is again a powerful reporting and analysis tool. Oracle Discoverer is more suitable for ad-hoc reporting and web-based analysis of data by the end-users:
    http://www.oracle.com/technology/products/discoverer/index.html
    Navneet.

  • Tax codes for capturing excise duty

    dear all,
    how to create taxcode for capturing excise duties and where to link them for capture of excise invoice.
    thanx in advance.
    velu

    Hi Velu
    use T-code FTXP to create ur tax code. If u r using TAXINJu will maintain %  while creating tax code, or if u r using TAXINN  u will maintain zero tax.and save it.
    this zero tax code you will use when u maintain tax records- tcode:FV11
    Assign the tax code for the country.
    Assign ur TAXINN  to the country.
    Create a record for the matl, vendor and maintain the price  for  ur condition type.
    Create a PO ,system automatically picks the price from the record.
    save the po
    capture the tax  using T-code: J1IEX_C  and save.
    after that do MIGO or while receiving the matl itself you can capture, based on customization.
    Rewards if useful
    Regards
    Viru

  • Service tax immediate utilization for excise duty

    Hi everybody,
    I want to utilize the service tax for Cenvat with the scenario of immediate utilization. pls help me in how to configure this.
    Thanks
    Prashant

    hello,
    No special Config is requries. While doing utilisation through J2IUN select radio button Pay cenvat from service tax and also specify the service tax accounts needs to be credit.
    Regards,
    Bhadresh

  • Tax Reporting Date(VATDATE)

    Hi All,
              We activated the Tax Reporting Date (VAT DATE)  in global parameters for a Company Code so that this field will be populated in all Financial Documents.
                  Sap had given BADI to populate this field based on Document/Posting Date but we had our own substitution logic, but we want to make this field Display only so that user will not have an impression of Input field. Now in screens(FB60,FB01) it is input field.
                      Is there anyway we could do this.

    Hello Sarat,
    May I ask how and when you substituted the logic to populate the VAT DATE?
    Thank you!

  • Tax Reporting USA

    Hello Experts,
    I am looking for some standard transactions for tax reporting (jurisdiction code level). So far I found standard report RFKKTX00 which has its own limitations. Is there anything that can be used for US based tax reporting?
    Please let me know. Thanks.
    Kind Regards,
    Nikhil.

    Hello Nikhil,
    please read the informations in sap note 197201.
    Additional informations:
    for Releases 4.64 to 4.72 use following Function Modules:
    -  FKK_EVENT_0010_REPDATA_GEN_464
    -  FKK_EVENT_0020_REPDATA_GEN_464
    -  FKK_EVENT_0030_REPDATA_GENERIC
    As of Release 600, use the following modules:
    -  FKK_EVENT_0010_REPDATA_GENTX
    -  FKK_EVENT_0020_REPDATA_GENTX
    -  FKK_EVENT_0030_REPDATA_GENERIC
    The customizing in FI-CA you can find here:
    Financial Accounting --> Contract Accounts Receivable and Payable --> Basic Functions --> Tax Reports
    I hope I could help you.
    Christiane

  • US TAX Reporter

    Hello Gurus,
    I have created custom (ZHR_W2) form for W2 using se71 and want to use this form in tax reporter PU19. How do I customize to tax reporter to use ZHR_W2 form?
    Thanks in Advance and promise to give max points for helpful answers/tips.

    Hi,
    I hope ur probleum is slove, can u plz help me out i also need to prepare TAX Report for US. plz provied me with ur personnel e-maild address. my e-mail is [email protected]
    Pradeep

  • Excise Duty Calculation

    Hi Folks this is my 1st q in this forum.
    I want to extract the excise duty,cess and hes in mu AR invoice where the unit price is inclusive of these components.
    Eg:
    I purchase 10 nos for100 so the bill amt is
    100163.2+1.6=120.8
    In my Ar invoice I bill this for
    120 + vat 4% (For 10 nos)
    The excise duty ,cess,hes should be same as above
    or proportional if I sell less qty
    can anybody explain please.

    Hi,
    At present BED is 14%, cess 2% and HES 1% am i right.
    In OSTT, Nota fiscal ID of BED, cess and HES may be (or will be) -90.
    Using this you can calculate Excise Duty amount seperately from overall tax amount.
    Nota fiscal id of VAT is may be (will be) 7. Using this you can calcualte VAT amount from Total tax amount.
    In OSTT, Numerator column have some value (for ex, 5 for BED, 6 for Cess, 7 for HES) using these numbers you can calculate BED, Cess and HES values seperately and you can print it in report.
    How to calculate?
    1.In PLD, in Repetitive area, create an text field and enter value of Numerator (if you calculate tax amount seperately) or Nota fiscal ID if you calculate Excise duty(combination of BED, Cess and HES)
    2. Create Database field and select OSTT - Sales tax authorities Type and select Nota fiscal id or Numerator.
    3. Create formula field and check the two fields.(ie., Field_xx = Field_xy) (Here, Field_xx is text field and Field_xy is Database field)
    4. Create Database field and select A/R Invoice - Tax documents per row (for A/R Invoice) or Purchase Order - tax documents per row (for purchase order)
    5. Create formula field and multiply step 3 and step 4.
    6. In Repetitive area footer, create one formula field seperately for each and every calculation.
    Now you can print those values whereever you want in PLD.
    I hope this could help you to solve the problem.
    Regards
    Raja.S

  • Excise Duty (IS-OIL) - Invoice verification and accounting ED

    Hello experts,
    I have a case in my importation process with excise duty (IS-OIL). I have the following scenario: Purchasing Ed free material and receive it in ED paid Storage Location. So I use Handling type 00 and Valuation type TAX in the PO excise duty item data. I woul like to kwon Which is the standard process for the invoice verification of the excise duty cost when the handling type is 00 and the valuation type TAX?. And How can I do the invoice verification (MIRO) if there is not a specific line in the purchase order history for the excise duty cost?
    I have another case in the accounting of movement type 301 (transfer posting between 2 plants). The accounting posting is the following:
    Examle:
    Account                       Transaction
    1. STOCK FUEL          S                    BSX (Stock account)
    2. STOCK FUEL            H             BSX (Stock account)
    3. STOCK EXCISE DUTY     S             SVO (ED Account)
    4. EXCISE DUTY FUEL           H             ZZP (ED Account)     
    The problem is that the 4th account must be STOCK EXCISE DUTY ACCOUNT from SVO transaction.
    I would be grateful if someone could help me with these cases.
    Thank in advance.
    Pablo

    Dear Prashant,
    Thanks for reply, but i checked my excise cond types, in all conditions, cond cat is blank & cond class 'A' is maintained i.e. Discount & Surcharge.
    My problem is that, my excise value is not got posted in net receivable value in accounts. This problem arise, when we make sales order, Net Value field doesn't pick excise there & while invoicing, it post only the base value & rounding off adjustments at header level. I don't know, from where this Net Value field in sales order is picking the value but my problem will solve if my grand total value(base valueexciseedu cess+higher edu cess) will pass to Net Value field while making sales order. Kindly help.

  • EXCISE DUTY ROUNDING IN PROCUREMENT

    Dear All.,
    i want to round off the excise duty while posting excise invoice.
    i had done tick in rounding duty on procurement in company code settinngs
    As well as i have assigned calculation type '17' to excise conditions in tax procedure.
    Though excise duty is not coming with rounding off.
    Is there any another setting for this or i should create a routine for this?
    Thanx in advance

    Hi,
    In T code : OBQ3 against ur condition in alternative calculation type (Calty ) column put 17.
    At the same time OB90 against ur company code put 100.
    Biswajit

  • Re : ADDL EXCISE DUTY

    HI GURUS,
    CAN ANY1 TELL ME WHAT IS THE BASIS FOR CALCULATING ADDITIONAL EXCISE DUTIES IN IMPORT SCENARIOS?
    IS IT THAT ALL DUTIES ARE NEEDED TO BE TAKEN TO calculate addl excise duty?
    Please explain with example

    Hi,
    Additional duty in case of Import is applicable on Total Value.
    Ex
    Basic + Landing charge (Insurance + Shipment+ Packaging )+ Basic custom 10% + Edu cess on Custom 2% + Higher Edu cess on Custom 1% + CVD Equal to BED 10% + Edu cess on CVD 2% + Higher Edu cess 1 on CVD
    On all the above there will be Additional duty 4% .
    Rg

  • Excise duty determination

    Hi All,
    I would like to know, how the excise duty is determined.  We generally maintain the Excise duty rate at the J1ID and how the excise rate is taken in the Condition type JMOD
    Please explain briefly and if you have documentation related to tax determination, excise duty etc.,
    Thank you all,
    Regards,
    Mani

    Dear SD Experts,
    Can anyone reply this question?
    Please help
    Regards,
    Mani

  • Receivable Aging Report for India based on Invoice Date

    We have a reporting/legal need for our India location to report the aging of their receivables based on the invoice date of the documents rather than the net due date.  Is there an existing report available that already does this?
    Currently when you use FBL5N and related aging reports RFDOPO10 etc. it calculates the arrears from the net due date.  They need to calculate the arrears from the document date.

    The report S_ALR_87012168 still does not allow me to choose that I want to calculate the arrears from the document date rather than the net due date:
    I guess what they really need to know is how old the receivables are based on the date they were created.
    As in the example below, current aging reports use the Net Due to calculate a days in arrears of 6 days (based on current date of 2008/11/05).
    Ty Doc. Date  Pstng Date Bline Date Net due dt Arrea
    RV 2008.09.30 2008.09.30 2008.09.30 2008.10.30     6
    What they need is the number of days in arrears based on the document date (2008.09.30) which would increase the numer of days the receivable has been open to 36.

Maybe you are looking for