Calculate tax check box

Hi consultant,
may i know in fb01 or any manual posting tcode, after enter the first line item and hit enter, the screen must have calculate tax check box irregard what account you enter? why?
I know it is meant for tax but why only appear when enter the first posting key line item. subsequent posting key line item will not show.
Thanks
Rgds

Hi,
You are getting ths message because, you are posting to a tax-relevant account which does not, however, require the entry of a tax code.
Check your FS00 for this account, you must have ticked * i.e. All tax types allowed. Generally it is good practice to assign * in FS00 along with tick on "Posting without tax allowed.", for accounts which normally does not attract tax.
If you leave this field blank than you will not get said message during posting.
I hope your doubt is cleared now.
R/s
Valay Pandya

Similar Messages

  • Calculate only checked boxes that are checked. Other "lines" of boxes do not have a value. HELPPPPPP

    I have say 6 possible lines. Each line will allow the user to enter employee goals. Then to the right of that, there are radio buttons that the user will check, marking the percentage that particular goal is complete. However, not every employee will have 6 goals, they may only have 3 and some may have all 6 or say, 2. What I want to do is only calculate those lines which have a goal and a percentage marked. So in the end, I want to total the checked boxes which will each have a value and then divide that by the number of goals for that particular employee.
    PLEASE, explain this to me so I can understand it. Like I said, I am extremely new to creating forms and LiveCycle. I really hope I can get the answer to this.
    Thank you in advance.

    And NOW, when I am attempting to put in my script for the radio buttons that have values, the area where it should total is NOT correct. This is my script:
    $=Page1.RadioButtonList.unlead1+xfa.resolveNode("Page1.RadioButtonList.#field[1]")+xfa.resolveNode("Page1.RadioButtonList.#field[2]")+xfa.resolveNode("Page1.RadioButtonList.#field[3]")+
    xfa.resolveNode("Page1.RadioButtonList.#field[4]")
    The area that has the total, only has the number 5 in it when I click on the first checked box. (radio button) however, the value is set at one. PLEASE help, I am about to rip my hair out.

  • Calculate tax in MIRO

    I want "Calculate tax" check box in miro to be ticked and in display mode.
    How to do it?

    hi!
      You can set transaction variant for your requirement using T.code SHD0 and that too only if the requirement is needed for all LIV postings. In SHD0 you can enable the tick and set the field in display mode. If the requirement is not for all postings then you copy the MIRO trtansaction USING T.Code OMW9 and set the transaction variant for that new t.code. But if you want to create a new t.code its upto you to check all other requirements.
    Reward if useful.
    Yuvi.

  • Removing Calculate tax option from F-47

    Hello Sap Guru's,
    We have a requirement to remove Calculate tax check box option from F-47 screen.Please note the we have already deactivated tax code field.Kindly let us know how it could be done.We even try to make transaction variant for this but it is not possible to create trans variant.
    Kindly advise.
    Regards,
    Shikha

    Hi,
    Yes it is possible to create transaction variant, & I have just tested & its working perfectly fine as per your requirement, with T.Code F-47.  Please follow the following steps given in this thread:
    Disabling tabs in SHD0
    Regards
    Javed

  • Problem with tax calculate tax in BAPI_ACC_DOCUMENT_POST

    Hi ,
    I am using BAPI_ACC_DOCUMENT_POST to  post financial details to G/L accounts .
    The BAPi has created the acoounting document with the data I have passed,but I am
    unable to calculate tax(i.e.When i click Calculate tax check box in FB01 ,a tax line item gets created,)
    but the same is not happening when i use the BAPI.
    Can any one throw light on the data that needs to be passed to the TABLE ACCOUNTTAX and how the
    corresponding changes that needs to be done to TABLE CURRENCYAMOUNT inorder to create this new line item.
    i have also had a look at the OSS notes but still am facing issue .
    Pl help!!I

    Hi
    This is my code to fill ACCOUNTTAX:
    LOOP AT GL_ITEM INTO W_GL_ITEM .
        ITEMNO_ACC = ITEMNO_ACC + 1.
        IF W_GL_ITEM-VAT = SPACE.
          ACCOUNTGL-ITEMNO_ACC = ITEMNO_ACC.
          ACCOUNTGL-GL_ACCOUNT = W_GL_ITEM-HKONT.
          ACCOUNTGL-BUS_AREA   = W_GL_ITEM-GSBER.
          ACCOUNTGL-TAX_CODE   = W_GL_ITEM-MWSKZ.
          ACCOUNTGL-PROFIT_CTR = W_GL_ITEM-PRCTR.
          ACCOUNTGL-COSTCENTER = W_GL_ITEM-KOSTL.
          ACCOUNTGL-REF_KEY_2  = W_GL_ITEM-XREF2.
          ACCOUNTGL-REF_KEY_3  = W_GL_ITEM-XREF3.
          APPEND ACCOUNTGL.
          PERFORM FILL_AMOUNT USING W_GL_ITEM-WRBTR 0.
          CLEAR ZSDFI_BAPI_EXTENSION.
          ZSDFI_BAPI_EXTENSION-ITEMNO_ACC = ITEMNO_ACC.
          ZSDFI_BAPI_EXTENSION-ZLIFNR     = W_GL_ITEM-ZLIFNR.
          ZSDFI_BAPI_EXTENSION-CANALE     = W_GL_ITEM-ZJ_3AKVGR6.
          MOVE ZSDFI_BAPI_EXTENSION TO EXTENSIONS.
          APPEND EXTENSIONS.
        ELSE.
          ACCOUNTTAX-ITEMNO_ACC = ITEMNO_ACC.
          ACCOUNTTAX-TAX_CODE   = W_GL_ITEM-MWSKZ.
          ACCOUNTTAX-ACCT_KEY   = W_GL_ITEM-KOSTL.
          ACCOUNTTAX-COND_KEY   = W_GL_ITEM-KSCHL.
          ACCOUNTTAX-TAXJURCODE = W_GL_ITEM-TXJCD.
          ACCOUNTTAX-TAXJURCODE_DEEP  = W_GL_ITEM-TXJCD_DEEP.
          ACCOUNTTAX-TAXJURCODE_LEVEL = W_GL_ITEM-TXJLV.
          APPEND ACCOUNTTAX.
          PERFORM FILL_AMOUNT USING W_GL_ITEM-WRBTR W_GL_ITEM-BASE.
        ENDIF.
      ENDLOOP.
    FORM FILL_AMOUNT USING    P_AMOUNT P_BASE.
      CURRENCYAMOUNT-ITEMNO_ACC = ITEMNO_ACC.
      CURRENCYAMOUNT-CURR_TYPE  = '00'.
      CURRENCYAMOUNT-CURRENCY   = T001-WAERS.
      CURRENCYAMOUNT-AMT_DOCCUR = - P_AMOUNT.
      CURRENCYAMOUNT-AMT_BASE   = - P_BASE.
      APPEND CURRENCYAMOUNT.
    ENDFORM.                    " FILL_AMOUNT
    The tax data are picked by fm CALCULATE_TAX_FROM_NET_AMOUNT
    REFRESH T_MWDAT.
          CALL FUNCTION 'CALCULATE_TAX_FROM_NET_AMOUNT'
               EXPORTING
                    I_BUKRS           = BUK_TO
                    I_MWSKZ           = T_BASE-MWSKZ_OUT
                    I_WAERS           = _BKPF-WAERS
                    I_WRBTR           = T_BASE-WRBTR
               TABLES
                    T_MWDAT           = T_MWDAT
               EXCEPTIONS
                    BUKRS_NOT_FOUND   = 1
                    COUNTRY_NOT_FOUND = 2
                    MWSKZ_NOT_DEFINED = 3
                    MWSKZ_NOT_VALID   = 4
                    KTOSL_NOT_FOUND   = 5
                    KALSM_NOT_FOUND   = 6
                    PARAMETER_ERROR   = 7
                    KNUMH_NOT_FOUND   = 8
                    KSCHL_NOT_FOUND   = 9
                    UNKNOWN_ERROR     = 10
                    ACCOUNT_NOT_FOUND = 11
                    TXJCD_NOT_VALID   = 12
                    OTHERS            = 13.
          IF SY-SUBRC <> 0.
            MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ELSE.
            LOOP AT T_MWDAT.
              CLEAR W_GL_ITEM.
              W_GL_ITEM-HKONT   = T_MWDAT-HKONT.
              W_GL_ITEM-MWSKZ   = T_BASE-MWSKZ_OUT.
              IF T_BASE-KBETR = T_MWDAT-KBETR.
                W_GL_ITEM-WRBTR   = T_BASE-FWSTE.
              ELSE.
                W_GL_ITEM-WRBTR   = T_MWDAT-WMWST.
              ENDIF.
              W_GL_ITEM-VAT   = 'X'.
              W_GL_ITEM-KTOSL = T_MWDAT-KTOSL.
              W_GL_ITEM-TXJCD = T_MWDAT-TXJCD.
              W_GL_ITEM-KSCHL = T_MWDAT-KSCHL.
              W_GL_ITEM-TXJCD_DEEP = T_MWDAT-TXJCD_DEEP.
              W_GL_ITEM-TXJLV = T_MWDAT-TXJLV.
              W_GL_ITEM-BASE  = T_BASE-WRBTR.
    I hope it can help you
    Max

  • Tax Code (check box)

    Hi FI Guru
    As per our requirement we have to make Tax Code check box Ticked in all FI Transaction codes and it should always be ticked and grey(display) mode so no one can change its ticked status.
        Kindly suggest how to make this field ticked and greyed.
    Thanks & Regards
    Keshav

    Hi
    You can do so by editing the necessary field status group and putting the tax check box as display only.
    However, you would not need tax calculation for all cases. Be sure that you know, why you want all accounts to be tax relevant.
    If I understand correctly, you will maintain the necessity of Tax Code in GL master through FS00 but you will keep it in display mode at document entry level.
    Please clarify your exact requirement.
    Please assign points if it meets your requirement.
    Regards
    Sanil Bhandari

  • How do i have a cell calculate only if a check box is NOT clicked (using it if someone is tax exempt)?

    This is my current code:
    (function () {
    // Get the field value, as a number
    var val1 = +getField("TotalPretaxCost").value;
    var val2 = +getField("Dropdown93").value;
    // Calculate result
    var result = val1 * val2;
    // Set this value by rounding to the nearest cent
    event.value = util.printf("%.2f", result);
    It gives me my tax amount based on a tax rate. I have now added a tax exempt check box if the customer is tax exempt. What I would like to do is add to this code so if the check box (called Tax Exempt) returns positive then the tax amount calculates as zero. Is this possible? I am not a programmer so I had someone write this piece out for me but I will not be able to get in contact with that person again for awhile so I am trying to solve this here instead. Thanks a ton!

    Change the last line to:
    event.value = (this.getField("Tax Exempt").value=="Off") ? util.printf("%.2f", result) : 0;

  • Calculate Excise amount as per duty rates check box in J1IEX

    Hi,
                  In J1IEX Duty rates tab, there is one check box as Calculate excise duty base on duty rates , but thta check box is Disable i How to make it as enable so that we can click to to recalculate the excise rate,
    also my problem is that in case of import PO, the basic price in our PO is diffrent compare to basic price of custom . because custom is addding the basic frieght and insurance charges in Basic price, so while Doing J1IEX ref. to MIRO number it is taking properly amount of all excise duties but excise base amount is diffrent and when we correct the excise base amount as per custom Bill of entry all excise amount are change and it is not coming as per duty rates which are present i Duty rates tab so I want to recalculate it.
    regards,
    zafar

    Hi ,
                 As per detail which I have mention in my question,  the process which we are following is after recieving import Material   first we are doing   MIRO  for custom delivery cost   and there we are entering tax amount as per custom bill of entry,   and we are getting the MIRO Documnet number    after that we are Doing    Capture Excise invoice thorugh J1IEX  and ref. document we are selecting as PO,  after pressing enter we get a small pop up window as customs invocie number  and year  there we are entering the MIRO document number and Year   then  ref. to that miro number  All duty and duty rates  are coming as per MIRO   but  Excise base amount is different  because it is coming from PO basic amount and there is diffrence between  Custom excise base amount and PO bae amount becasue  in custom bae amount they are adding frieght basic amount into excise base amount , and then  we have to correct amnually  exsice base amount in J1IEX   for all materials,  is this proceess is same in all  or we need to do some modification in pricing procedure or at any other place .
              At bottom in excsie duty tab in J1IEX  there is one check box as Calculates excise amount base on excise duty  but that check box is also disable   How to make that enable.
    I also have found one FM : J_1IEX_DEFAULT_EXCISE_DUTY,   by doing some changes in this FM we can get what we requied , is there any other solution to get our requirement.
      regards,
       zafar
    Edited by: zafar_karnalkar on May 15, 2010 1:47 PM

  • How to pass the check  'calculate Tax Automatically' in IDOC

    Hi,
    I need mark the check box in the 'calculate Tax Automatically' in the IDOC. The IDOC will then go to BDC session 'FB01' to post. Which program I should to make the modification and what IDOC structure has this XMWST field?
    Any help is appreciated!
    Thanks,
    Helen

    I am trying to do the same using INVOIC01 MM and MIRO
    I found an OSS note that I thought may help but found a few anomolies.
    Solution
    The user exit CUSTOMER-FUNCTION '015' is available in the subroutine MRM_DOCUMENT_COMPLETE (include LMRMH1F). In this user exit, the "Calculate Tax" indicator (XMWST) can be set automatically for the IDoc.
    Here the field e_rbkpv-xmwst must be set to 'x' in the structure e_rbkpv. In addition, f_change must be set to 'x'.
    The Include is not LMRM1F but LMRMHFOT, in this include if I change the two fields rbkpv-xmwst and f_change in debugging, it works. There must be a way to do this!
    We already do this using FI posting with INVOIC02 and the calculate taxes is flagged when you set calculate taxes on net amount in FB00.
    Any suggestions would be gratefully recieved.
    Thanks Ian

  • "Calculate tax" on MIRO/FB60 to be checked by default

    Hi,
    Can anyone tell me if it's possible through configuration to make the "Calculate tax" box on MIRO/FB60 checked by default and grayed out (user isn't allowed to uncheck it).
    Regards,
    Yathi P

    Hi ,
    the problem that you have stated can be resolved by creating a screen varient for the same , where in you can make the calculate tax as only output mode .
    for this execute the t code SHD0 , enter the T code and create a screen varient for the same .
    do revert back in case you have any queries in creating a screen varient .
    Cheers ,
    dewang

  • Check box Calculate Excise Duty base on rates in J1IEX

    Hi,
      In J1IEX  Duty rates tab,  there is one check box as Calculate excise duty base on duty rates  ,  but thta check box is Disable i  How to make it as enable so that we can click to to recalculate the excise rate,
    also my problem  is that in case of import PO,  the basic price in our PO is diffrent compare to basic price of custom .  because custom is addding the basic  frieght and insurance charges in Basic price,  so while Doing J1IEX  ref. to MIRO number it is taking properly amount of all excise duties  but excise base amount is diffrent    and when we correct the excise base amount as per custom Bill of entry   all excise amount are change  and it is not coming as per duty rates which are present i Duty rates tab  so I want to recalculate it.
    regards,
      zafar

    Hi,
      Can you help on this issue.
    regards,
      zafar

  • J1iex duty rate tab calculate excise base rate check box is disable in impo

    Hi,
    We have done Import PO and wrt we have done the GRN as part 1 and we try to complete the part 2 as J1iex, but in j1iex duty rate tab calculate excise base rate check box is disable, we required is activate.
    its working in domestic scenario.
    Thanks
    shital

    Go to J1IEX- Change (Instead of Post). Try & change the rate.
    But why do you want to change it in J1IEX? as duties are flowing from PO-MIRO.

  • I have a dynamic table that calculates the sum of all rows, no issue.  I'm struggling with pulling out a subtotal though.  I would like to have a check box in each row  that flags those rows and gives the sum of their total.  Any help would be greatly app

    I have a dynamic table that calculates the sum of all rows, no issue.  I'm struggling with pulling out a subtotal though.  I would like to have a check box in each row  that flags those rows and gives the sum of their total.  Any help would be greatly appreciated.

    Here's something I threw together rq. The script is in the change event for the checkbox in the table. (Of course, you'll have to modify it to suit the names of your fields.)
    var rows = xfa.resolveNodes("tblAmounts.Row1[*]");
    var subtotal=0;
    for (i=0; i<rows.length; i++) if (rows.item(i).cbAdd.rawValue == 1) subtotal = subtotal + rows.item(i).nfAmount.rawValue;
    nfSubtotal.rawVlaue=subtotal;

  • MIRO Calculate Tax button should be automatically checked.

    Hi All,
    While doing MIRO (Invoice), calculate Tax checkbox needs to be automatically checked. Could any one let me know where to configure these settings so that "Calculate Tax" will be automatically checked. Is this setting will be on a User level ?
    Thanks
    Rajanikanth

    I don't think there is a customizing for this.  You have to do it for each user in the user profile.
    Ask your user to go to System -> User Profile -> Own Data from the menu on top (in any screen in SAP) or execute T-Code SU3. In the session that opens up (User Profile), go to Parameters tab and key in 'XTX' in Parameter ID and 'X' in Parameter value. Save the changes to User Profile. Restart MIRO.

  • Federal Tax Rules - Multiple Percentage Check box

    Does anyone know what the Multiple Percentage Check Box is for on the Federal Tax Rules Form? What is the rule for using it? In all examples seen, it is checked, but why is it there? Any help would be appreciated. We can find nothing in documentation. If you can e-mail any help to [email protected] Thanks very much

    No Body responded very strange !!!!!

