Error to Define Tax Relevancy Of Master Records

Hi ,
I created a condition type ( Y007)  with category as 'D' ( TAX) and  class as 'A'. and then i tried to  Define Tax Relevancy Of Master Records ( Customer taxes) but it gives the message "Condition type Y007 is not defined for taxes" . its fine when i use the class as 'D' or 'G' but the requirement is it should be 'A' as discount or surcharge.
Any one can help on this if  this is possible??
if not then the other situation is if i use class as 'D'  or 'G' then in the section"changes which can be made" the calculat. type disappears...is there any way to have it appear on the screen??
thanks...

Hi
For tax condition types, condition class should also be D.
Pls check the configuration for MWST condition type. If you have the need to create a new condition type, please copy MWST or some standard tax condition type and create a new one, instead of creating a new condition type itself. Also check for the access sequence. For tax condition types most of the times MWST access sequence will be the correct one.
So, the tax c.type should have D both in condition category and condition class.
You can have c.class as D (Not G) and then you can have the calculation type as A
Rwd points if it helps.

Similar Messages

  • Tax Relevancy of Mater Records

    Hi CIN Gurus
    We are implementing  my SAP ERP  ECC 6.0,we are using TAXINN procedure
    We are trying to maintain Tax relevancy for Master Records
    In the Customer master,Material master for tax LST ,CST tax category JLST,JCST
    is there,
    Now to introduce VAT conditions in Customer master ,material master which type of Tax Category has to be Adopted ,Kindly let me know the procedure for this
    Immediate response will be appreciated
    Regards
    Guruprasad

    Hi Guru,
    You will have only define Customer Tax classification and mAterial Tax classifications in Customer and material master. As tax gets detrmined based on 4 rules:
    1. Delivering Plant (country of shipping point)
    2. destination country
    3. customer tax classification &
    4. material tax classification
    You determine the procedure and deince the tax categories in IMG. and define the Tax codes also representing LST/CST /VAT etc. Against each tax code maintain the tax data.
    For Condition Type MWST maintain a tax code in condition record as per the access sequence what you want. system will read the Pricing procedure in the sales order and read MWST condition type. Against MWST system will read the access sequence what you have maintained and read the Tax code and against the tax code you have maintained in FTXP whether this tax code determines CST / LSt/VAt and what is the % .
    Hope this clarifies. pl go thr below links for more info:
    http://help.sap.com/saphelp_47x200/helpdata/en/09/ebf138cdd78a4be10000000a114084/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/EN/40/a23c39129ffe2ee10000000a114084/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/EN/40/a23c39129ffe2ee10000000a114084/frameset.htm
    http://sap-img.com/sd009.htm
    Incase you want any clarifications pl give revert back.
    REWARD IF IT HELPS
    regards
    Srini

  • Update termination Error : Maintain Output device in User master record

    Hi All,
    For transaction IW32 when print is given we have getting Update termination error : Maintain Output device in User master record.
    I have set the user_settings = Space, for output_Options passed the output device . Even for control_paramters I have passed the device while calling the Smartform . However there is no use. Still I am getting the update termination error.
    Please let me know how to solve this issue. Any OSS Note is there for this.
    Thanks in Advance!
    Regards,
    Preethi G

    Hi,
    Thanks for the reply. There is no problem in the print program .
    In the user master record , if the output device is not given and in the print program if we pass the output device. the error is coming.Is there any way to solve the issue at the print program level with out maintaining the user master.Please let me know.
    Many Thanks!
    Regards,
    Preethi G

  • Proposal of partner function and related master record in sales order

    Hi Gurus,
    As we know, a partner determination procedure is used to propose partner functions and the master data tied to them in the sales order.
    I need to confirm the following if understanding is correct:
    1. 1st a customer master record is entered with all the partner functions, say, SP SH PY BP and 9E (PE partner type).
    The respective master record values like who is the SP SH PY BP and 9E are specified in the partner function tab also.
    This customer master is assigned to a account group.
    2. a Partner determination procedure is created and the same partner functions assigned to it.
    Next, this procedure is assigned to the account group.
    3. When I create an order for this customer, the sales order's partner function tab should automatically be populated with the partner functions and the respective master data value as defined in the customer master record.
    Questions:
    1. What if the partner determination procedure was not defined with 9E Partner function but the customer master record is?
    2. What if the customer master record was not defined with 9E but the partner procedure is?
    3. Why the partner procedure need to define the partner functions if its assigned to account group to which the customer master is assigned to already?
    4. If the partner function 9E is not proposed in the sales order, can user manually enter this partner function and the respective master record value in the sales order partner function tab?
    Have a great day!
    regards
    M Russo

    Hi,
    1. What if the partner determination procedure was not defined with 9E Partner function but the customer master record is?
    If the partner determination procedure is not defiend you can not maintain same in customer master the system will through you error message PE is missing.
    2. What if the customer master record was not defined with 9E but the partner procedure is?
    It depends how you want propose the same,
    According the function it behaves, you can make this field is mandatory if you want the same is to customer master
    3. Why the partner procedure need to define the partner functions if its assigned to account group to which the customer master is assigned to already?
    normally the standard partner procedure follows as it is SP SH BL PY Still if you want add some other partners(agent,employee,contact person...etc.) you can define the same in the procedure.
    4. If the partner function 9E is not proposed in the sales order, can user manually enter this partner function and the respective master record value in the sales order partner function tab?
    As you can refer the second point if you set as optional you can enter the same in customer master partner function tab.
    Hope this can helps,
    Thanks and Best Regards,
    Muralidharan S

  • Can't delete master record when matching when matching detail record exist

    Hi
    on the rel. property:
    Delete Record Behaviour = cascading
    Prevent masterless Operation =yes
    Automatic Query = yesCan't delete Record Master & Detail...
    On delete getting error msg.
    Can't delete master record when matching when matching detail record exist
    am i missing something...!
    Regards,
    Abdetu...

    First of all, remember the ripple affect of cascading deletes and updates.
    Oracle database allows creating master/detail relationship between tables using foreign keys and allows cascading deletes by defining the FOREIGN KEY constraint with ON DELETE CASCADE clause.
    Oracle Forms on the other hand, handle cascade delete thing internally when you set the relation properties.
    Now if you have 3 tables with MASTER->DETAIL1->DETAIL2 relationship and you have a form defined with MASTER->DETAIL1 relationship only, it won't let you delete (and save) master or detail record since the third table (DETAIL2) is referencing the rows from DETAIL1 which you are trying to delete.
    If DETAIL2 were present on the form, it would have deleted with relation property CASCADING. If you really want that when you delete a master record, all its details should be deleted too, then consider defining FOREIGN KEY constraints with ON DELETE CASCADE and on the form set relation property CASCADING.
    And if all master/detail tables are on your form and still it is not allowing you to delete master with cascading, there must be some code preventing it. Check triggers like ON-DELETE, KEY-COMMIT etc what they are doing.

  • Date format in user master record cannot be interpreted

    When running an Infopackage from BW to an R/3 customer extractor, the R/3 job cancels with this error message, "Date format in user master record cannot be interpreted". I can restart the R/3 job program from the ABAP editor screen using the same variant that BW issued and the job runs without cancelling.
    NOTE: This process runs without any errors on our QAS system.
    Any idea what causes this error message and how I can fix it?

    Hi Alan,
    I have resolved this issue by myself. Same just like yours mine is also a custom Datasource.
    Solution for this is go to source system check your Background user id i.e like BWALEREMOTE or ALEREMOTE which ever id you have created for setting up RFC connection between R/3 & BW. Check your Date format which has been set for your background user. Use the second format mm/dd/yy. Then run your extraction you will not face any problem.
    If you still have any problem do let me know. If this solution helps you assign points.
    Regards,
    Bhuvana.

  • Reconcil. acct is missing in master record, correct master record

    Dear Experts,
    i created the intercompany billing document.
    but it has not generated any accounting document.
    it is giving the error Reconcil. acct is missing in master record, correct master record.
    In my customer master record i have filled up reconcil acct.
    and now if i want to made any changes in that i am not able to do that.
    so now what can be the alternate solution for that.

    hello, friend.
    you mentioned that the field for recon account (company code view) has been greyed out in change mode?  it is possible your FI has set this field as display only (text control) while in change mode.  please check with your FI consultant and if so, the field should be made modifiable so you can make changes.
    if this is not possible, then cancelling the intercompany transaction becomes a likely option.
    please post feedback again.

  • How to change cost center in Asset Master record ?

    Hi SAP Gurus,
    My client is asking me to change cost centers in Asset Master records using LSMW. Currently, the field cost center is in display mode. In order to change the cost center, the field cost center must be in change mode while recording in LSMW. I have changed screen layout rule for Asset Master data. I have selected radio button "Optional" for cost center in screen layout for Asset Master data. But still cost center field is in display mode in Asset Master record. It must be changeable.
    Please suggest me how I can resolve the issue.
    Regards,
    K.S.K

    Hi Saravana,
    We can change the cost center for AuC Investment measure at WBS element level. For that purpose we need to go to AuC Investment measure Asset master record and check WBS element under Origin Tab. Double click on WBSE and then check the cost center under Assignment tab. And also check the cost center in Asset master record for the same. Now you can go to T.Code CJ12 (Change WBS Element) and change the cost center for the same. Once you make changes system automatically change the cost center in asset master record for the same.
    Note: - Now you have to identify all the AuC Investment measure Assets and the WBS Element for the same. Then change the cost center in WBS Element record. And the corresponding changes will be done in relevant Asset master record automatically.
    But before making the change please check with the PS/PM consultant regarding changes in WBS element. Means where it will effect?
    With Regards
    Ravinder Kaushik

  • Role VN not defined in master record for vendor 1000000465

    dear alll,
    while preparing PO, with one vendor system is giving the below message and
    when observed the vendor master data,last view vendor partner roles not updated.
    If i go ahead with the same vendor, after giving tax code, taxes tab not getting open to calculate taxes
    Despite,condition records  are there  for the respective condition types with the key combination material,vendor,plant why system is not picking taxes?
    Role VN not defined in master record for vendor 1000000465
    Message no. ME329
    Diagnosis
    The vendor may only operate as a partner for other vendors (e.g. as ordering address or invoicing party), not as the vendor who actually fulfills the order.
    Procedure
    u2022     If this is a warning message, you can ignore it.
    u2022     If this is an error message add partner role VN to the vendor master record:
    Perform function
    some times taxes getting calculated properly but in print priew, tax related informaton(values) missing.
    what might be the possible reason? please suggest the way

    Message no. ME329
    Check these threads
    [Re: steps to create PO for service order |Re: steps to create PO for service order]
    [How to change the wording of System Messages?|How to change the wording of System Messages?]
    thanks
    G. Lakshmipathi

  • Impotance of tax category field in g/l master record

    hi,
    pls tell that what is the importance of tax category field in g/l master record
    regards
    jana

    Hi,
    Tax Category in Account Master Record
    Determines whether the following apply to the G/L account:
    Is it tax-relevant?
    Is it a tax account?
    Is it a tax-relevant G/L account?
    Use
    Tax-relevant account?
    You decide whether you want to use the account for tax-relevant postings. If not, leave the field blank.
    Tax account?
    You decide whether you want to use the account exclusively for posting taxes.
    Define the type of tax on sales and purchases you want to use the account for:
    < Input tax account
    < Output tax account
    ">" and "<" are only supported for tax accounts.
    Use the proposed keys from the possible entries help.
    Tax-relevant G/L account?
    You decide whether you want to use the account as a G/L account to which you make tax-relevant postings.
    Define the tax code which can be used to post to the account. When posting to this account, the system then checks whether the tax code in the line item is permitted for this account.
    This is useful if you always post to this account using the same tax rate. When you post to this account, the tax code is defaulted and can no longer be changed (for example, the account Domestic trip costs taxed flat rate in Germany).
    If you only want to carry out a flat-rate check for the tax category, choose one of the following special characters:
    + Only output tax permitted
    - Only input tax permitted
    All tax types permitted
    If the G/L account is then posted to, you must enter a tax code. This does not apply if you also permit postings without tax code to the G/L account and use your own code instead.
    If this helps,Please assign points.
    Thanks,
    Rau

  • Customer Master Record :Sales area INSO IN IN is not defined for customer

    Hi Experts
    I got error , when creating Customer Master Record .The error message likes below
    "Sales area INSO IN IN is not defined for customers" .I maintained all the settings .But why i am getting again and again the same error .Even i checkd in TVTA table in SM30 but is shows clear data , please tell me where i made mistake .
    I traid so many times maintain with new configuration ,but still field .Please what i have to done to over coome this issue .
    Your Suggestions needful to me .. Please
    Issue Details :
    Message no. F2644
    Diagnosis
    The sales area specified has either not been defined (i.e. there is no entry in table TVTA) or it refers to another sales area for customers (customer division/customer distribution channel in the TVTA detail screen). This means that the customer master data of the sales area entered correspond to the data in the reference sales area and customer master data only needs to be maintained for this reference sales area.
    Procedure
    You can display the relevant and therefore valid sales areas for customers by selecting "Extras" -> "Sales areas" -> "All areas".
    Regards
    Rajesh .P

    Maintain relevant entries in t.code VOR1 and VOR2 and then try again. Here assign the distribution channels and divisions to reference distribution channel and division.

  • Error in Asset Master record creation

    I have created one asset class 1001 for land and 3001 for Vehicles by myself (i.e. without reference)
    I have filled all account determination, screenlayout, etc.
    When i create asset master record for LAND, i enter asset class 1001 (for land) & it accepts.
    But when i create asset master record for Vehicle, i enter asset class 3001 (for vehicle). But it throws error.
    Error shown is:
    Chart of depreciation IN00 that was determined is not entered for asset class 3001.
    _How to rectify the problem ?_
    Help with Tcode or menu path.
    Further to rectify,
    I am trying to Specify Chart-of-Dep.-Dependent Screen Layout/Acct Assignment (Tcode: ANK1)
    But error shown is:
    Chart-of-depreciation-dependent assignment to asset class not possible
    (Message no. AC012)

    I am trying to Specify Chart-of-Dep.-Dependent Screen Layout/Acct Assignment (Tcode: ANK1)
    But error shown is:
    Chart-of-depreciation-dependent assignment to asset class not possible
    (Message no. AC012)
    Solution given is:
    In order to be able to assign chart-of-depreciation-dependent data to asset class 1001, the following conditions have to be met. You have to have already
    1. Defined at least two active charts of depreciation
    2. Assigned asset class 1001 to more than one chart of depreciation
    However, at the moment this asset class is only assigned to chart of depreciation 1.
    I m unable to understand the solution
    Edited by: Deepak Agrawal on Mar 19, 2009 8:06 PM

  • Vendor Master Record: Tax Number 1 Field

    Hi Everyone,
    For some reason, when you enter XK01 or XK02 for creation or change of vendor master record, Tax Number 1 within the Control Tab is visible and able to be input.  However, when displaying the vendor master record through XK03, the field is not visible.  Reviewing the field options for vendor master record did not reveal anything to me.  Any ideas why?
    Thanks,
    Pete

    Hi Peter,
    Please follow the path.
    SPRO>Financial Accounting  or Financial Accounting (New)>Accounts Receivable and Accounts Payable>Vendor Accounts>Master Data>Preparations for Creating Vendor Master Data>Define Screen Layout per Activity (Vendors)
    click on Display Vendor(Centrally) and Double click on Genral Data and Double click on Central
    check for Tax code field,its may be Suppressed
    If this helps you,please assign points.
    Thanks,
    Rau

  • ERROR : Output -  No details for medium PRN im vendor master record

    While trying to create PO after applying sourcing to a shopping cart the following error message apears in our system currently
    Output: No details for medium PRN im vendor master record  (Document Number 1000000295 , Item 1)
    Could anybody depict the solution pl ?

    Hi
    Which SRM version are you using ?
    Please go through this ->
    In PPOMABBP, your purch org must be defined under (or at the same level as) a company. This company org id (defined in function tab) will be used to read address and use it as "contact" addresse._
    PO output
    Reg Output medium in Purchase order.
    Also, try adding a default printer in the organizational plan (PPOMABBP) or to add a printer in the BP address._
    You can look at transaction bbp_po_action_def to understand how it is done for setting output medium.
    +Look for BADI "BBPSEND_MEDIUM_MODE ".+_
    Related links ->
    Re: How to define a new "send medium" for a vendor?
    SRM PO's to be printed out with the PO
    To set Output type,check the foll path:
    SPRO->supplier relationship management-> SRM Server->Cross application basic setting->set output action and output format
    See the foll link for more details:
    http://help.sap.com/saphelp_srm50/helpdata/en/91/41faf2c220e84c9002a4ae4cc1906a/frameset.htm
    Related notes:
    Note 1028388 - User settings for output medium is not saved.
    Note 885593 - SRM 5.0 SP02: Incorrect output medium and change impossible
    Do let me know.
    Regards
    - Atul

  • Company code withholding tax master record information ???

    Hello,
    Good morning
    What is meant by company code withholding tax master record information. Can we assign an WHT exemption code here ?? If so, what is the purpose for creating that code for our company code and exempting here ?? please make this clear.
    Thanking you,
    Suresh &#61472;

    hi,
    WHT codes are defined at country level. For country u can define codes which u have to assign to company code.
    Exemption notification As per Indian IT Act means special grant by notification to assesee for deducting TDS at lower or nil rate for period specified in that notification. Exemption code is defined to reflect the same.
    U cannot assign exemption code to WHT Code as it is defined at client level and as per above paragraph exemption notification is party specific.

Maybe you are looking for

  • Access Denied with EJB Deployment to 8i with JDeveloper

    Hi, I'm having a problem deploying an EJB to Oracle 8i with JDeveloper 2.0. I am receiving an insufficient privileges error in the deployment process when it reaches the stage Generating EJBHome and EJBObject on the server. I am logging in using the

  • HT4759 How to setup icloud on iPad 2?

    Hlow do I setup icloud on my ipad2?

  • Javascript: select all text, break link to style

    Hi I'd like to select all text in a Document (in different independent textboxes) and then break the link to it's style (in the program in the Flyout-menu of the paragraph styles) Is this function scriptable (javascript)? How do I select all the text

  • Id & password fails when activating cs5

    using my  id and password the same as the forum's' which always worked for me adobe fails to login and activate cs5 version  can't imegine the reason . anyone has some idea ???   please help

  • Running OS X 10.5.8 and cannot upgrade to itunes 11

    I'm running OS X 10.5.8/Leopard and cannot upgrade to itunes 11. I recently installed IOS 7 on my iPhone and it will not sync to my current 10 version of iTunes. Will installing Snow Leopard onto my macbook allow me to install iTunes 11 and resolve t