FI_TAX_GET_TXJCD_LEVELS error when trying to release billing document.

We are in the process of converting from non-jurisdiction sales tax  to jurisdiction sales tax procedure.  I have setup our sandbox with the new jurisdiction procedure TAXUSJ and corresponding pricing procedure.  So far things are looking pretty good... however.  When the user tries to do a release on a billing document, it won't complete and the log shows the error:
System error in routine FI_TAX_GET_TXJCD_LEVELS error code 2 function builder TAX2
I have looked through SAP Notes and found references to this in regards to CRM.  We don't use CRM.
I have added jurisdiction codes to the company code and business partners (customers), also sales offices and plant.  I have setup the tax codes and the UTXJ condition type with the standard:
UTXJ 0 0 O0
UTXJ 0 1 O0
UTXJ 1 0 O0
UTXJ 1 1 O1
In the previous config, using TAXUS (non-jurisdiction) each of the sales offices was given a tax code, and that is what was used for sale tax.  So there are existing (and this is where the release issue arises) documents that use these codes (HQ, SE, NE, SP, etc) rather then O1.  Could this have something to do with the error? 
Document created in the new jurisdiction config can be released without a problem.  It is just occuring with documents created previous to the conversion.
What have I missed in config? 
Thanks for any info that may help shed light on this.  This is the last stumbling block to converting to the jurisdiction sales tax and we need to get it resolved as soon as possible.
Laurie McGinley

Briefly, for the document that needs to be released, and is getting the 'can't find tax code' error in the notes.
Correct values for TXJCD, TXJDP and TXJLV need to be added to the oringal document records that is to be released, tables: BSEG  BSET KNOV and VBRP.  In addition look into table KNOV for the field KNTYP.  We had to address the KNTYP field in KONV because it stored the code for the previous taxing procedure, which cant be found in the current one.  Changing it to the equivalent code for the current taxing proceudure worked.
I capture all the record pre and post change information for each of the changed records should there be a need to go back.  But so far it seems to be working.  Tho some of the notes indicate the need to add txjcd data to existing records to fix a similar problem, we needed to go a step further and modify records in 2 additional table.
Again.  We went from non-jurisdiction method where no jurisdictional information was captured to jurisdictional sales tax.  And the issue is around reversing documents that were originally created in the previous taxing procedure.

