Jurisdiction code error message in MIRO

Hi,
I have hidden a field "Smart Number" in all the layouts available in MIRO transaction as this field was not wanted in MIRO. Now I am trying to post an invoice verification for a scheduling agreement using the screen layout "9_6310 Purchase Order - Entry Sheet" in MIRO. System throws me an error message "Enter Jurisdiction Code". If I change the layout to "2_6310 Purchase Order - Delivery Note", system does not throw me any error. Does this error message appears because I made the "Smart Number" field hidden in screen layout configuration?
I have attached the screenshot of the error message.
Please suggest.
Thanks
Sat

Hi,
1st check plant available in your your PO for which you are doing MIRO.
Use t.code:OX10 and check jurisdiction code is assigned to your plant or not, if not assign it and save.
Now try MIRO for that PO.
Also cross check did you assign tax code(input tax code,you have in MIRO)  with jurisdiction code to your company code in t.code: OBCL
Regards,
Biju K

Similar Messages

  • Tax code V0 does not exist for jurisdiction code IN00 Message no. FF718

    Hi,
    i have configured as per suggestion in message as well as assign Jurisidiction code in taxcode in FTXP, but when i try to create PO with tax code V0 and jurisdiction code IN00 then we are facing error "Tax code V0 does not exist for jurisdiction code IN00 Message no. FF718"
    please advice me and help to resolve this issue is any config missing pls guide me.
    Thanks
    Best regards
    Shital D

    Please check this answered link:
    Juristiction code - Error: FF718
    Cost centre
    Edited by: Afshad Irani on Jun 22, 2010 7:05 PM

  • ORDERS05 - EDI jurisdiction code error

    Hello Experts,
    Idoc type - ORDERS05
    When ship-to segment (E1EDKA1) does not carry a value in field "ORT02" (district / county), the system throws a "could not determine jurisdiction code" error and fails, even though city and zipcode are passed. But when you manually create an order with zip and city, SAP communicates with vertex to get the correct county and jurisdiction code.
    I would assume EDI would go through the same routine too. Any thoughts?
    UV

    Hi,
      which process code you are using for ORDERS05?

  • Error message in MIRO entry: Message no M8285

    During the Invoice verification entry (MIRO), for a USD invoice (Company code currency is INR), I am getting the following error message "Balance in USD Currency Type 10" Message no M8285
    The document is successfully getting stimulated in USD currency but when attempted to post, this message is displayed
    During invoice entry, the system is taking the exchange rate maintained in OB08 for the posting date. Any clue to the cause of the problem?

    HI,
    search SAPNET notes using "MIRO" and "M8285" as search terms. There are some notes, check especially 1319322.
    Best regards, Christian

  • Error message in MIRO

    Hi Masters of MIRO,
    I have REQUIRMENT where i have to display an ERROR message.
    currently IF company code, Ref NO & Inv Date alreday exists it issues an error message.
    Check if invoice already entered under accounting doc. no. 5100000010 2011
    Message no. M8108
    now i want add another field called AMOUNT to Company code, Ref NO & Inv Date
    IF 4 OF THEM exists THEN only an ERROR message should COME.
    how can i achieve this...is their any USEREXIT or BADI where by we can enhance.
    much appriciated in advance.
    thank you,
    pasala.

    Hi
    Ok now I've understood what u need
    The problem is SAP standard check the duplicated invoice for Company Code, doc. date and doc. reference so just as your actual situation; if  it's not set the control for reference, then SAP will use the amount.
    That means standard control doesn't use Company code, Document Date, Reference and Amount together.
    In the FM MRM_FI_DOCUMENT_CHECK is called the BTE for Argentin only, that any BTE is available there
    Moreover the problem is your control is more selective than SAP one, that mean u should deactive the standard control and insert a your own one.
    U can try to use the BTE for invoice checking as 00001020, 00001025 or 00001060
    But it could be very dangerous to deactive in standard control, so u should consider to change (or enhance) the standard function module MRM_FI_DOCUMENT_CHECK
    Max

  • Tax code error - Message no. F5 113

    Dear Team,
    I am facing an error message while changing the tax rate for specific country. The entry was already existing and only the rate was changed.
    When trying to post an invoice the error message appears:
    Acct determination not defined for trans. OFF in chart of accts GROC
    Message no. F5 113
    Diagnosis
    An automatic posting cannot be created because the account determination for transaction OFF with keys is not defined in chart of accounts GROC.
    What could be missing since the original tax rate works and this one is failing?
    Any help is welcome
    Regards

    Hi,
    Please check the following in your customising.
    1) OBXL : Financial Accounting>Accounts Recievable and accounts payable>
    business transactions>incomming payments>payment recp global settings>
    overpayment/underpayment>Define accounts for payment differences.
    2) In your G/L Account, the field status for REASON CODES should be set
       to optional.  Do not suppress this field.
    3) The customer must be assigned to a Tolerance Group in master record.
    Also you should customize the accounts
    that should be used by the clearing program in the following path:
    Financial Accounting -> Accounts Receivable and Accounts Payable
       -> Business Transactions -> Outgoing Payments -> Manual Outgoing
       Payments -> Overpayment/Underpayment
         -> Define Reason Codes (Manual Outgoing Payments)
         -> Define Accounts for Payment Differences(Manual Outgoing Payment)
    You have to define the accounts for reason code ' ' (space).
    fbkp: automatic postings-> Cash discount and payment differences
    -> stk-> CoA
    Also check note 5693.
    Kind Regards,
    Fernando Evangelista

  • Java - Axis2: How to get an error code / error message from the Javascript via SOAP

    Hi
    In our Java applicsation we call a Javascript in a Indesign CS Server using the following code:
    --- SNIP BEGIN ---
    // calls the remote service on the indesign server
    try {
    // create service
    ServiceStub oIndsgnSrvStub = new
    ServiceStub(sIndesignServer);
    // create service parameter
    ServiceStub.RunScriptParameters
    oIndsgnSrvRSParams = new ServiceStub.RunScriptParameters();
    // create arguments with source- and target-file for parameter
    ServiceStub.IDSPScriptArg[] oIndsgnSrvSArgs = new ServiceStub.IDSPScriptArg[2];
    oIndsgnSrvSArgs[0] = new
    ServiceStub.IDSPScriptArg();
    oIndsgnSrvSArgs[0].setName("xml-input");
    oIndsgnSrvSArgs[0].setValue(sSourceFile);
    oIndsgnSrvSArgs[1] = new
    ServiceStub.IDSPScriptArg();
    oIndsgnSrvSArgs[1].setName("output-file");
    oIndsgnSrvSArgs[1].setValue(sTargetFile);
    // define service parameter
    oIndsgnSrvRSParams.setScriptArgs(oIndsgnSrvSArgs);
    oIndsgnSrvRSParams.setScriptFile(sScriptFile);
    oIndsgnSrvRSParams.setScriptLanguage("javascript");
    oIndsgnSrvRSParams.setScriptText("");
    // create runscript
    ServiceStub.RunScript oIndsgnSrvRS = new ServiceStub.RunScript();
    // set parameter
    oIndsgnSrvRS.setRunScriptParameters(oIndsgnSrvRSParams);
    //$$$ there should be an answer returned by the InddSrvr
    // execute SOAP call
    ServiceStub.RunScriptResult oIndsgnSrvRes = oIndsgnSrvStub.RunScript(oIndsgnSrvRS);
    if(oIndsgnSrvRes.getErrorNumber() == 0) {
    oServerProdJob.setProdState(CBP_Constant.REMOTEPRODUCTIONSTATE_SUCCESS);
    bOK = true;
    } else {
    oServerProdJob.setProdState(CBP_Constant.REMOTEPRODUCTIONSTATE_FAILURE);
    bOK = false;
    //$$$ should be set, if there is something returned by inddsrvr
    //oServerProdJob.setErrorMsg(sErrorMsg);
    } catch(Exception e) {
    sError += e.getMessage() + "\n";
    bOK = false;
    --- SNIP END -----
    The problem is that we don't get the error code and/or the error message from the Javascript in oIndsgnSrvRes. The error code is always 0 if I set an Integer value as return in the Javascript. If I set a String, there is an Exception in the Java application.
    Here is the Java script we use:
    --- SNIP BEGIN ---
    main();
    main()
    var sError = "";
    var sXMLInput = "";
    var sLayoutPath = "";
    // get the SDKCodeSnippetRunner object
    var cbpAdapter = app.cbpCbpadapterObject
    if (cbpAdapter) {
    sXMLInput=app.scriptArgs.get("xml-input");
    sLayoutOutputFile=app.scriptArgs.get("output-file");
    sError = cbpAdapter.doProcess(sXMLInput, sLayoutOutputFile);
    return sError; // This give an Exception; if I return an Integer the ScriptResult is always 0
    --- SNIP END -----
    If I try this with the test application from Adobe I get the error code correctly. But in the Java application, using SOAP, I can't get the error code.
    What could be wrong?
    Any ideas?
    Thanks a lot for the support.
    Kind regards
    Hans

    user11340104 wrote:
    Hello -
    i am calling sqlplus from a bash shell script. If the sql statement generates an error, how can I return that error code (unsuccessful) back to the bash shell?
    Well, let google be your friend,
    http://www.google.co.in/search?rlz=1C1GGLS_enIN327IN327&sourceid=chrome&ie=UTF-8&q=sqlplus+error+codes
    There are many threads I guess talking about the same issue.
    HTH
    Aman....

  • Make error message for MIRO

    Dear All
    I have a PO, and then the PO is created GR (MIGO-GR; 101). so that stock into the Quality inspect of Stock type.
    I want any error messages when I do invoicing process (MIRO), because the quality process still not finished
    Would you please help me
    thanks
    imron

    Hi,
    Check this Links
    Re: QM related to MIRO
    and
    How Payment can be blocked if Usage Decision(Quality) not done

  • Unable to download "source code" error message (on a Mac, this is not happening in safari so it seems to be a firefox problem)

    Just in the last 24 hours I'm not able to download using Firefox for Yahoo mail. Tried it on Safari and it worked, but prefer Firefox as browser. I'm on a MacBook Pro. The message I get is:
    "....part could not be saved, because the source file could not be read.
    Try again later, or contact the server administrator."

    I've had this problem for 3 years. And I can see that questions were posted by others in 2006. The only answer that works for me is to ignore the Firefox error message. Save the document from downloads onto my desktop. Change the .ashx ending to .pdf and confirm that. Then it opens in Preview.
    Neither the Shockwave nor the Adobe tricks work on my mac.
    How come Firefox can has not dealt with this error 4 years on and more "modernising" websites use this format? Please?

  • How to find code responsible  Error Message generated in MIRO transaction

    Hi Gurus,
                    I have to find the code responsible for generating ERROR message in Miro tcode through DEBUGGING. Let me tell you the case...................
    In MIRO,
    We input
    In Basic data tab,
    Invoice Date,
    Posting Date,
    Reference,
    PO no. &
    Tax code as V5 ( VAT @ 8% )  in item data  & then
    In Details tab,
    We enter Business Area    & then
    In Payment Tab
    Baseline date        & then
    In Basic data tab
    We check the check box for Calculate tax &
    entered Amount     & then click entered .
    It displays GREEN button.
    When we click Simulate button & click post then it shows 1 message that " Invoice document still contains messages .".
    And then if we click Messages Button it shows " MSG No. & text -  Enter Bussiness area ."
    So the problem is though we input Business Area , still it shows message Enter Business area.
    So plz tell me how to find that code responsible for error message.

    Ashish- It is because, the error message is called using function module / BAPI. But Ideally when a developer codes to populate the structure of type BAPIRET2, he.she should also follow the following rule, to make the message traceable:
    "Populate BAPI structure for error message
    "Following code will not get called, but is for documentation for traceability.
    if 1 = 2.
      message e004.
    endif.
    That is why i said in my comment, if it is "coded properly" then we will be able trace
    Bottom line: you will not be able to find the program line using this approach.
    But now since you now the error message and number, you can go to the underlying program of MIRO (SAPLMR1M and SAPLFDCB)..click on the find button on the application toolbar, enter the message# and find..PLEASE SELECT THE RADIO BUTTON "In the main program".
    Hope this helps.
    Sajan Joseph.

  • Po check error (Jurisdiction code could not be determined)

    Hello everybody.
    I am in SRM 5.0 and in Brazil we use jurisdiction code too, all notes for jurisdiction codes are applied and the calculation is occurring in R/3 in the moment of Po creations, the problem is that when the po are created and I need to display and check the PO the system displays an error message " JURISDICTION CODE COULD NOT BE DETERMINED"  and aproval can't be done too.
    Someone that uses jurisdiction code knows what could be done to solve.
    Thanks
    Nilson

    Hi
    <u>Please go through the following links -></u>
    Jurisdiction code could not be determined  - ECS
    Re: Jurisdiction code could not be determined ?
    Re: Tax jurisdiction in R/3
    Jurisdiction code could not be determined
    SUS - Jurisdiction Code not determined
    Re: Tax code T1 does not exist for jurisdiction code error in shopping basket
    Re: You are not allowed to enter a tax jurisdiction code for country US  msg
    Re: Tax Jurisdiction Error in SRM
    Tax error while posting an invoice in SRM
    Tax setting in Extended Classic Scenario
    You are not allowed to enter a tax jurisdiction code for country US
    Hope this will help.
    Regards
    - Atul

  • How can I find error message according to DAC etl task error code?

    Hi all,
    I run the DAetl tasks accroding to the BI APPS installation guide for Financials - Receivables.
    While I found some task result in errors and restart the run can't resolve them.
    I looked at the error tasks and found in the task detail page some index creating step got error. It indicated error code 1542, howerver I can't find any valueable error message.
    Is't a dac error code or informatica error code? where is the document that list all the error code,error message, root cause and solutions?
    Thanks & Regards,
    Scott
    Edited by: Typhoon on Jun 30, 2009 11:21 AM
    Edited by: Typhoon on Jun 30, 2009 11:37 AM

    Hi
    First try to run the workflow of that mapping individually by hardcoding the parameter values........and running through Informatica monitor itself.......later you can revert the changes.......In this way you can findout whether there is some problem in Informatica mapping or DAC configuration....If the problem is at Informatica mapping I think you need to change the session property for target as "Normal" Instead of "Bulk"(because you have indexes being created for the target which would be set record wise.....). Hope this helps
    With Regards
    Ven
    Edited by: user11254581 on Jun 29, 2009 10:58 PM

  • BADI or Userexit for MIRO and FB60 for displaying an error message

    Hello,
    Could you please let me know the BADI or User Exit validation Bank House field and displaying an error message in MIRO and FB60?
    Thanks,
    Md

    Hi,
    you can try with badi MRM_HEADER_CHECK.
    in method HEADERDATA_CHECK you can do something like:
    IF sy-tcode = 'FB60' OR sy-tcode = 'MIRO'.
      IF I_RBKPV-HBKID = 'WHATEVER'.
    * for the message in MIRO you can use this fm
        DATA: gt_errtab0    TYPE TABLE OF mrm_errprot,
              gs_errtab0    TYPE mrm_errprot.
                CLEAR gs_errtab0.
                gs_errtab0-msgty = 'E'.
                gs_errtab0-msgid = 'ZXX'.
                gs_errtab0-msgno = '030'.
                gs_errtab0-source = 'Q'.
                APPEND gs_errtab0 TO gt_errtab0.
                CALL FUNCTION 'MRM_PROT_FILL'
                  TABLES
                    t_errprot = gt_errtab0.
      ENDIF.
    ENDIF.
    Best regards.

  • Tax code V0 does not exist for jurisdiction code IN00

    hi mm
    when i am creating a purchase order
    After creating the PO
    when i go to invoice and enter tax code V0 and jurisdiction code i face the error
    Tax code V0 does not exist for jurisdiction code IN00
    Message no. FF718
    Diagnosis
    You have entered tax codes and jurisdiction codes in the G/L account items. The amounts of these items are used as the tax base to check the tax amounts you have entered or to determine the taxes. The system has now determined that one or more of the "tax code / jurisdiction code" combinations do not exist in Customizing.
    System Response
    Calculation of the taxes or checking of the taxes entered had to be terminated.
    Procedure
    Check the tax codes and the jurisdiction codes in the G/L account items or asset items. If these are correct, inform your system administrator.
    Procedure for System Administration
    Change the tax jurisdictions you specified in Customizing under Financial Accounting -> Financial Accounting Global settings -> Tax on Sales/Purchases -> Basic Settings -> Define Tax Jurisdictions
    i have dne as per thr need in define Define Tax Jurisdictions
    then also i am facing same error
    Regards
    Vinit

    Hi Vinith,
    After maintaining the tax jurisdictions maintain/create the tax codes. Pls ensure tht created tax codes having field of jurisdictions code.
    You created tax codes after tht you defined tax jurisdiction codes then you will get this kind of errors
    Hope its clear still if u hve questions let me know.
    reg
    Durga
    *assign points if the the info is useful

  • Error message in SAP Travel Management

    Hi alll,
    I am trying to change an address in PRMD tx code
    Error message:  Enter a house number
    Also it is not possible to change existing addresses as the same error comes up.
    I also tried in other company codes and there it seem to work fine so the issue might only be for company code 0376
    Could you please let me know if there is any restrictions from the field u201Cstreet and house numberu201D so that it can be entered and changed as free form text?
    Thanks for your help!
    It is SAP 6.0

    Are you sure you mean PRMD?  This is the T-code to update HR master data and is not related to travel management!
    Did you mean PRAA perhaps if you were trying to update master data from HR to vendor as there are some known issues around the structure of the PRAA report and house number and address (see the notes 570023 and 663350)
    cheers
    Sally

Maybe you are looking for

  • How to make only part of a PDF document editable?

    I'm looking to see if there is a way to make only part of a PDF document editable. My problem is, I have pieces of collateral that some of our channel partners need to be able to add their logo to and then edit the contact information on them, but we

  • HT4906 phone/photo syncing issues

    My phone was automatically syncing.   As part of step 8, photos from mac transferred to my phone. How do I undo this ridiculousness?

  • Licencing Office 365 on Remote Desktop Services

    So I am looking to move to Office 365 in the near future instead of just renewing my SA against Office standard. I read somewhere that in order to continue to be able to clone these installs as part of my Terminal Server rollout, I need to purchase a

  • Adobe Reader – Preview in Windows Explorer – Roaming Profiles

    First sorry for my English, my mother tongue Swiss-German We are running a Citrix server farm on Windows Server 2008R2 SP1. Recently, the request has arisen to view PDF documents in the preview pane of Windows Explorer. Unfortunately I always get the

  • Badi guide for process controlled workflow

    Where can I find the SRM 7.0 BADI guide for process controlled workflow in service marketplace? Thanks