Error FS206 Down pmnts w/ taxes not permitted when processing with jur.code

Issue:   I am encountering a problem entering Taxes when applying  down payments received from customers since we are using a jurisdiction code taxation procedure.  This process works as desired in Europe for our firm.  I found OSS 97288 which is not valid for version ECC 6.0.  Please assist due to US go-live in 2 weeks.Process:  Create Down Payment Request for cash in advance.  Required to tax at this point.  Billing document creates a noted item in the G/L (Special G/L).  I apply customer's payment via transaction F-29 and receive error "FS206 Down pmnts with taxes are not permitted when processing with jur.code."
Settings:  1) Alternative Recon account for Special GL posting has The tax category on the GL account = B "Output tax - down payments managed gross."  2) Transaction OBXB specifies tax clearing account for transaction key MVA.  This G/Laccount has same tax category setting (B). My settings work perfectly for Europe since they are not taxed via juridicition codes.
Thank you in advance!

Check the GL master of the alternative recon account. Ideally there should be no setting in the tax fields as there is no tax calculated on down payment but only on the final amount. Leave the tax fiel blank and do not check mark posting without tax allowed.

Similar Messages

  • Down pmnts with taxes are not permitted when processing with jur.code (Message no. FS206)

    Hi Guys,
    I am facing very critical issue on down Payment request, to process with saperate Tax Value.
    We are supporting on Roll-out for Germany. We have implemented all standard SAP processes in the Project. We have also implemented many interfaces and one of the Interface is Sabrix Tax Engine (Tax Jurisdiction Code).
    As per the Germany legal requirement, the Tax has to get calculated whenever the funds gets transfered from one Bank Account to Another Bank Account.
    Coming to the issue: In the Customer Down Payment scenario, we are creating the Down payment request for Customer and as per Germany local requirement the Tax of 19% has to get calculated on Down payment.
    For an Example: We have the Sales Order Contract Value of 100,000.00 EUR and we are creating the Down Payment reqeust of 10% which is 10000 EUR + Tax 19% 1900 EUR.
    We are trying to post the Down Payment request in F-37 and we get the issue "Down pmnts with taxes are not permitted when processing with jur.code". This error is appearing due to Sabrix Tax engine (Tax Jurisdiction Code) has implemented in our System.
    We have gone through the SAP notes 97288 and 213567 and understood that the Standard SAP does not support us to post the Down Payment request with Separate Tax Value, when the External Tax Engine has implemented.
    I request you to suggest me, if you have already seen this issue in any of your Projects and fixed through the work-around solution. We have been working on work-around since 2 weeks, however no result.
    Below is the error message:
    Down pmnts with taxes are not permitted when processing with jur.code
    Message no. FS206

    HI Preeti,
    Thanks for your response. We have already seen the similar SAP notes and the SAP notes explains that the "Down pmnts with taxes cannot be done along with with jur.code". The only solution is to post the DP without Tax.
    However there might be some workaround which can be done in SAP, to process the Down Payment/Advance Payments with Tax Value along with Jurisdiction Code. I would like to know this.
    Did any one seen this case in your experiece, if yes, what is the work-around solution?.
    Need your help guys!,...
    Regards,
    Damodar Naidu

  • "Company code  is not permitted as the paying company code while FRFT

    Hi Experts,
    I am trying to post cross company fund transfers via FRFT -> F111. In my scenario, CC1 is sending amount to CC2 via a virtual payment method. I have done basic company code set up and also customizations in FBZP for payment method and F8BJ/F8BF for incoming/outgoing transactions. I have also done OBYA setting for cross company clearing account
    During FRFT payment request i get this error: "Company code CC1 is not permitted as the paying company code".
    Did you ever experience this? If so, how can i fix this?
    Thanks in advance.

    Dear subumax
    1.Please check once again in both company codes for FBZP. were you maintained in All Company codes in FBZP - Select your company code and check- were you maintained Paying company code.
    2.Pleasecheck in under Paying Company codes - were you maintained the paying company code CC1 or not
    3Please check in under Payment methods in comapny code were you maintained your paying company code code CC1 details or not 
    Regards
    Shankar

  • Problem Create ANE,ArgumentError: Error #3500: The extension context does not have a method with the name

    I little confuse about build ANE, I already follow all the direction, but the error always #3500 when I try to call the ANE.
    I create ANE using java android.
    The tools I use : Flash Builder running on Win-64 win.7. I think I must straight to the point, here what i made it first step by step;
    1. I create the JAVA application first, with package senigo.extension.android then I create 3 file, Sample.java, SampleContext.java, PassTextFunction.java
    Sample.Java Source Code
    package senigo.extension.android;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    public class Sample implements FREExtension {
      @Override
      public FREContext createContext(String arg0) {
      // TODO Auto-generated method stub
      Log.i("Sample", "createContext");
      return new SampleContext();
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Dispose");
      @Override
      public void initialize() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Initialize");
    SampleContext.Java Source Code
    package senigo.extension.android;
    import java.util.HashMap;
    import java.util.Map;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREFunction;
    public class SampleContext extends FREContext {
      public SampleContext()
      Log.i("SampleContext", "constructor");
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "dispose");
      @Override
      public Map<String, FREFunction> getFunctions() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "getFunctions");
      Map<String, FREFunction> functionMap = new HashMap<String, FREFunction>();
      functionMap.put("passText", new PassTextFunction());
      return functionMap;
    PassTextFunction.Java Source Code
    package senigo.extension.android;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    import com.adobe.fre.FREFunction;
    import com.adobe.fre.FREObject;
    public class PassTextFunction implements FREFunction {
      @Override
      public FREObject call(FREContext arg0, FREObject[] arg1) {
      // TODO Auto-generated method stub
      FREObject result = null;
      try{
      result =  FREObject.newObject("Hello World");
      }catch(Exception e)
      return result;
    after all the file I create the jar file using click right on the tree view >> Export >> Jar File >> Sample.Jar (i already create jar file that just contain the src folder and after i frustrated, i create .jar file contain all the whole project folder but still didn't work out).
    Ok, After that I create project Flex Library Project, That's contain the actionscript to call the native and the extension.xml, here the code.
    Test.as Source Code, FYI : i already create public function and the static function the error still same #3500.
    package senigo.extension.android
      import flash.external.ExtensionContext;
      public class test
      private static var extContext:ExtensionContext = null;
      public function test()
      trace ("Test Constructor");
      if (!extContext)
      initExtension();
      public static function get passText():String
      trace ("Test Pass Text");
      if (!extContext)
      initExtension();
      return extContext.call("passText") as String;
      private static function initExtension():void
      trace ("Vibration Constructor: Create an extension context");
      extContext = ExtensionContext.createExtensionContext("senigo.extension.android", null);
    extension.xml source code
    FYI: in Flex when i put the Native Extension, they said must have Windows-x86 so I already create 3 ANE, that just contain Android-ARM , Contain Android-ARM and Default, Contain Android-ARM,Default and Windows-x86 but the error still same. I didn't got it where is the error.
    <extension xmlns="http://ns.adobe.com/air/extension/3.1">
      <id>senigo.extension.android</id>
      <versionNumber>1.0.0</versionNumber>
      <platforms>
      <platform name="Android-ARM">
      <applicationDeployment>
      <nativeLibrary>Sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      <!-- <platform name="Windows-x86">
      <applicationDeployment>
      <nativeLibrary>sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      -->
       <platform name="default">
    <applicationDeployment/>
    </platform>
      </platforms>
    </extension>
    After I create it, I copy the .swc file and extension file sample with the Sample.jar file.
    I extract the .swc file, copy the library.swf to folder Android-ARM,Default,Windows-86 and I create build.bat that contain the command like this
    adt -package  -storetype PKCS12 -keystore senigo.p12 -storepass l10nk1ng -target ane senigo.extension.android.ane extension.xml -swc AndroidLib.swc -platform Android-ARM -C ./Android-ARM/ . -platform default -C ./default/ .
    the I put the ane to Flex mobile project that I created:
    I run it but got error #3500, I really confuse?? what's wrong with my code? is there something I wrong or I Miss it?
    Please any one help me.. and when is already ane file can I debug it in Flex Mobile Project? I wanna looks the log.i code that i wrote but i confuse how to looking up in flash builder.
    at the end, I wanna said Sorry if my english not very goods, and thanks, because wanna see my problem and thank you very much if You can gave me a solution's

    Alex Rekish wrote:
    Why you comment Windows-x86 in your extension.xml ?
    I think that is a problem. You launch your application on Windows but ANE haven't got Windows-x86 implementation (also you don't include it while packaging). So your application use default implementation. But default implementation don't use any native code and cannot use ExtensionContext. And you got error.
    If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation.
    Thanks for you answer Alex Rekish, Sorry I didn't screen shoot all about the extension.xml. I comment it because the latest ANE that I build is contain Android-ARM and default. so I commented. but I already try it using just ANE that's just contain Android-ARM, with Android-ARM and windows-x86,and Android-ARM, and default, and Android-ARM,default,Windows-x86 the error still the same.
    here the screen shoot, I embeded the ane that's i contain Windows-x86
    in action script test.as I didn't change it anythings, I just play it on extension.xml to build the ane. is there any mistake over there? I interact with your answer that "If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation." I didn't need to user ExtensionContext? is means? in the actionscript? or in extension.xml? can you explained

  • Why is my macbook DVD player no longer playing commercial DVD's that it used to play perfectly? It reads the disc, but then says not permitted when I hit play. It is much older than 12 months warantee so I hope there is an easy fix?

    The macbook reads a disc, and opens up DVD player but then says not permitted when I hit play, or any other button. Sometimes the initial music plays, but the screen remains black and then it all stops. These are shop bought DVD's that have previously worked on here, and work in DVD players, but have suddenly stopped. The computer is much older than the12 months warantee so I hope there is an easy fix? Thankyou!

    Three things you can try:
    1. Clean the superdrive with a proprietory CD/DVD lens cleaner that uses tiny brushes.
    2. Perform an SMC reset:
    Resetting the SMC (System Management Controller) on Intel-based Macs:
    http://support.apple.com/kb/ht3964  and
    http://support.apple.com/kb/HT1237?viewlocale=en_US
    Resetting your Mac's PRAM and NVRAM:
    http://support.apple.com/kb/ht1379
    If you are using a Wireless Keyboard:
    http://support.apple.com/kb/TS3273
    3. Try the free DVD player VLC:
    http://www.videolan.org/vlc/
    which performs better than the built-in DVD Player.

  • How long should I let Safe Mode startup run? I keep getting the "disk0s2 i/o error" message and I'm just not sure when to give up and try a different method. I already ran disk utility in Recovery Mode and it said there were no repairs needed.

    How long should I let Safe Mode startup run? I keep getting the "disk0s2 i/o error" message and I'm just not sure when to give up and try a different method. I already ran disk utility in Recovery Mode and it said there were no repairs needed but it still kept getting stuck on the apple loading screen.

    You have limited opportunity to attempt to create a backup of your created files.
    That is what the SafeBoot or safemode appears to allow you -- at the moment.
    Since the hard disk drive exhibits signs of failure or other major issues, plan
    on a replacement in the near future. You may be able to get the computer to
    start up in a regular full OS X (not safe mode) but consider its hours are limited.
    An externally enclosed hard disk drive (with own power supply, not relying on
    Mac ports to run it) is a good basic means of which to use a disk utility to make
    a copy or a Clone of the current OS X. This may help retrieve an archive that
    could be used along with a Time Machine backup, to restore your Mac once you
    get a new hard drive installed inside.
    Good luck & happy computing!

  • Installed itunes update 10.5.0.142 and now get the error message "Disc Burner or Software Not Found" when trying to burn playlist to disc.

    Installed itunes update 10.5.0.142 and now get the error message "Disc Burner or Software Not Found" when trying to burn playlist to disc.  Windows 7

    Hello queenabs,
    It sounds like you are trying to burn a playlist to a disc in iTunes, but you are getting the error, "disc burner or software not found."  I found a couple of resources that I think might help with an error like this.
    I recommend starting with the steps in this article:
    iTunes for Windows: Optical drive is no longer recognized, or "Disc burner or software not found" alert after install
    http://support.apple.com/kb/TS2308
    If you are still having trouble with burning a disc after following the steps in that article, I recommend following the steps in this article:
    iTunes for Windows: Additional troubleshooting tips for burning issues
    http://support.apple.com/kb/TS1374
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • My 10.6.8 macbook pro's DVD player won't play a movie from Netflix.  The DVD does play on a 10.5 mb pro.  So DVD is ok.  Message says "not permitted" when I click play.  Is there a compatibility issue? Or something else?

    My 10.6.8 macbook pro's DVD player won't play a movie from Netflix.  The DVD does play on a 10.5 mb pro.  So DVD is ok.  Message says "not permitted" when I click play.  Is there a compatibility issue? Or something else?

    Hello:
    This is not an area I have much experience in......I rarely insert DVDs and I have never had a similar problem.
    When the DVD is in the drive (and DVD players is open) click on File>get disk info.
    Barry

  • I receive the error "The Selected Color Format is not supported" when I try to scan from my HP Office Jet Pro 8610.

    I receive the error "The Selected Color Format is not supported" when I try to scan from my HP Office Jet Pro 8610 using Adobe Acrobat Pro 11. I recently purchased the printer. I believe I ame using all of the defaults. How can I correct the problem?

    Hi,
    Both printer and computer seem to be on same network.
    Please download and run the following utility to troubleshoot on the issue.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03275041&cc=us&dlc=en&jumpid=reg_r1002_usen_c-0...
    Also download and install the firmware update from the link below.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-89897-4&cc=us&dlc=en&lc=en&...
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • Error Message: This Apple ID has not yet been used with Itunes Store

    I set up Apple ID.  When I try to make purchase on Itunes Store, systems asks for Apple ID & Password.  When I enter, I receive Error Message:  This Apple ID has not yet been used with Itunes Store.  Options to click Review Account or Cancel.  When I click Review Account, it asks for my Apple ID & Password again and gives me the same Error Message.  How do I make a purchase?

    This isnt an error message as such, but it should give you the option to review and confirm your account details, which is necessary before you can use the account on that machine.

  • Error in /tmp/applianceagent/scripts/Database.sh: Start database  failed with exit code 2

    Hello
    I have set up the Demo appliance landscape for the openSAP course "Introduction to SAP Fiori UX", on AWS.
    The frontend machine is OK, but the configuration and startup of the server machine has failed for some reason. When logging in with ssh to the server, this message is presented:
    The Appliance Agent detected an error and terminated.
    When asked, please provide the file /tmp/applianceagent_20141002-145658.tar.bz2.
    Note that a restrictive iptables based firewall is still active.
    I have attached the file (had to add .txt to the name to circumvent file type restrictions).
    I noticed that the appliancedeploy.log ended with these lines:
    Start database  Execute /usr/sap/hostctrl/exe/sapcontrol -nr 02 -function StartWait 3600 20
    02.10.2014 13:56:58
    Start
    OK
    02.10.2014 14:56:58
    StartWait
    FAIL: Timeout
    error in /tmp/applianceagent/scripts/Database.sh: Start database  failed with exit code 2
    Notice the 1 hour jump in time, and then the timeout error message.
    Do any of you have any idea what could be causing this, and how to fix it?
    Please let me know if you need any further information.
    Best regards,
    Bo

    Hi Hannes.
    Trying to create and activate a new instance (version 5 of the Fiori appliance), I first got this message in the CAL instance overview list:
    Instance Operation Failed
    Operation Start failed on step Start start VAs with message: Start failed for VM SAP Server due to Amazon Web Services issue : AMAZON : The snapshot 'snap-c779ff64' does not exist.
    Then I terminated the instance and tried over again. And this time the deployment worked - I have a running server, which responds to the SAP GUI, and shows the Fiori web page.
    Thanks a lot for your quick help.
    Best regards,
    Bo

  • I can not register this product with the code supplied? [was:Photoshop]

    I can not register this product with the code supplied?

    Welcome to the forum.
    Along with Trevor's important questions, I have a few more, please:
    Did you buy Ps directly from Adobe (the Adobe Store), or from a certified reseller, such as directly from Amazon?
    Did you buy Ps with physical media, or as a download?
    If the former, did you get the S/N from the envelope that the media came in?
    If the latter, did you get the S/N directly via e-mail from Adobe?
    Do you get any error messages?
    If so, what is the exact text of each one?
    When you say "register," do you mean Activation, or actually registering with Adobe?
    Good luck,
    Hunt

  • CS3 Postscript fonts not visible when Installed with Suitcase 11.0 Vista Ult64

    CS3 Postscript fonts not visible when Installed with Suitcase 11.0 on Vista Ultimate 64bit.
    Truetype and Opentype work fine. I have searched through all the forums here multiple times, but not found a solution. The only workaround I found was to manually put the font files in c:/ProgramFiles(x86)/CommonFiles/Adobe/Fonts.
    When I put any font files in that folder, they show up in CS3 for use, but not in windows apps. I thought I would make a permanent work around by placing all of my uninstalled font files in that folder, then use suitcase to install them from there. That didn't work because EVERY font in that folder is available to CS3 and turned on. Do they get installed when you put them in there?? It didn't seem like they were installed, and windows apps didn't see them.
    These are workarounds anyway. My main goal is to have suitcase work so I can organize my fonts efficiently. Extensis blames the font and CS3. I have read that there are adobe issues with other font management software as well as suitcase. Any help would be appreciated.

    Got mine FIXED here is what i did:
    Windows 7 64bit SP1, CS 5
    Postscript fonts (comprising of *.pfb + *.pfm files) did not show up in any CS5 app, but showed OK in Word, Excel, Notepad etc.
    Tried  activating through Suitcase Fusion 2 and also through FontExpert 2009 -  but neither of them made the fonts visible in CS5 apps
    1) open Start Menu/Control Panel/Fonts
    2) on the sidebar there is "Font settings" item
    3) set the settings as i did
    [    ]  Hide fonts based on language settings
    [ x ]  Allow fonts to be installed using a shortcut (advanced)
    FIXED mine,
    now i can use Suitcase Fusion 2 to install any PFB/PFM fonts without any problems...
    PLEASE IF THIS WORKED FOR YOU TOO, LEAVE A MESSAGE HERE SO OTHERS KNOW IF THIS FIX IS 100% WORKING

  • Why am I not receiving e-mails with activation code for e-print ?

    why am I not receiving e-mails with activation code for e-print ???? Have requested resends of e-mail several times -- but nothing as yet 

    Hi yvonnek49,
    Welcome to the HP Support forums.  I understand that when trying to activate the HP ePrint app that you haven’t received the activation code.
    Which email address are you using to activate the app, your personal email or the printer’s ePrint email address?  If you have been using the printer’s ePrint email address, please try again with your personal email address.  If you have been using your personal email address, please check your junk/spam folders to see if it was redirected there.  It can take up to 24 hours to receive the email.  
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Changed Ulimits values for the Oracle user and getting error -bash: ulimit: max user processes: cannot modify limit: Operation not permitted when logging in.

    I'm trying to increate the ulimits for max user processes and open files for the oracle user.  I've set the values in limits.conf, /etc/profile and in oracle's environment scripts. Now when I log in as oracle I get the below errors. If I change the ulimits back to the original values errors go away but ulimits aren't changed.
    login as: oracle
    [email protected]'s password:
    Last login: Fri Mar  6 09:56:02 2015 from mtkadmin12
    You are logging onto an Oracle system.
    Kickstarted on: 2014-06-05
    -bash: ulimit: max user processes: cannot modify limit: Operation not permitted
    -bash: ulimit: max user processes: cannot modify limit: Operation not permitted
    [oracle@servername ~]$

    Thanks for the update.
    I modified the /etc/security/limits.d/90-nproc.conf and added a line for oracle and also modifed the oracle.sh file.  The ulimits are setting correctly when I su - oracle but they are still wrong when sshing in as oracle.
    [root@mtkdevorap11d-1 ~]# su - oracle
    [oracle@mtkdevorap11d-1 ~]$ ulimit -Ha
    core file size          (blocks, -c) unlimited
    data seg size           (kbytes, -d) unlimited
    scheduling priority             (-e) 0
    file size               (blocks, -f) unlimited
    pending signals                 (-i) 1030982
    max locked memory       (kbytes, -l) 94371840
    max memory size         (kbytes, -m) unlimited
    open files                      (-n) 65536
    pipe size            (512 bytes, -p) 8
    POSIX message queues     (bytes, -q) 819200
    real-time priority              (-r) 0
    stack size              (kbytes, -s) unlimited
    cpu time               (seconds, -t) unlimited
    max user processes              (-u) 16384
    virtual memory          (kbytes, -v) unlimited
    file locks                      (-x) unlimited
    [oracle@mtkdevorap11d-1 ~]$
    [oracle@mtkdevorap11d-2 ~]$ ssh mtkdevorap11d-1
    Last login: Mon Mar 16 13:04:16 2015 from mtkdevorap11d-2.conveydev.com
    You are logging onto an Oracle system.
    Kickstarted on: 2014-06-05
    [oracle@mtkdevorap11d-1 ~]$ ulimit -Ha
    core file size          (blocks, -c) unlimited
    data seg size           (kbytes, -d) unlimited
    scheduling priority             (-e) 0
    file size               (blocks, -f) unlimited
    pending signals                 (-i) 1030982
    max locked memory       (kbytes, -l) 64
    max memory size         (kbytes, -m) unlimited
    open files                      (-n) 4096
    pipe size            (512 bytes, -p) 8
    POSIX message queues     (bytes, -q) 819200
    real-time priority              (-r) 0
    stack size              (kbytes, -s) unlimited
    cpu time               (seconds, -t) unlimited
    max user processes              (-u) 16384
    virtual memory          (kbytes, -v) unlimited
    file locks                      (-x) unlimited
    [oracle@mtkdevorap11d-1 ~]$

