Changing the base price for service tax calculation

Hi
i have and PO order with basic price say for 100 /- on which it is calcuating service tax 12% , e-cess 2% hcess--1 .This is coming thru tax code from the tax procedure and these taxes service/ecess /Hecess is to be posted to sepearte G/L account.This is working fine.
Now my requirement is that i want to calculate service tax on some % of the base price say 70 % of the base price. The % will always be changing .i want to calculate service tax on the 70/- not on 100.
i want that system should post this 100 /- to cost of service but the tax should be on whatever percentage i make .Here this is 12.36 % on 70 not on 100 at the time of invoice posting.
please guide me
regards

Hi,
For this you have to maintain the all your charges in your pricing procedure along with each charge you have to maintain 3 condition types for service and chesses.
Ex:
step counter cond.type des.                   from                 to
1 1 P000 Gross Price        
1 2 P001 Gross Price        
25 0 JM00 Water front royalty                 1    
26 0 ser1 service                                  25    
27 0 edu1 educationcess                      26
28 0 edu2 se.edu.cess ;                        26
29 0 jm01 Port Dues                                1
30 0 ser1 service                                   29
31 0 edu1 educationcess                       30
32 0 edu2 se.edu.cess                           30
like this you have to built your pricing procedure in a m/08. after that for you want the service tax automatically so for that you have to put the accesses sequence in you service condition types (ser, edu1,edu2).in m/06.
After that you have to maintain info record for that material and import vendor. in me11 in that in condition tab you have to maintain percentage for ser, edu1, edu2 . the system will  calculate the service charges automatically.
Thanking you,