Maybe you are looking for

  • Thumbnails wont display pages in a chapter that I know are there and have pasted in

    Hello everyone. I am an author and have previously published two books in the iBookstore using iBooks Author. The third one that I'm attempting to lay out is giving me major problems for some reason. I have a MacBook Air 13 inch Mid 2013 Processor  1

  • How to calculate the acutal qnty

    Hi Guys we are on BI 7.0 and ECC 6.0...we are using the 2lis_11_vakon and vaitm data sources . Now we have to report the quantity as nr of items ( which we are getting from KWMENG) in to BI. This KWMENG value is coming from VBAP table and there is so

  • Requirement in selct option

    Hi All, I have one requirement in my program's select option. If i am entering starting three letters and star symbol then it should fetch all the possible values staring with that three letters For example if I want to display the report for a group

  • Procedure to Copy Database Files Between Servers

    I am currently in the process of installing Oracle 9i on a Solaris platform. When this has been completed, I will be attempting to copy two databases from one server (also Solaris) to this server. What is the best way to copy these databases over to

  • Messages/insert system variable in message

    Hello , I am writing short report , and after i delet e some lines from db i would like to have message with text  e.g. ' 25 lines deleted '. I created text symbol 002 containing  text   " lines deleted" but i do not know how to insert system variabl