Maybe you are looking for

  • Iphone 4 doesn't turn on help me please couldn't fix it

    Well about 1 year and Iam already trying to fix it doing every thing is possible but nothing...here here is my problem with iphone : it stopped working and it just wont turn on and gave me all errors in itunes i saw alot of errors frist in itunes gav

  • Adobe Bridge CS4

    I have MacBook Pro(10.6.2) and recently I upload Adobe Master Collection CS4. The problem is when I switch on my computer and if Adobe Bridge CS4 is in dock it's starting for an activated automatically (bounce off on the dock) when I quit Adobe Bridg

  • "A connection already exists..."

    Hello, I just moved into the dorms at my college last Thursday and am having problems with my iChat. I very rarely use AIM or anything like that but I started using it at the dorms to stay connected with others. However, two days ago it started givin

  • Acrobat is not letting me combine files anymore. It says an error has occured while converting. Why

    When I try to combine my files, acrobat starts to get the files ready and then it shows that it has failed because of some error occurring. I even tried to combine files I have combined before and the same has happened to them, so I know that it is a

  • Can't remove an application folder in Places

    I have an application folder in places but I can't figure out what application it is. It just says "navigator.app". When I click on it (to try to click and drag it), I get a message that says "navigator.app" has no volume. How do I get rid of it if I