Similar Messages

  • User exit for SO creation while changing the net price for  item

    Hi folks,
    Is there any user exit or BADI to change the net price in the item label of Sales order??
      My req. is that--- i need to change the net price of sales item if the cond type is 'ZUR1 ?
      how can i achive this?
    Regards
    pabi

    Hi
    The user exits and badis for va01 tcode:
                                                                                    Enhancement/ Business Add-in            Description                                                                               
    Enhancement                                                                               
    V45L0001                             
      SD component supplier processing (customer enhancements)       
    V45E0002                               
    Data transfer in procurement elements (PRreq., assembly)       
    V45E0001                               
    Update the purchase order from the sales order                 
    V45A0004                              
    Copy packing proposal                                          
    V45A0003                               
    Collector for customer function modulpool MV45A                
    V45A0002                              
    Predefine sold-to party in sales document                      
    V45A0001                               
    Determine alternative articles for product selection           
    SDTRM001                              
    Reschedule schedule lines without a new ATP check              
    V60F0001                             
      SD Billing plan (customer enhancement) diff. to billing plan   
    V46H0001                               
    SD Customer functions for resource-related billing             
    V45W0001                             
      SD Service Management: Forward Contract Data to Item           
    V45S0004                              
    Effectivity type in sales order                                
    V45S0003                               
    RP-relevance for incomplete configuration                      
    V45S0001                              
    Update sales document from configuration                       
    V45P0001                               
    SD customer function for cross-company code sales                                                                               
    Business Add-in                                                                               
    BADI_SD_SCH_GETWAGFZ                   
    Scheduling Agreement: Read WAGFZ from S073                     
    BADI_SD_V46H0001                       
    SD Customer functions for resource-related billing             
    If it is helpful rewards points
    Regards
    Pratap.M

  • Service Tax Calculation for Condition Types

    Dear Experts,
    In an Import Purchase Order for Coal, along with the Basic Price of the Coal, the following Conditions are also entered, in the Condition Types maintained in the Import Pricing Schema
    -        Water front royalty
    -          Port Dues
    -          Berth Hire Charges
    -          Port terminal charges
    -          Surveyor charges
    Each of these conditions may have a separate Vendor, hence the Purchase Order creator will select each condition and assign the required vendor.
    Each of these conditions is subject to Service Tax, Educational Cess and Higher Secondary Educational Cess, the User want that separate service tax calculation be made available in the pricing schema for these individual conditions and the relevant vendor be assigned to these condition.  the service tax on individual conditions be paid to the relevant vendor along with the basic value for the condition.
    Separate Condition Types (15 nos.) for each of the above conditions for Service Tax, Educational Cess and Higher Secondary Educational Cess can be prepared and added in the pricing schema, the user will have to enter the percentages in the relevant conditions.
    The user wants that the Service Tax be automatically calculated for these conditions, instead of manually entering the same. Please guide how can this be achieved.
    Thanks in advance.
    AJ

    Hi,
    For this you have to maintain the all your charges in your pricing procedure along with each charge you have to maintain 3 condition types for service and chesses.
    Ex:
    step counter cond.type des.                   from                 to
    1 1 P000 Gross Price        
    1 2 P001 Gross Price        
    25 0 JM00 Water front royalty                 1    
    26 0 ser1 service                                  25    
    27 0 edu1 educationcess                      26
    28 0 edu2 se.edu.cess ;                        26
    29 0 jm01 Port Dues                                1
    30 0 ser1 service                                   29
    31 0 edu1 educationcess                       30
    32 0 edu2 se.edu.cess                           30
    like this you have to built your pricing procedure in a m/08. after that for you want the service tax automatically so for that you have to put the accesses sequence in you service condition types (ser, edu1,edu2).in m/06.
    After that you have to maintain info record for that material and import vendor. in me11 in that in condition tab you have to maintain percentage for ser, edu1, edu2 . the system will  calculate the service charges automatically.
    Thanking you,

  • Formatted Search - Calculate GP Base Price for Non Inventory Items

    Hi Experts,
    On one of our customer's 8.8 PL 15 installation, requirement was to calculate GP for Non Inventory Items (on SO screen). Since SAP does not automatically calculates it we proposed and implemented following solution.
    1. Have all Non Inventory Items to be costed at Standard cost so that you can manually enter the cost in the Item Master.
    2. Write following formatted search on GP Base Price field so as to calculate the GP Base Price for the Non Inventory Items only. The formatted search must not make any changes to Inventory Items as we want system to calculate the GP automatically (just in case cost changes from SO to Delivery or Invoice).
    DECLARE @II AS nVarchar(1)
    DECLARE @COST AS Numeric(19,2)
    SET @II = (SELECT OITM.InvntItem FROM OITM WHERE OITM.ItemCode = $[RDR1.ItemCode])
    SET @COST = (SELECT     (OITW.AVGPrice * $[RDR1.NumPerMsr]) FROM     OITW WHERE     OITW.ItemCode = $[RDR1.ItemCode] AND
         OITW.WhsCode = $[RDR1.WhsCode])
    IF (@II = 'N')
    BEGIN
    SELECT @COST
    END
    3. Formatted search achieves what was originally required however if a user overwrites the Item Code (Inventory Item) in the SO then above formatted search clears the GP Base Price field and sets the GP basis for the item as "Manual". By obverwrite means user first selected item A0001 on line 1 and then entered A0002 on same line i.e. Line 1.
    My question here is what is wrong in the formatted search that is resulting in this behaviour.
    Any questions please let me know.
    Thanks in advance.
    Regards
    Devinder

    Hi Gordon,
    Thanks for taking out time to help me however Key requirement here is
    Write formatted search on GP Base Price field so as to calculate the GP Base Price for the Non Inventory Items only.
    Your query sets the base price for GP Base Price for Inventory Item to ZERO and Base Price By to Manual.
    Note that my Formatted search has a problem only when an Inventory Item line is overwritten. I am not sure if this is a problem with SAP itself rather than my query.
    Any other ideas please?
    Regards
    Devinder

  • Transfer prices for service materials??

    Hi All,
    We have activated Material ledger to have transfer pricing. We want to maintain the transfer prices for service materials (with material type DIEN). But since quantity and value updates are not possible for material type DIEN ML is not activated for these materials and hence its not possible to maintain transfer prices either.
    Is there any other way of maintaining transfer prices for service materials?
    Regards,
    V S

    Hi,
    Please refer this link:
    http://www.sapfans.com/forums/viewtopic.php?f=10&t=270331
    Regards,
    Pramitha.

  • Change of base value for calculation of Excise.

    Hi All,
    I have a senario which needs to be maaped in SAP. Please help in maaping the senario.
    We are purchasing Oil from manufacturer like IOCL & HPCL. The contract is such that, the excise is calculated on the proce of the oil on the day the chalan has been created. Eg:-
    Contract base price is 100
    Ed@ 14.42%                14.42
    But on the day of despatch the base price is 110, hence the excise will be calculated on 110 only not on 100.
    So in PO we want to maintain a condition apart from basic price PBXX and PB00 on which only the excise will be calculated. The excise shouldnt be calculated on PBXX & PB00.
    So please tell me how to map this in pricing procedure using routine.
    Regards,
    Mohar

    Hi,
    I hope your requirement can be met using the manual Excise condition - JEXC in MM Pricing Procedure by maintaining  the subtotal as 5.
    Enter the JEXC condition in PO Item condition manually & enter the amount on which excise needs to be calculated.
    Based on subtotal 5 the value will flow to tax procedure automatically & excise will be calculated on the same.
    Hope its clear.
    Thanks & Regards,

  • How do I find out the base dir for the current workspace ? Change?

    Assume I took over a colleagues JDeveloper installation.
    How can I find out the base dir for his JDevelopers workspace?
    Can I change this workspace base dir afterwards/later (without
    problems for the included sources and projects) ?
    Where can I change it ?
    I did not found an option in the settings?

    If you hover your mouse over the workspace you'll see the directory where the jws file is stored.
    For each project in the workspace you can go to the project properties and look up information in the content node of the preference - there you can also change the location preferences for where code is created.

  • I want to purchase the student membership but i graduate in august...will i continue to pay the student prices for 1 year or will that change after august?, I want to purchase the student membership but i graduate in august...will i continue to pay the st

    I want to purchase the student membership but i graduate in august...will i continue to pay the student prices for 1 year or will that change after august?, I want to purchase the student membership but i graduate in august...will i continue to pay the student prices for 1 year or will that change after august?

    Hi there
    The Student membership is an annual plan so you'll pay the same price each month for 12 months regardless of when you graduate during that year.
    Thanks
    Bev

  • What is the total price for an iphone 5 including tax

    what is the total price for an iphone 5 including tax

    Depends upon the model you want, and where you live.  Quit trolling.

  • 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.

  • Problem in Service Tax Calculation in PO taxes tab [CIN].

    Dear Experts,
    For external services procurement, i have configured service pricing procedure for the pricing application - MS.
    Service basic prices and other pricing stipulations are maintained in Services tab [PO Item Level].
    For service tax following condition types are maintained -
    1] JST1 - IN: A/P Service tax
    2] ZSED - IN: ECESS Services
    3] ZSHS - A/P SHECESS Service
    Condition record in Transaction - FV11 are maintained for the tax code only [Key Combination]
    Condition table assigned to the service access sequence is assigned with tax code field.
    I have maintained the condition record for all above mentioned condition types. for example Tax Code - S1.
    But in Service Purchase Order, when i am assigning tax code, it is adopting tax percentage in taxes tab but
    not copying or not adopting the service prices at or for the Condition type - BASB - Base Amount.
    Please Guide me on the issue.
    or please guide me on SAP service tax configuration.
    Thanks in Advance

    I have Check it in case of material procurement i mean for the basic excise duty and other taxes it is adopting the value for basb.
    The problem is only with service tax conditions.
    Please give me the steps for service tax configuration.
    please provide me the steps for cin service tax processing.

  • Customer interface - sales channel, price list and tax calculation

    We need to let third party system to upload new customer information into OFS, but I can't see the above 3 fields:
    1 sales channel,
    2 price list
    3 tax calculation
    in the interface tables. The interface tables that I am working on are:
    ra_customers_interface_all
    ra_customer_profiles_int_all
    ra_contact_phones_int_all
    ra_customer_banks_int_all
    ra_cust_pay_method_int_all
    is there other interface table that allow us to set the value of above 3 fields?
    we are using 11i.
    Edited by: shng on Dec 1, 2010 10:43 PM

    Are you creating Sales Order with any reference ? In case of ref. , must be User has changed it at Header Level.
    Else , it could be due to Authorization Object maintained on that user ID. Kindly coo-rdinate with BASIS Cosultant.
    Best Regards,
    Ankur

  • Comercial rounding in FI Service Tax Calculation

    Dear All,
    We are in Implemantation project, we done the configuration for Service Tax From FI, system is calculating the persentage but my issue is ........
    My client wants the rounding values in tax line items
    Ex ; if my tax line item is having 10.49 in this case this should be 10.00
                                                       10.51 in this case this should be 11.00
    we check the condition records but there is no option for comercial rounding with nearist rupee.
    Regards
    radha

    Hi ,
    In the configuration of Condition type there is a option to maintian the Rounding Rule
    The rule that determines how the system rounds off condition values during pricing. The last digit will be rounded.If you leave it blank it will take Commercial Rounding and will round as example shown below
    10.454 -> 10.45 DEM
    10.455 -> 10.46 DEM
    But your requirement is to round off to the whole number instead of decimal.
    In that case Check the Pricing procedure you are using.
    Against the Service tax Condition type maintain the Cal Type as 17.
    This will round the amount according to T001R table.
    Go to T code OB90 and maintian the Rounding unit as 100 based on your Company Code and Currency.
    Hope it helps
    SJ
    Edited by: Sumit Jain on Dec 4, 2009 7:30 AM

  • Can I change the default settings for InfoView?

    Hi,
    I have a Crystal Reports Server 2008 running. The users access their reports via the InfoView web application.
    In this application each user can configure some settings, like whether to use the Acrobat Reader or an ActiveX control for printing. Due to the fact that most users are not experts, is it possible to change the default values for all users by administration?
    Regards
    Joern

    This was previously answered in an older thread. Hope this helps you...
    How to set default preferences for all users in Infoview 3.1/CRS 2008
    Posted: Feb 13, 2009 9:57 PM
    Click to report abuse... E-mail this message Click to reply to this thread Reply
    It took me a few tries to figure this out, so I thought I would share the steps I took to accomplish this.
    This was successful for InfoView Preferences for a Crystal Reports Server 2008 application (XI 3.1 base).
    1. Download the jsp files here: http://service.sap.com/bosap-supportsw
    Choose BusinessObjects Enterprise > * > Samples >
    "How to set preferences for all users at once in BO XI R2"
    2. Extract the files and rename logon.jsp to setpref.jsp
    3. Copy the downloaded jsp files to your root Infoview webapp folder (where the wars deployed to). We use the default - Tomcat. The Infoview webapp is deployed to C:\Program Files\Business Objects\Tomcat55\webapps\InfoViewApp\ If this is you, copy to here.
    4. From your browser launch http://crystalreportshost:8080/InfoViewApp/setpref.jsp (your infoview link) and follow the instructions!

  • Changing the default view for Line Items in an Auction.

    Hello All,
    We have a version 5 client who is asking for us to change the default view for line items in an auction.
    Currently, if you have an auction setup, and you go to the Line Items tab, the default view is the "Basic View". The client would like to change the Default from "basic view" to "price view".
    Is there a way to change this default in the system? Can this be configured using query groups? Any information would be helpful.

    Hi wood cloud,
    This is not possible, bcz there is no VLV for that drop down and we cant set it  to the price view.
    Thanks,
    Ankur Goyal

