How can I un-hide sales tax code in FB01?

Hi,
I am trying to create a vendor invoice posting through the intercompany sales EDI process, and am getting error 'field BSEG-MWSKZ does not exist in screen SAPMF05A 0302'.  When I manually try to create a VI posting via FB01, I can confirm that tax code is hidden from the vendor line item screen.  Does anyone know how I can get the tax code back on this screen? 
I have looked through the field status variant and field status group config, but don't see tax code as one of the fields that can be controlled via this config (I do see withholding tax code, but I'm looking for sales tax code).  Does anyone know how I can un-hide this field?
Thanks!
Allison

Thanks.  I did try that, but found that the tax code isn't controlled by any of the field status stuff.  BUT, I just found the solution to my problem via another forum.  Apparently the tax code, and whether or not it is included on the screen, is controlled by the tax category of the G/L account that you're posting too.  I changed the tax category of my G/L account to '*' (All tax types allowed), and that caused the tax code field to appear and be editable in FB01. Yay!

Similar Messages

  • Default Sales Tax Code in transaction F-22

    Guys,
    this refers to accounts receivable.
    I have followed a few threads about defaulting tax codes, but do not find the answer I am looking for.
    When I post with F-22, how can I default the sales tax code?
    Kind regards,
    Rudolf

    hi,
    Try with create a screen variant for the particular transaction.
    in SHD0 transaction code:
    for F-22 create a screen variant and give the default value for sales tax code, now onwards every time you are using F-22 transaction the particular Tax code will be defaulted.
    hope this may help you,
    regards,
    srinivas

  • How to or which table i can find Sales Tax Code in CRM

    Hi,
    I need to get Sales Tax Code(mwsk1) in BADI 'CRM_COND_COM_BADI'. if i use CRM_ORDER_READ( ET_PRIDOC) or CRM_PRIDOC_READ_OW it is going into endless loop. So i can't use these Function modules in CRM_COND_COM_BADI.
    Can you help me table or any other way to get sales tax code of Pricing conditions that appear on the sales order in CRM.
    Thanks,
    Praveen

    Hi,
    try by getting header and item guid in et_pridoc->pric_cond.
    Regards,
    Padma.

  • Authorization object for sales tax code (MWSKZ) in FB60

    HI, there is a FI tcode FB60 in FI module. The requirement is that user wants to restrict some users to enter only few sales tax codes from among the list. For example if there are 30 tax codes, then user should be authorised to enter only 5 tax codes from the list. In standard authorization, there doesn't exist an authorization object to restrict tax codes. Kindly tell me the process of making authorization object for this task.
    I have made one authorization object. I think i need to call this object somewhere in user exit of FB60. Is this the way of doing this?? Kindly if someone have done this, mention down the procedure of making authorization object and how to implement it. Thanks

    Hi,
    Instead of creating a authorization obejct and assigning it to the tax code, it will be easy to write the code in a user exit to check whether the tax code is applicable for the user. Suppose if the user enters a non-applicable tax code, you can throw an error.
    Do u want to restrict the number of entries in F4 help for tax code for a particular user?
    Cheers
    ~Niranjan

  • Kindly advise how to enable payment terms and tax codes in f-22

    1. how  enable Payments terms field and Tax Code in f-22 because i have already configured payment terms in img.
    2. i have configured Sales and Purchase Tax and while posting in f-22 and in f-43, i seleted the Calculate tax but in third screen am unable to see the Tax code field to select my individual tax codes liek v0 for 0% input tax or v1-for calculation of Excise payable, cess payable and vst payable or v2.
    kindly advise how to enable
    1. Payment terms field
    2. Tax codes field
    in f-22

    Hello,
    first you should configure the tax codes and tax types. and payment mothod related to your company code.
    you can set the configure on tax code using the T>Code  :  FTXP in calculation bases.
    once you done the configuration of input/output tax  you can give the tax indicator on related *GL  master data*  in sales a/c and purchase  select the  input tax or out put tax.
    If your posting the document in F-22 or F-43  the system is not display the payment method you can go to field statues variant and select the required button in payment method  and save. t.code is OBC4 .
    you start the entry of document in   third screen click on  tax calculation button and  select  any one of this  Vo,V1 or V2. after you can simulate the entry the system generate the entry of below:
    vendor a/c  dr
      to vat 12.5% ; a/c  cr
      to service tax a/c  cr
      to ed.cess a/c cr
      to hr ed.cess cr
    if you have any doudts reply me.
    regards,
    Keerthi

  • Sales Tax Codes Translation

    Hi,
    Can anyone tell me how to maintain Sales Tax Code Descriptions in difeerent languages.
    Kind Regards,
    Nehal.

    Hi Narsi,
    Thanks for your reply.
    Im talking about Sales Tax Code Descriptions and not the GL account one
    Regards,
    Nehal
    Edited by: Nehal Fonseca on Apr 1, 2008 12:25 PM

  • Creating Sales Tax Code

    Hi,
    I have a requirement to create a sales tax code within the SAP B1 database using the DI API but, to be hinest, am confused about how to do this in code. I have searched the SDK help and noted the SalesTaxCodes and SalesTaxCodes_Lines which I think I know how it fits together but what are the SalesTaxAuthorities and SalesTaxAuthorities_Lines objectes and how do they fit into the whole structure? Bascially what i am trying to do is enter the following type of data:
    Tax Code: "R"
    Tax Rate: 10.0%
    Tax Description: "Reduced Rate VAT"
    Is there an easy way of doing this?
    Thanks
    Adrian

    Hi Adrian,
    Ok to start from scratch, the first step is to create a new sales tax jurisdiction type. I created one called Country and it has the type "1" (which I got from querying OSTT). The jusrisdiction type is like a category of tax.
    Next I have to create a new sales tax jurisdiction - So I created one called USA Test with the code USA, with a base rate of 10% and it is of type 1 (country).
    Dim oTax As SAPbobsCOM.SalesTaxAuthorities
                Set oTax = oCompany.GetBusinessObject(oSalesTaxAuthorities)
                oTax.Name = "USA Test"
                oTax.Rate = 10
                oTax.Code = "USA"
                oTax.Type = 1
                oReturn = oTax.Add           
                If oReturn <> 0 Then
                    oCompany.GetLastError oError, errMsg
                    MsgBox (errMsg)
                Else
                    MsgBox ("Sales Tax Jurisdiction Added")
                End If
    This adds a new sales jurisdiction - however, if I want to use it, I now have to add a Sales Tax Code and reference this jurisdiction:
    Dim oCode As SAPbobsCOM.SalesTaxCodes
                Set oCode = oCompany.GetBusinessObject(oSalesTaxCodes)
                oCode.Code = "US1"
                oCode.Name = "USA Region 1"
                oCode.Lines.STACode = "USA"
                oCode.Lines.STAType = "1"
                oReturn = oCode.Add
                If oReturn <> 0 Then
                    oCompany.GetLastError oError, errMsg
                    MsgBox (errMsg)
                Else
                    MsgBox ("Sales Tax Code Added")
                End If
    Now if you go to Administration --> Setup --> Financials --> Tax --> Sales Tax Codes and search for the Tax Code "US1", you will find it there with one line added to it (the country jurisdiction of USA).
    The rates of tax of each of the SalesTaxCode_Lines for a SalesTaxCode are added together to create the overall tax rate for that code. (for example, if you want to create a Tax Code for a city in the US and the United States has a tax of 10%, the state has an additional tax of 5% and the city of 2% you will get an overall rate of 17%).
    Even from reading back over this I think its a bit complicated, but I think if you play around with that code and try creating and modifying a few jurisdictions and codes it should become clearer.
    This is all relevant to the USA localisation. If you are working on a localisation that does not use SalesTaxCodes Jurisdictions it is as simple as this:
    Dim oCode As SAPbobsCOM.VatGroups
                Set oCode = oCompany.GetBusinessObject(oVatGroups)
                oCode.Code = "R"
                oCode.Name = "Reduced Rate VAT"
                oCode.VatGroups_Lines.Rate = 10
                oCode.VatGroups_Lines.Effectivefrom = Now
                oReturn = oCode.Add
                If oReturn <> 0 Then
                    oCompany.GetLastError oError, errMsg
                    MsgBox (errMsg)
                Else
                    MsgBox "Tax Code added"
                End If
    Hope this is useful,
    Regards,
    Niall
    SAP Business One Forums.

  • How can we prevent viewing the source code  of JSP by the user

    Dear sirs,
    how can we prevent viewing the source code by the user ( from the browser for the Viwe Sorce option) for a JSP file that use struts frame work.
    infact i don't wan the user to view the javascript that in incorporated in the JSP for various purpose...
    thanks and regards...
    Sudheesh K S
    INDIA

    Dear sirs,
    how can we prevent viewing the source code by the
    user ( from the browser for the Viwe Sorce option)
    for a JSP file that use struts frame work.
    infact i don't wan the user to view the javascript
    that in incorporated in the JSP for various
    purpose...
    thanks and regards...
    Sudheesh K S
    INDIAJSP and Servlets are programs/scripts that run on the server. The user/clients only sees the HTML output generated by the server. If you want to hide JavaScript from casual users then you can put the JavaScript code in a seperate file. This file can however be read from the Cache.

  • How can I create multiple sales orders with reference to one contract?

    Hello Gurus,
    Can you please how can I create multiple sales orders with reference to one contract?
    thanks!
    Rakesh

    hi
    Lets consider example
    In your contract for line item 1 you have entered qty 100
    You careated sales order with 70 quantity, and now you want to creat another sales order for 30
    For this first you need to check what is your item category in contract (VA42)
    Goto VOV7
    SPRO - IMG  - Sales and distribution - Sales - Sales document item - Define item categories - Go to change mode
    Make the completion rule = B Item is completed after full quantity has been referenced

  • I have a Canadian iTunes account how can I redeem an iTunes HD code

    I have a Canadian iTunes account how can I redeem an iTunes HD code that I received from an Amazon purchase. I tried to redeem it and it says that it is a US code only. I have heard you can create a new account with an American billing address and redeem it that way. But could I also change my current account to an American address (I have a US shipping address) redeem the code and switch back to the Canadian address or would I lose the digital copy. Does anyone have any experience with this? I have an Apple TV and would rather not have to log in and out just to watch movies.

    You can't redeem it except in a US iTunes account. Since you got it from Amazon I would return it and ask them to replace it with one from the CAD store.
    If you have a US iTunes account then you can switch to the US Store and redeem it there.

  • How can i get a power bar code i only have a ee mobile wifi

    How can i get a power bar code i only have a ee mobile wifi which doesnt allow me to sent texts .. ive tried the sim card in a unlocked phone but it wont send texts

    You could try putting your SIM into an EE phone. It's only a SIM, it should be be able to send an SMS.

  • How can i fix a 4280 error code when trying to burn cd's on itunes

    How can I fix a 4280 error code when trying to burn cd's on itunes for windows? Model drive is drive D: TSSTcorpCDRWDVD TS-H492C

    Did you by chance find out a solution with your problem?     I am having the same issue with the same drive.    I even uninstalled iTunes and completely reinstalled it.
    Thank you for any help anyone can offer.    I'm not having any luck finding answers on the net.     Thx.

  • Account Determination for Tax using Sale Tax Code

    Hi,
    We are using TAXINN and sales tax codes. We are using JTX1 condition in our sales pricing procedure for which we r maintaing condition record with correct tax code applied to it. We have assigned account keys in Tax Procedure, so no acct. key is assigned to JTX1 in sales pricing procedure. In record of JTX1 we are maintaining same tax rate (with tax code assigned to it) for eg. 4 % (not 100%) as maintained in tax code.
    Now, we are able to save billing document but while creating accounting document system is giving following error:
    No account is spesified in item 0000001002
    No acct. was specified for acct. type S in item 1002 of the FICO doc.
    The financial acctg. pgm. cannot process the doc.
    A sys. error has probably occured in ther sppln. you called up. Check the data transferred to item 1002 of the FICO doc.
    Pls. help.
    Regards,
    Dipti

    Hi Dipti,
    Hope you are working for Indian Client.
    Since you are using TAXINN procedure, you should not use JTX1(Tax Jurisdict.Code) condition at all. As you are aware after implementation of VAT, we should switch off Tax Jurisdiction at all lelvels.
    SD Pricing Procedure:
    1. Condition Type Settings
    a. Excise conditions (if req'd)
    b. LST / CST Conditions
    c. Freight and Insurance Conditions
    2. Access Sequence Settings
    3. Maintain Pricing Procedure
    4. Assign tax code to Company code
    Therefore, check your IMG settings once again.
    Bye,
    Muralidhara

  • How can I create a sales order with reference to a purchase order?

    How can I create a sales order with reference to a purchase order?
    Thanks in advance...

    Hello,
    you can't create a sales order with reference to a purchase order. You can input customer PO nuber in the sales order Purchase Order number filed.
    Prase.

  • How can i find the value category code in CJVC

    Hi Gurus
    how can i find the value category code in CJVC and which tables its stored.can any one tell me.please please

    Read TPIK3 in an internal table, then search COEP-KSTAR in this table, with KSTAR between TPIK3-KSTRF and TPIK3-KSTRT, and other keys like Controlling Area and application/component (eg "PS" in project-system as in CJVC or "PM" in Maintenance as in IW33, multiple application use this table). You can also use a FM like PS_FIND_ACPOS_FOR_KSTAR.
    Regards,
    Raymond

Maybe you are looking for

  • How to print text in a new line in a text view.

    Hi, I have a situation where I need to print two lines inside a text view. for eg:     Bye Bye < user name>               Have a nice day!! I am assigning this to the context by conactenating   Bye Bye   < user name>   Have a nice day!!. But the text

  • Regarding TO_DATE function and Default Date Format DD-MON-YY

    I am using oracle 10.2 version. As far as my knowledge default date format is 'DD-MON-YY'. I want to know that why first query is not giving result. SQL> select sysdate from dual 2 where sysdate = to_date('06-JUL-11','DD-MON-YY'); no rows selected SQ

  • ITunes cannnot read contents of ipod

    My iPod has recently stopped working with iTunes. iTunes says the following message everytime I hook up my iPod: "iTunes cannot read the contents of the iPod. Go to the Summary tab in iPod preferences and click Restore to restore this iPod to factory

  • Contacs sorting

    Is there a possibillity to sort the contacts on the iPhone by Company instead of name?

  • TS1702 iMessage will not accept my mobile number

    iMessage will not accept my mobile number so cannot get SMS on ipad