Questioning the process to update tax code "rates"

I am not clear on what the process should be for updating the tax code rates. I would like to know how other entities perform this re-occurring process. My questions are... must the rate updates be transported/imported or entered directly using FTXP? Who in the organization is/should be responsible for updates? Aren't the rates considered master data? How often are the rates updated? If a transport is required, shouldn't the person entering the updates differ from the person doing the import into a client?

must the rate updates be transported/imported or entered directly using FTXP?
Yes you can enter manually also.
Who in the organization is/should be responsible for updates?
Anybody in Finance who is taking care of taxes
Aren't the rates considered master data?
Yes
How often are the rates updated?
There is no fixed thumb rule for this.  As and when a new requirement (different tax structure) comes, and if the same is not available in the existing tax codes, it has to be created.
thanks
G. Lakshmipathi

Similar Messages

  • Error at the Time of Importing Tax Codes

    Hi All
    I m in the process of importing Tax Codes into the Production Environment; However, everytime i import the Transport Number, I get the below Error:
    Tax jurisdiction CA1023000001 has defective structure
    Message no. FS790
    The Tax Jurisdiction has already been set up in OBCP...
    Has anyone enocountered this before...
    Thank u
    Rukshana

    Hi Rukshana,
    I haven't encountered this error before, but Jurisdiction Code "CA1023000001" seems incorrect.
    If it is a US Jurisdiction Code, the length should be 10 (2 + 3 + 4 + 1); and if it is Canadian Jurisdiction Code, the length should be 4 (2 + 2).
    Check where this code definition is coming from and you will be able to isolate the problem.
    HTH,
    Manish Patel
    Sr. SAP Solutions Consultant

  • Update TAX Code in Sales Order

    Hi,
    1. How to update TAX code in the sales order through API. When I tried Process order API, it is not working. If any one did that, please let me know.
    2. Is there any API to Just run calculate Tax for an order from PLSQL

    Through my efforts,  i got a solution for this queries.
    Answer: There is a User_exit, will take care of New Pricing Control.
    Thanks every body.

  • In sales order for the condition type MWST, **Tax code** is displaying wron

    Hi
    In sales order for the condition type MWST, *Tax code* is displaying wrongly at header level i.e. FF instead of AO (under account determination tab)
    AO tax is 0% but for FF it is 19%
    I have checked with the Access sequence it is picking access 08 correctly according to this it should show AO in tax code field for MWST but it is not so..
    There is a manual change for tax classification for material master in va02 initially it was blank now it is changed to ' 0 ' is any way influencing....?
    Even if I consider material tax classification and customer tax code  should not be FF because  tax code  FF is not maintained for the combination of access sequences for condition type MWST
    Please help me.
    Rajendra Prasad

    Dear Rajendra,
    There is a manual change for tax classification for material master in va02 initially it was blank now it is changed to ' 0 ' is any way influencing....?
    Definitely material Tax classification will influence to determine the Tax code.
    -->So Make sure that customer and material master having proper tax classification indicator.
    -->Have you Update the price after changing the tax classification in the sales order.by going to item dat -->condition tab then click on Update push button bottom of the conditions screen.
    -->Once again the check the condition record maintanence also for your MWST access sequence.
    I hope this will help you,
    Regards,
    Murali.

  • User Exit or BADI for Updating Tax code (MWSKZ) using ME21N

    Hi all,
    I am trying to fin out an exit or badi for Updating Tax code (MWSKZ) and Unit of Measure in transaction ME21n.
    The scenario is like this...
    For Purchase Orders Tax code will be defaulted from Purchasing info record or contract or parameter id for that item-vendor-plant.
    If the Tax Code is not defaulted and account assignment is blank then tax code on the PO is updated according to the below mentioned table
    Table
    Supplying Plant/              Receiving Plant                      Tax code
    Vendor/Country
    Any plant/vendor/
    country                           5050(NA)                               20
    2300                              6700                                     E0
    If the tax code on PO cannot be updated by the above table, then buyer needs to put tax code on the purchase order manually.
    Thanks,
    Shiva, Bangalore

    Hi Siva.,.,.,
    These r the exits.,..,which will be called while calling ME21N/ME22N/ME23N
    EXIT_SAPMM06E_006
    EXIT_SAPMM06E_007
    EXIT_SAPMM06E_008
    EXIT_SAPMM06E_009
    EXIT_SAPMM06E_012
    EXIT_SAPMM06E_013
    EXIT_SAPMM06E_014
    EXIT_SAPMM06E_016
    EXIT_SAPMM06E_017
    EXIT_SAPMM06E_018
    U want to default some values while the Initial screen will come right,
    while u Enter ME21N in command Prompt.,.,two exits will get triggerd,
    EXIT_SAPMM06E_014
    EXIT_SAPMM06E_016
    If u want to Default some values u can use these two exits.,.
    Try using EXIT_SAPMM06E_016.,.this will solve ur purpose.
    and if the user changes some values on screen.,,and you want them to get reflected .,.,.that means if user changes and saves data .,.
    While saving.,.,EXIT_SAPMM06E_012 and EXIT_SAPMM06E_013 will get triggerd
    Try using EXIT_SAPMM06E_013.,,.it was somehow the same requirement as mine.,.,IN my case it worked fine.,.,
    Regards
    Debasish
    Message was edited by:
            Debasish Das

  • How to update Tax code in R12 using API

    Hi,
    I am looking for API's to update supplier tax classification code in AP_Suppliers
    I can see the who columns get updated by POS_VENDOR_PUB_PKG.UPDATE_VENDOR in AP_Suppliers
    but the VAT_CODE is not updated I also checked in ZX_PARTY_TAX_PROFILE table but no changes.
    Any idea please suggest , I been asked to realce the 11.5.10 Tax code with the codes define for R12 using maping table,
    Lokking for API to update
    ap_suppliers.VAT_CODE (supplier)
    zx_party_tax_profile tax_classification_code (party level)
    ap_supplier_sites_all.VAT_CODE (supplier site level)
    zx_party_tax_profile zpt2 (PARTY site level)
    Tried the below :script but no use
    DECLARE
    l_vendor_rec ap_vendor_pub_pkg.r_vendor_rec_type;
    l_return_status VARCHAR2(10);
    l_msg_count NUMBER;
    l_msg_data VARCHAR2(1000);
    l_vendor_id NUMBER;
    l_party_id NUMBER;
    BEGIN
    FOR L_CUR IN
    (SELECT VENDOR_ID,
    VENDOR_NAME,
    VAT_CODE AS R11code,
    R12CODE
    from AP_SUPPLIERS,
    BES.XX_TAX_MAPPING_CODES MAPP
    WHERE AP_SUPPLIERS.VAT_CODE =MAPP.R11CODE
    AND VENDOR_ID like '8994'
    AND rownum < 10
    LOOP
    BEGIN
    L_VENDOR_REC.VENDOR_ID:=L_CUR.VENDOR_ID;
    L_VENDOR_REC.VAT_CODE :=L_CUR.R12CODE;
    L_MSG_COUNT:=null;
    L_MSG_DATA:=null;
    L_RETURN_STATUS:=NULL;
    DBMS_OUTPUT.PUT_LINE('updating status for '||L_CUR.VENDOR_ID ||' FROM '|| L_CUR.R11CODE ||' TO '|| L_CUR.R12CODE);
    POS_VENDOR_PUB_PKG.UPDATE_VENDOR( P_VENDOR_REC => L_VENDOR_REC, X_RETURN_STATUS => L_RETURN_STATUS, X_MSG_COUNT => L_MSG_COUNT, X_MSG_DATA => L_MSG_DATA);
    dbms_output.put_line('return_status: '||l_return_status);
    DBMS_OUTPUT.PUT_LINE('msg_data: '||L_MSG_DATA);
    DBMS_OUTPUT.PUT_LINE('l_msg_count: '||L_MSG_COUNT);
    IF L_RETURN_STATUS ='S' THEN
    COMMIT;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('Error while updating '||L_CUR.vendor_id);
    END ;
    END LOOP;
    end;

    Hi
    Tax code is created in FI only. FTXP is the T-code. Please go thro the documentation on the Tax on Sales/purchases in Financial Accounting Global settings. This is based on Tax calculation procedure and this will be used in MM as well.
    S Jayaram

  • Pricing date control for new tax code rate

    Hi All
    I have changed the tax code rate , now have few old POs where I want to capture tax as per the new rate. But PO was picking up old tax rate as pricing date was coming as the PO creation date.
    Now I changed the pricing date in PO to current date. But still tax condition is showing old pricing date and hence old rate is picking up.
    Can anyone help in capturing new tax rate for an old PO.
    Regds
    Mukta

    Hi
    This Program doesn't give option to enter tax code for different line items of PO.
    My PO is having multiple line items and I have to change new tax code for each line item.
    Different tax rates are applicable for each line item material.
    Can you please let me know how this can be happened. I changed it manually as well, but where partial GRN done , it is capturing the old tax code only inspite have changed new tax code in the particular line item.
    Regards
    Mukta

  • What is the process to update song plays count ?

    Hi,
    i'm using iTunes Match on 5 devices : 2 windows, iPad, iPhone and MacBook
    Everything is ok, sync is perfect for new songs i add anywhere.
    If i rate a song, it appears rated the same way on all other devices in a fex seconds.
    BUT
    what is the process to update the song plays count ? 
    because it doesn't seem to sync correctly.
    I have updated song plays count by scripts on one iTunes and it doesn't update at all anywhere else. I havez tried to "Update iTunes Match" and it just brought back the old song plays counts.
    How can i update the song plays and make the value change on all devices ?
    Thanks

    Take a look here:
    Purchasing iOS 3.1 Software Update for iPod touch (1st generation)
    Regards.

  • HT201210 Hi. During the process of updating my ipad to IOS 6 utilizing iTunes, I received the error #1602. I tried the update procedure again, this time itunes does not recognize the devise. The pad is displaying USB connecter to iTunes. Does anyone recom

    Hi. During the process of updating my ipad to IOS 6 utilizing iTunes, I received the error #1602. I tried the update procedure again, this time itunes does not recognize the devise. The pad is displaying USB connecter to iTunes. Can anyone recomend a fix?
    Thank you

    There is only one fix now. The message on the screen means that you have to restore the iOS software on the iPad now. Read the part at the very end about using recovery mode.
    iTunes: Restoring iOS software - Support - Apple
    About the error code.....
    Error 1600, 1601, 1602
    Follow the steps listed above for Error 1604. This error may also be resolved by disabling, deactivating, or uninstalling third-party security, antivirus, and firewall software. See steps in this article for details on troubleshooting security software.
    If needed.....
    Additional Information
    If your device is continually restarting, not responding, or showing the Apple logo with no progress bar or a stopped progress bar, place the device into recovery mode and try restoring again.

  • My iWeb just crashed and has vanished from my computer. The icon is visible but it will not open. Can anyone help? I desperately need it fixed as its my business website and i was in the process of updating it

    My iWeb just crashed and has vanished from my computer. The icon is visible but it will not open. Can anyone help? I desperately need it fixed as its my business website and i was in the process of updating it

    Where was this site hosted?
    Apple eliminated iWeb in July!!!
    http://en.wikipedia.org/wiki/IWeb#Discontinuation_of_iWeb_in_iCloud_Transition
    http://www.macworld.com/article/1160728/apple_mobile_me_transition_faq.html

  • HT4623 I am in the process of updating my iphone4 to ios7 it seems to have updated but i can't go past the terms and conditions page even though I have agreed to them can anyone help

    I am in the process of updating my iphone4 to ios 7, it has completed the process but i can"t get past the terms and conditons page although I have agreed to them both - can anyone help?

    *** I HAVE THE ANSWER ***
    You must goto Settings > General  > Reset > Reset All Settings ... this worked 100% for me and once that is compelte go back and try to pass the terms and conditions, you will see the "agree" button in the bottom right hand corner

  • I need help in making the programe which updates our code into client machi

    I need help in making the programme which updates our code into client machine from the server.
    As yahoo messanger does if there is any updated version of yahoo messanger.
    It asks when we login into it do you want to update new version of yahoo messanger
    It automatically updates it
    Need Help??

    Sounds to me like you need Java Web Start.

  • HT4623 in the process of updating to ioS6, how do i respond when the screen says choose a network?

    in the process of updating iphone5 to ioS6, how do I respond when the screen says choose a network?

    Your device is in recovery mode. Connect the device to iTunes and the computer and follow the instructions in this support document. http://support.apple.com/kb/HT1808

  • I am in the process of updating my iphone 5s.  Process has stopped halfway through.

    i am in the process of updating my iphone 5s.  The process has stopped halfway through for 3 hours now.  What do I do now?

    Hello scrapperdw,
    Thank thank you for using Apple Support Communities. 
    The following article provides steps and troubleshooting when the install process has stopped.
    iOS: Apple logo with progress bar after updating or restoring from backup
    Regards,
    Jeff D. 

  • HT4623 I started to update my iphone4 software to iOS 7.0.4 while in the process of updating a text message came in- now it keeps saying checking for update then an error comes up that says try again . How do I finish updating my phone?

    I started to update my iphone4 software to iOS 7.0.4 while in the process of updating a text message came in- now it keeps saying checking for update then an error comes up that says try again . How do I finish updating my phone?

    Hi
    A little information will be of a great help, witch iPhone did you upgrade, memory , and version of software ( iOS 8.x.x )?
    Try restarting you iPhone and make sure you have a god internet connection , get as close to your wifi router (1-3 meter / 2-9 feet ) as possible. Don't use restore to factory  settings before you tried other options .  And most imported du you have an iCloud backup.
    //Sorenc

Maybe you are looking for