Similar Messages

  • Error when trying to release the billing document to FI accounting

    Hello,
    when we are trying to release the document to accounting, we get the error :
    "The tax amount must not be greater than the tax base"
    Could you, please, let me know what should be checked, as customer is saying all data is correct
    thanks in advance for your precisous help
    regards
    Hana

    Hi Hana,
    There is a note exist for this error.
    Please look into it, it will help you to resolve the issue.
    Note 606342 - Tax amount is larger than tax base
    Hope this helps,
    Regards,
    MT

  • Got errors when trying to open word document with Office Web App Server and customized WOPI host

    I am configuring the Office Web App Server with our ASP.NET MVC WOPI host based on this example. https://code.msdn.microsoft.com/office/Building-an-Office-Web-f98650d6. While both the OWA server and WOPI server has been set up and I can use Excel and PowerPoint
    app to open and edit xls and ppt file now, there are problems opening word documents no matter I enable or disable the editing function of OWA server.
    When I open a word document while enabling editing I got this error:
    If I disable editing I got this message:
    I have tried several file so I thought it is not the files' problem. Also I didn't find any exception in the log of OWA server. 

    Hi Gary Jiang,
    Thanks for posting in MSDN forum.
    This forum is for developers discussing issues about
    apps for Office.
    Based on the description, it seems that you got an issue when you deploy the code sample. If I understood clearly, I suggest that you contact the author of the code sample from the "Q and A" tab.
    Also if you have the question about WOPI, I suggest that you get more effective response from
    Office
    Protocols forum.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error in VF02 while releasing Billing Document to Accounting

    Hi,
    I am  getting the below error while releasing the billing document to Accounting.Kindly help me in solving the below error.it would be a great help to me.
    Error Message is-
    System error in routine FI_TAX_GET_TAXJCD_LEVELS error code 2 function builder TAX2
    Please do the need ful
    Thanks
    Supriya

    Hi Supriya,
    This is tax jurisdiction error. We assign tax juridiction at three levels
    We give the tax jurisdiction at the time plant definition-Plant level
    We maintain at VK11 t.code SD
    Spro-FA-FA GL-Tax on sales or purchases-define tax jurisdiction-FI Level
    May be you given the tax jurisdiction code at VK11 and you have to give that at FI level also
    Regards
    Surya

  • Error when trying to serve out documents from webserver

    Hi, I have weblogic 5.1 installed and when trying to access documents from
    the web browser, I get the following page:
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    Anyone seen this before and know how to fix?
    Gene Kim

     

  • Error when trying to release NSDate in class

    Hello,
    Like a lot of folks here I am pretty new to this language, so I am just going to jump into it. Basically I have a very simple class that takes a NSDate object in a custom init method. Below is the code...
    #import <Cocoa/Cocoa.h>
    @interface DateTesting : NSObject {
    NSDate *theDate;
    @property (copy, nonatomic) NSDate *theDate;
    -(id) initWithDate: (NSDate *) aDate;
    -(void) print;
    -(void) dealloc;
    @end
    #import "DateTesting.h"
    @implementation DateTesting
    @synthesize theDate;
    -(id) initWithDate: (NSDate *) aDate
    [[self init]];
    if (self)
    theDate = [[[NSDate alloc] init]];
    theDate = aDate;
    return self;
    -(void) print
    NSDateFormatter *dFormatter = [[[NSDateFormatter alloc] init]];
    [[dFormatter setDateFormat: @"MM/dd/yyyy"]];
    NSLog(@"%@", [[dFormatter stringFromDate: theDate]]);
    -(void) dealloc
    [[theDate release]]; //this is where the problem comes in if I comment out no error
    [[super dealloc]];
    @end
    and finally the main app...
    int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[[NSAutoreleasePool alloc] init]];
    NSDateFormatter *tempFormatter = [[[NSDateFormatter alloc] init]];
    [[tempFormatter setDateFormat: @"MM/dd/yyyy"]];
    DateTesting *myDate = [[[DateTesting alloc] initWithDate: [tempFormatter dateFromString: @"01/15/2001"]]];
    [[myDate print]];
    [[myDate release]];
    [[pool drain]];
    return 0;
    As you can see this is a very simple app, just takes a date as a string, converts to a date object and prints it out. Everything works ok until I try and release "theDate" object in the class, if I comment it out then it exits w/out any problem. I have a feeling that it is because the date that is being passed into the initWithDate method is not being copied and so when I am trying to release it... I am kind of confused as to what I am doing wrong or how to fix. I have searched and tried to read the documentation but either I am missing it or way off. If someone could help shed some light on my issue I would be grateful.
    Thanks
    Patrick

    Here's your problem ...
    theDate = [[NSDate alloc] init];
    theDate = aDate;
    You created theDate, then you immediately threw it away and re-assigned it to aDate. So theDate and aDate point to the same place. The problem is, aDate is autoreleased already (it came from NSDateFormatter and is auto-released). When you later released it it was double released.
    I highly recommend you avoid anything to do with properties for now (in fact you never used it) until you get this stuff down. You should have a look at the basics ..
    http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt. html
    Hope this helps.
    Eric

  • Getting error when tried to learn the documents in OFR Designer

    Hi All,
    As per project requirements, I have to create Classification and Verification LearnSets in Oracle Form Recognition Designer depending on three Invoice Types-- PO,Non-PO and Pre-Approved.
    First I created three derived classes under Generic Class -- PO,Non-PO and Pre-Approved.
    I can add documents in Classification and Extraction LearnSet, analyze them, but getting error when click on the Learn button, I couldn't make the engine ready in learned state from the Definition Mode.
    Always getting the below two errors:-
    1) Cannot compile. May be not enough classes defined or too few documents assigned to the classes.
    Cannot learn the BrainwareView : DefaultView
    SERbrainware : Learn, learning error (7)
    2) Cannot compile. May be not enough classes defined or too few documents assigned to the classes.
    Cannot create Brainware Dictionary for BrainwareView : DefaultView
    SERbrainware : Create/AppendDictionary, preprocessing error (3)
    Thanks in advance,
    Moumi.

    Hi All,
    The below mentioned error were resolved after adding documents in Void Class.
    Thanks,
    Moumi.
    Edited by: 903667 on Jan 31, 2013 8:34 PM

  • RH8 evaluation - Server Busy error when trying to import Word document

    Hi,
    I downloaded RH8 trial version. When I try to import a Word document (that RH7 imports with no problem", I get a
    This action cannot be completed because the other program is busy. Choose 'Switch To' error message.
    It opens the Windows start menu but I can't really switch to anything.
    The Word file is not open.
    I asked someone else to download and try the same thing and they got the same result.
    Any idea how to solve this problem?
    Is there a patch that fixes it? Known problems with specific features in Word?
    Thanks.

    Hi Gary Jiang,
    Thanks for posting in MSDN forum.
    This forum is for developers discussing issues about
    apps for Office.
    Based on the description, it seems that you got an issue when you deploy the code sample. If I understood clearly, I suggest that you contact the author of the code sample from the "Q and A" tab.
    Also if you have the question about WOPI, I suggest that you get more effective response from
    Office
    Protocols forum.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Getting an "uncaught exception" error when trying to Scan a document via D-Link DPR-1260 print sever (worked in prior versions of Firefox)

    I'm using the interface (Firmware V1.24) on a D-Link DPR-1260 Print Server, connected to an Epson Printer/Scanner. When I hit the "Scan" button, I get an "uncaught exception" error. This firmware has been working for years (at least back to Firefox 3.x), but no longer works with Firefox V6.0

    Nothing really, but... The firmware runs in a web browser. It's been working fine for years and no longer works since I got the latest version of Firefox. It does, however, still work in IE (V9) so I do have a way to use my existing hardware.
    I tried D-Link and Google search for any information about this, but came up empty. I was hoping that there might be similar problems with other software with Firefox 6.0.2 and someone might have a work-around or there might be a patch coming soon. At the very least, someone associated with Firefox might be interested that they've apparently broken something that used to work.

  • Invalid Credit Card Error when trying to change billing method (CC) for Adobe CC Subscription

    It is not a card or browser issue. I will not call USA from BR. What is the alternative?

    Hi daevemancreative,
    Please refer the kb: http://helpx.adobe.com/x-productkb/policy-pricing/membership-subscription-troubleshooting- creative-cloud.html and contact our chat support in case of further issue.
    Regards,
    Romit Sinha

  • Cost Center Error while releasing Billing document to Accounting

    Hi SAP Gurus,
    Our user raised an issue that when he had released billing document to accounting, the system threw error message
    "Cost center xxxx (CO area)/xxxx(Cost center) does not exist on date 11/16/2011". Message No. KI 222.
    But the cost center xxxx does not exist in the system at all. The user does not want to create the cost center eirther. Cost center was not entered in Sales order, Delivery and Billing. I have checked 'Default account assignement' (OKB9) settings, Default account assignment in cost element master record and assignment of cost center to sales organization (OVF3). But cost center xxxx was not configured in the above settings. I have checked validations/substitutions, user exits and BAPIs, there is nothing specific to the cost center. This is not a cross-company code scenario. I have made field status to optional for cost center. But still the problem persists. Accounting document did not get generated because of the above mentioned error message. User applied SAP notes 315350. But it did not resolve the issue.
    Would anyone let me know 'why the system showed the cost center xxxx that does not exist, while releasing the billing document to accounting'?
    Thanks in advance.
    Best Regards,
    K.S.K

    Hi Friend,
    I think this link help for you
    Cost center XXXX does not exist on 15.09.2010.
    or check the OVF3

  • Error:-Release Billing document to accounting

    Hi Guru's,
    While i am trying to Release Billing document to accounting   i am getting following Error"Insufficient authorization for sales document"
    What could be the issue ..Also in Billing document Header Posting Status is K Accounting document not created (No Authorization).
    Can anyone help PLEASE?
    Regards
    Vikrant M Kelkar

    Hi VIkrant
    As you were getting error so kindly check in VOFA of your billing document type .Check the accounting document feild and also check wheather any statistics has been changed
    Go to VA02 and check wheather order is blocked or not
    check wheather you have maintained Credit management for that customer or not .If you have maintained then check in FD32 wheather you have assigned any authorization or not
    Regards
    Srinath

  • Having problem to release billing document to accounting

    trying to release billing document to accounting but it is not permitting to release showing error " Reversal of document compay code xxxxxxxx document no xxxxxxxx 2010 v3 not possible in FI"
    Diagnosis
    Item & v4 in accounting document CC Document No Fiscal year
    was valuated with an open item foreign currency valuation.
    System Response
    Document cannot be reversed.

    Hi,
    Please check if on the original FI document, screen field BSEG-BDIFF is filled with a value.
    If yes, this is because a valuation of foreign currencies has run already (see program SAPF100 and Documentation please for further info). To successfully reverse your document, this valuation run needs to be reversed first.
    Please check note 545032  FAQ: SAPF100 Reversing "Balance Sheet Prep." Valuation Runs to assist you.
    Important: Only include the one document that you want to cancel in the reversal of SAPF100.
    See also note 339928 for your information.
    Best Regards,
    Vanessa.

  • Error at Releasing Billing Document

    Hi
    When trying to release a Billing Document to Accounting, i am getting the following error
    System error: Default TXJCD is not filled in the table T001
    Message no. FF799
    can anyone please guide me
    Rukshana

    Execute T Code OBCL and specify a tax jurisdiction code for your company code.

  • VF02 error in Release Billing document to Accounting document

    Hello SAP Folks,
    A sales order (VA01) and corresponding billing document has been posted (in VF01). When I try to release the billing document to Accounting, an error "Incorrect document no. XXXXXXXX.  Select the document number between yyyyyyyyy and zzzzzzzzzzzzzz " shows up. When I tried to find error through VFX3, it says, Release incomplete due to "FI/CO interface" Can anyone suggest the missing configuration.
    PS:  I checked the doc. type RV (Billing doc. transfer) and Billing type F2. They are in different number ranges. and RV is marked external. The number range settings are similar as that of another Company code (where we are able to release billing document to accounting document).
    Thanks in advance,
    Narayanan

    Hi,
    Thanks for your suggestions. The issue is resolved by changing the number range for RV document type (though it is still external). I guess this is made external since the Billing document number is passed to FI document number when it is released to Accounting documet.
    After the release, both Invoice and Accounting document have the same no.

Maybe you are looking for

  • "error in the Microsoft Word previewer"

    Is there an MS fix for "error in the Microsoft Word previewer"?  Can't open any Word document.

  • This code doesn't run

    This code doesn't pass run time. Can you please help me. * Copyright (c) 2004 David Flanagan.  All rights reserved. * This code is from the book Java Examples in a Nutshell, 3nd Edition. * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed o

  • Need UNLOCK CODE to Photoshop Album Starter 3.2

    Folks, you holding all my photos hostage. How do I unlock Adobe Photoshop Album Starter Editiion 3.2? How do I get  around the registration page that pops up when I go to the photoshop.  The page will not let me by to try any thing. Can't you just se

  • Add Password to Shell Script for ssh

    Hi I'm trying to avoid creating ssh keys for this I was hoping to write it all in to applescript. This is what I have. I've done lots of searches, but not quite getting the right outcome. Matt set ShellS to "rsync -aE --progress --delete --exclude=\"

  • Ticks like a grandfather clock?

    When I went to start up my iBook G4 this evening I heard clicking, much like that of a grandfather clock. It wouldn't start up, but a gray screen appeared with folder icon in the center of it. This folder icon alternates flashing between a question m