Maybe you are looking for

  • File Sharing Problem

    Hi I have a serious problem with file sharing, someone please help. I shared a folder "Accounts". The permissions for this "Accounts" folder is as follows: David - read/write User 1 - read/write User 2 - read/write User 3 - read/write Everyone - No A

  • Mac OS X moutainlion USB problems

    From one day to another my iMac lost the USB-port! Neither my iPhone nor my iPad, Canon-Scanner or Canon-SLR-Camera won't show up on none oft the usb ports. Neither iPhonto, iTunes, ImageCapture nor any other application connects to the devices. Deac

  • Message on C8180

    Message on C8180 "Cannot Print" Unable to remove and print with black only

  • Fonts once working in PC Version do not appear in Lion OS CS5 Version?

    Hello Extremely Knowledgable Flash Users: I have had no trouble at all having my favorite fonts used for my website {created previously on a PC} show up in all other Adobe applications except for Flash CS5. The True Type fonts I freely downloaded are

  • New MBA Sandy Bridge Graphics vs. Current NVIDIA

    Is anyone here familiar with the new Sandy Bridge Intel Graphics and the current MBA's NVIDIA offering? I've read that the new Intel IGP is supposed to be "on par" with the NVIDIA chip, but I'm curious if this will actually be the case, or if it's po