USA Sales Tax defaulting from Location other than Ship To Site

We have a requirement to default USA Sales Tax Rates in Order / Invoice based on Location say 'Loc1' different from Ship to Location say 'Loc2'. The location 'Loc1' is captured in Order Line DFF. We have only two types of tax codes defined for USA.
1) Sales Tax - this is Location Based Tax (combination of State, County and City)
2) Exempt - this is Non Taxable
Questions:
1) Is there a way to default Tax Code and Tax Rate based on 'Loc1' without any customizations?
2) Just in case we customize the Tax Code defaulting to default based on location 'Loc1', is there a way to default & calculate Tax Rate corresponding to location 'Loc1'?
3) What are the API/s to calculate Tax Rates with Location as input?
4) What are the ways so that Tax Code & Tax Rate forcefully assigned at Order Line does not alter at Autoinvoice Interface and then Invoice?
-Amrut

Yes, It is happening for all suppliers. but not for all locations.
I am able to book the order by selecting the other location.
I have checked the location defied in oracle inventory and it looks ok.
rgds

Similar Messages

  • Whenever you try to save a PDF file to a location other than the default location ('My Documents'), Firefox freezes & you have to go to the 'Task Manager' to exit Firefox and stop the error, so you can load Firefox again.

    Whenever you try to save a PDF file to a location other than the default location ('My Documents'), Firefox freezes & you have to go to the 'Task Manager' to exit Firefox and stop the error. I have Windows XP (Media Center Edition) and all updates (Firefox, Adobe PDF, Microsoft, virus protection, etc) are installed. This has only been a problem since Firefox 4, and isn't a problem in Internet Explorer.

    Hi David,
    Thank you for your detailed question. It sounds like the real issue is pdf files. Are there any antivirus/firewalls that might be blocking this specific file type? or are there any preferences in your control panel that might be blocking this?
    Do you have any stored preferences for PDF files in Firefox?
    *[[Applications panel - Set how Firefox handles different types of files]]

  • Prompt users to download air sdk from a location other than Android Market

    Hi,
    I am developing a android app using adobe air sdk for a device that DOESN'T have Android Market.
    Is there a way for my app to prompt a user to download the air sdk from a location other than Android Market?
    Thanks,
    Kai

    Well your in luck,
    If the app is going to be pre-installed, then you can pre-install the AIR Runtime with the app.
    First download the AIR 2.5 SDK or go to where your AIR SDK is located on your machine.
    go to the following directory within the SDK folder....
    "\runtimes\air\android\device\"
    "Runtime.apk" will be the name of the file. install that on the device and your done.
    They dont need to be prompted because they will have it pre-installed.
    This will allow them to start the app, then if there are any updates to the Runtime.apk, you can prompt them within the app to download with instructions.

  • My iTunes account is no longer showing my playlists or any of the music I have added from sources other than iTunes.

    I discovered that iTunes is no longer showing any of my playlists or music I have added from sources other than iTunes.  My iPod, which is a 4th Gen Classic, seems fine and has all of my playlists and music.  My question is how do I upload my iPod to iTunes so that I don't lose anything?  I have read a lot of posts about people having similar problems and most of them suggest restoring from an old saved file.  I have two problems with this approach 1) I do not have a current back-up and 2) it does not seem to work for any of my non-Apple purcahsed music.  Does anyone know of an easy way to fix this?

    I'd do a "deauthorize all" from a computer you have access to, and then reauthorise the computers you still have access to.
    For instructions, see the following document:
    iTunes Store: About authorization and deauthorization

  • Is there a way to access 11i from outside other than Self service?

    Is there a way to access 11i from outside other than Self service?
    I could connect any application from inside the firewall (basically router) and can not access screens from outside. Eventhough port forwarding 80 allows us upto initial screen, it does not go further.
    Any workaround/suggestions
    Jiltin

    Hi Jiltin,
    If you can migrate your forms server into Forms Listener Servlet.This will allow you to use forms outside firewall provided atleast one port(assuming yours 80) is open.
    Ref to the M.Link Note 201340.1 for how to setup forms listener servlet.
    Magesh

  • Serial number location other than disk drive door.

    Serial number location other than disk drive door.

    Do you want your Mac's serial number? What model Mac? Click on the Apple in the top menu & select About This Mac. Then select More Info. The Serial number should be in the window that opens.
     Cheers, Tom

  • Using External_Stage can we specify a location other than staging dir

    While using external stage mode for weblogic(I am trying for weblogic92)we must manually copy the deployment files(web app) to the staging directory of each target server before deployment.
    Is there a option to copy the deployment files to another location other than Server's staging directory? To be more specific can I specify a location which is outside the server?
    Secondly, with no-stage option of weblogic we can have a external location for the web application, but in case of the cluster,
    this location has to be either shared or
    the secondary node should have the same location(path to the web application) as that of the primary server.
    Here is my config.xml entry of the primary node.
    <app-deployment>
    <name>TestWebApp</name>
    <target>TestCluster</target>
    <module-type>war</module-type>
    <source-path>C:\TestWebApp\TestWebApp.war</source-path>
    <security-dd-model>DDOnly</security-dd-model>
    <staging-mode>nostage</staging-mode>
    </app-deployment>
    Here there is only one source path for the entire Cluster. So if both of the server nodes have a valid location(C:\TestWebApp\TestWebApp.war), then the deployment will be fine on a running server. But on the second server node, if the Web app does not exists on that location, deployment will fail.
    When we share the location the concept of cluster is lost. If go with the second option then the user is restricted to have the same path on second node also.
    Is there any way to specify differnt locations(of the same web app) for different servers in the Cluster?

    A few points of clarity:
    1) Session starts in consumer group LOGIN_GROUP. That does not have session queueing since queueing sessions at log on time results in the user experience of a hung session, which we cannot have. Whether service X is used to get it there or something besides services is fine; how is not a concern at this point.
    2) Session moves to consumer group MAIN_GROUP after about 5 CPU seconds in the LOGIN_GROUP. We want to do this because the MAIN_GROUP has session queuing, which we want for most sessions after they have the unqueued login experience per point #1.
    3) Session moves to consumer group SLOW_GROUP after about 60 CPU seconds in the MAIN_GROUP (or some number of seconds; exact numbers are not the main focus here). We want this because we want long-running queries to be downgraded. However, we don't want to leave the session there since the query is the thing that is running long, so we want the session to get back to MAIN_GROUP when it is done. However, if we use SWITCH_FOR_CALL when going to the SLOW_GROUP, it will switch back to the LOGIN_GROUP. Which is the trouble--LOGIN_GROUP is an unqueued group, so we don't get the desired session queueing.
    4) The solution must be fully automated without any DBA intervation or application code. We cannot use appliation code as this solution is intended for BI users working in tools that have direct data access. Thus prevents the use of DBMS_SESSION as you stated in your posts. How would we do that switching in an automated fashion without application code?
    5) We cannot put the DBMS_SESSION commands in a login trigger since that would switch groups to MAIN_GROUP and would again run the risk of queueing a session at login, which feels like a hung session to users and results in a bad user experience and help desk calls.
    Thanks!

  • Forwarding proxy requests from ports other than 80

    Hi,
    Is there a way to forward requests from ports other than 80 to the proxy address? For example, trying to define a rule to forward the requests from port 8080 to proxy_ip...
    Best regards,
    Emre

    Hi Emre,
    Have you looked into using ipfilter port redirecting ?
    It may depend on your configuration.
    /etc/ipf/ipf.conf
    pass in quick from any to any port = 8080 keep state
    pass out quick from any port = 8080 to any keep state
    /etc/ipf/ipnat.conf
    rdr <Interface> <hostname or IP> port 8080 -> <hostname or IP> port 8080 tcp
    Edited by: Hodware on Mar 4, 2013 7:24 AM

  • Denying access from hosts other than localhost

    I would like to prohibit access to Directory Server from hosts other than the localhost:
    I am doing this from Administration Console. On the server node I set the ACI:
    (targetattr = "*")(version 3.0; acl "deny_ip"; deny (all) ip!=dirservhost_ip or ip!=127.0.0.1; )
    But the access is still allowed. What is wrong?

    Purchase a device like this. They are offered by many cellular carriers
    Verizon Wireless - Mobile Broadband -

  • Activating phone bought from source other than Verizon

    If I buy a phone from someplace other than Verizon, how do I go about activating it and using it.

    First, before buying it, make sure it is a Verizon-branded phone. These are the only phones compatible with Verizon's network. Secondly, make sure to get the ESN from the seller and call Verizon Customer Service to make sure it is CLEAN. Third, after both of these check out, purchase it, and when you receive it, just dial *228 from it and select option 1 (make sure your current phone is OFF for this) Or you can go online to My Verizon and activate it there. If you are going from a non-smartphone to a smartphone, you will need to add the $29.99/month data plan, and vice versa.

  • HT1414 Why am I not able to text to phones that are not iPhones?  Nor am I able to receive text msg from phones other than iPhones

    Why am I not able to text to phones that are not iphones?
    Nor am I able to receive text messages from phones other than iphones.

    Settings-messages-send as SMS turned on?
    Have you tried settings-general-reset-reset network settings?
    Tried a reset?

  • Cannot make calls from phones other than my own?

    I have a Skype To Go number for the unlimited US/Canada package.  I cannot make calls from phones other than my own: "Due to technical fault..." What's the point of having Skype then?
    Post transferred to create its own new thread (topic);
    subject/title edited to differentiate from other posts.

    That makes no sense at all. The phone doesn't know or care what kind of phone is calling it. There's something else causing this. Contact your carrier.

  • I am trying to install Flash Professional CC to a location other than my C: drive

    I have specified in the preferences panel that I would like Apps to install on disk E: however this seems to have no effect. Should I reinstall Creative Cloud and try again or is there an easier fix? Please help!

    Have you tried creating a "user" file in E: (E:\Users\name) and also choosing it as the default Folder location under "Files" in CC preferences.  Once installed I use the update command found under "Help" in the program.  Faster and more reliable.
    In Windows 7 
    If nothing works for you and you still need to free up C: drive space (SSD?) you might search for info on the "Make Link" command and learn how to use it.  It is a way to move a program from one drive to another and make the OS think it is still in its original place. (Be aware, some files cannot be moved and moved programs will not update.)
    If you decide to uninstall it, you will need to undo the MKLINK command (delete created shortcut on C: and copy and paste the program back to the same original C: drive folder first.), then uninstall.  I have uninstalled first and then deleted the program from the other "Root" drive w/o ill effects too.  But I'm no techy, backup everything and create a new "Restore Point" first.

  • Finding files on an iPod Classic that were added from somewhere other than iTunes

    I added files onto an iPod Classic from another source other than iTunes, but can't find that file on the iPod, either its not connected self, or when it is in iTunes.
    So, how do I go about locating the file without going back INTO iTunes and adding the file into iTunes' library?

    Hey thanks, Jim... Actually I do have a back up of my entire library on an external drive. Is the process just dragging the songs and albums from the Finder (from the external drive backup) onto the iPod when I plug it in to iTunes and they copy over? Is it possible to create new or update existing Playlists with this method? But is key is to never sync the iPod with iTunes or do I need to check Manually Manage Music & Videos?
    Or am I looking at this completely wrong. lol

  • Import photos from source other than iphoto

    Is there a way to import photos to imovie from a source other than iphoto or photo booth? I have a cd of pics that i'd like to use but I'd rather not import all the pics to iphoto if I don't have to.
    thanks

    Wow; I can drag the photos from the Finder directly into my project. I actually tried this, but I tried dragging them into the lower pane with all the source clips. That won't work, but if you drag the photos into the top pane where your edited work is it magically adds the photo(s). Thanks for the tip!

Maybe you are looking for