Tax code error while posting Planned delivery costs in Import Scenario

Hi!!!!!
I am getting on error while posting Planned delivery costs in MIRO for Import Purchase Order with zero value tax code v0. The error is
"Tax code V0 country IN does not exist in procedure ZAXINN"
For Import I defined a pricing procedure which contains all condition types for CVD, Ecess, SEcess, Additional Customs Duty and Others.
While making Import PO im putting V0 tax code. I assigned the Tax Codes to the Company code.
Please let me know what config is missing.
Regards,
Durga

Is you ZAXINN assigned to the country India
and is your taxcode (created in FTXP) created for country India?
kr
hakan

Similar Messages

  • Error while posting unplanned delivery cost

    while posting in MIRO am getting this following error. "Maintain account determination (table T030B) for posting key UPF". can someone explain me the step to configure this in OBYC.

    Hi
    Click on the description of the error. There itself it will show the way to proceed. Click on that it will take u to OBYC screen.
    Or otherwise Go to OBYC and enter chart of accounts. And double click on UPF and enter the details.
    Regards,
    Raman

  • Bapi to post planned delivery cost of a purchase order

    Hi every body,
             Can anybody please give me the full details of the planned delivery cost data
    to post with BAPI_INCOMINGINVOICE_CREATE
    what are the manditory fields,
    I am using the following code , but  a few are posting , remaining r not posting
    but when I post the same through MIRO it is posted what is difference
    this error was came
    ERROR: enter good reciept data only when working with GR-based IV
    REPORT  ZBAPI_MIRO                              .
    tables: ekko,ekbe,ekpo,lfa1,EKBZ,t000.
    data: itemdata like BAPI_INCINV_CREATE_ITEM occurs 0 with header line,
      headerdata like BAPI_INCINV_CREATE_HEADER occurs 0 with header line,
         return like BAPIRET2 occurs 0 with header line,
         DOC_NO LIKE BAPI_INCINV_FLD-INV_DOC_NO,
         FISC_YEAR LIKE BAPI_INCINV_FLD-FISC_YEAR.
    DATA:error_flag.
    data: item_data like EK08BN occurs 0 with header line.
    data: begin of  itab occurs 0,
                 p_order like ekpo-ebeln,
                 p_item like ekpo-ebelp,
                 p_ctype like konv-kschl,
                 p_lifnr like lfa1-lifnr,
          end of itab.
    data:  order(10) type N,
          vendor(10) type N.
    data: begin of it_doc occurs 0,
                DOC_NO LIKE BAPI_INCINV_FLD-INV_DOC_NO,
                p_order like  ekko-ebeln,
          end of it_doc.
    PARAMETERS:  fn LIKE rlgrap-filename OBLIGATORY.
    DATA: FN1 TYPE STRING,
         l .
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR fn. "p_file.
      CALL FUNCTION 'F4_FILENAME'
           EXPORTING
                field_name = 'FN'
           IMPORTING
                file_name  = fn.
    START-OF-SELECTION.
       FN1 = FN.
    PERFORM upload.
    loop at itab.
    CLEAR: EKBZ,EKPO,LFA1,ITEM_DATA,HEADERDATA,itemdata.
    REFRESH:itemdata,HEADERDATA,ITEM_DATA.
    order = itab-p_order.
    itab-p_order = order.
    vendor = itab-P_lifnr.
    itab-p_lifnr = vendor.
    select single * from ekbz where ebeln = order
                               and ebelp = itab-p_item
                              and kschl = itab-p_ctype
                              and bewtp = 'F'.
    select single * from ekpo where ebeln = order
                           and ebelp = itab-p_item.
    SELECT SINGLE * FROM LFA1 WHERE LIFNR = vendor.
    clear: item_data.
    refresh:item_data.
    call function 'ME_READ_COND_INVOICE'
       exporting
       I_BUDAT            =
        I_EBELN            = itab-p_order
        I_EBELP            = itab-p_item
       I_FRBNR            = ' '
         i_lifnr            = ' '
       I_XBLNR            = ' '
       RE_KURSF           =
       RE_WAERS           =
       I_RESWK            = ' '
       I_EKKI             = 'X'
       I_BUBIS            =
       RE_WWERT           =
       XEK08B_FLAG        =
       I_BELNR            =
       I_BUZEI            =
       I_READ_KRUEK       = ' '
       I_DISPLAY          = ' '
      TABLES
        XEK08BN            = item_data
       XEK08BN_CURR       =
    read table item_data with key kschl = itab-P_ctype.
    headerdata-INVOICE_IND = 'X'.
    headerdata-DOC_TYPE = 'KR'.
    headerdata-DOC_DATE = ekbz-budat.
    headerdata-PSTNG_DATE = SY-DATUM.
    headerdata-REF_DOC_NO = itab-P_ORDER.
    headerdata-COMP_CODE = 'HPL'.
    headerdata-DIFF_INV = itab-p_lifnr.
    headerdata-CURRENCY_ISO = ekbz-waers.
    headerdata-GROSS_AMOUNT = item_data-WEWWR - item_data-AREWR .
    headerdata-BLINE_DATE = SY-DATUM.
    headerdata-DEL_COSTS_TAXC = 'V0'.
    headerdata-PO_REF_NO = itab-P_ORDER.
    headerdata-bus_area = 'OTHR'.
    headerdata-ITEM_TEXT = LFA1-NAME1.
    *headerdata-HEADER_TXT = .
    headerdata-ALLOC_NMBR = itab-P_ORDER.
      APPEND HEADERDATA.
    CLEAR HEADERDATA.
    itemdata-INVOICE_DOC_ITEM = '00001' .
    itemdata-PO_NUMBER = itab-P_ORDER.
    itemdata-PO_ITEM = itab-P_ITEM.
    *itemdata-REF_DOC = ekbz-belnr.
    itemdata-REF_DOC_YEAR = ekbz-gjahr.
    itemdata-REF_DOC_IT = itab-P_ITEM.
    itemdata-TAX_CODE = 'V0'.
    itemdata-ITEM_AMOUNT = item_data-WEWWR - item_data-AREWR .
    itemdata-QUANTITY = item_data-BPWEM - item_data-BPREM .
    itemdata-PO_UNIT = ekpo-meins.
    itemdata-PO_PR_UOM = ekpo-meins.
    itemdata-COND_TYPE = itab-P_CTYPE.
    *itemdata-ITEM_TEXT = .
    append itemdata.
    clear itemdata.
    CALL FUNCTION 'BAPI_INCOMINGINVOICE_CREATE'
      EXPORTING
        HEADERDATA       = HEADERDATA
      IMPORTING
        INVOICEDOCNUMBER = DOC_NO
        FISCALYEAR       = FISC_YEAR
      TABLES
        ITEMDATA         = ITEMDATA
       ACCOUNTINGDATA   = I_ACCOUNTINGDATA
       TAXDATA          = I_TAX
        RETURN           = RETURN.
    if sy-subrc <>  0.
    message e999(re) with  'Problem occured'.
    else.
      loop at return.
        if not return is initial.
         clear bapi_retn_info.
         move-corresponding return to bapi_retn_info.
          if return-type = 'A' or return-type = 'E'.
            error_flag = 'X'.
          endif.
         append bapi_retn_info.
        endif.
      endloop.
      if error_flag = 'X'.
       message e999(re) with  'Problem occured'.
        rollback work.
      else.
          Return Table from BAPI call is empty
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            WAIT   = 'X'
          IMPORTING
            RETURN = RETURN.
      endif.
    endif.
           write:/ 'Document no :', doc_no.
           it_doc-doc_no = doc_no.
           it_doc-p_order = itab-p_order.
           append it_doc.
           CLEAR IT_DOC.
    endloop.
    loop at it_doc.
       if it_doc-doc_no = ' '.
          write:/ 'purchase order not posted ' , it_doc-p_order.
       else.
       write:/ 'document no:' , it_doc-doc_no, 'p.order:' , it_doc-p_order.
      endif.
    endloop.
    *&      Form  upload
          text
    -->  p1        text
    <--  p2        text
    form upload .
      CALL function 'GUI_UPLOAD'
      exporting
        filename                      = FN1
       FILETYPE                      = 'ASC'
      HAS_FIELD_SEPARATOR           = ' '
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
      tables
        data_tab                      = ITAB
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      NO_AUTHORITY                  = 6
      UNKNOWN_ERROR                 = 7
      BAD_DATA_FORMAT               = 8
      HEADER_NOT_ALLOWED            = 9
      SEPARATOR_NOT_ALLOWED         = 10
      HEADER_TOO_LONG               = 11
      UNKNOWN_DP_ERROR              = 12
      ACCESS_DENIED                 = 13
      DP_OUT_OF_MEMORY              = 14
      DISK_FULL                     = 15
      DP_TIMEOUT                    = 16
      OTHERS                        = 17
    endform.                    " upload

    I think you need to implement user-exit EXIT_SAPMM06E_012 of enhancement MM06E005.
    Look in OSS with seach term MM06E005 to get some examples.
    Note310154 "ME21N/ME51N: Customer-specific check, generating error log" has some examples.
    You should use the macros to set errors/warnings
    Example:
      mmpur_business_obj_id pt_ekpo-id.
      mmpur_metafield mmmfd_partners.
      mmpur_message_forced 'W' '00' '208' text-001 '' '' ''.
    regards,
    JG

  • Not to Post Planned Delivery Cost in IV before MIGO

    Dear Experts,
    We are maintaining the Delivery cost Condition values for different vendors in Purchase Order and we are selecting the GR Based IV check box. At the time of MIRO before making MIGO (Goods receipt) it will not allow to Post Incoming Invoice if I select Goods/Service items or both Goods/Service items & Planned Delivery Cost but it will allow if we select only Planned Delivery Cost to Post.
    Kindly suggest us if anybody have the solution to restrict to Post the Planned Delivery cost before posting the Goods Receipt (MIGO).
    Thanks & regards,
    Dhanu

    Dear,
    First u do the MIGO, After that post the Material IV with goods/service, after that u again do IV for planned delivery cost selection of Planned delivery cost.
    Thanks,
    If this is helpful for u then reward me.

  • Planned delivery cost in Import of Assets Materail

    Hi,
    I have a scenario, where we are purchasing (Import) Assets material from abroad. for this we have created Import PO with account assignment A. assigned the planned delivery cost in Condition Viz. Sea freight, Custom Duty, CHA charges and individual vendor also assigned at condition level.
    We have posted the MIRO for Custome Duty and Done the GR. Excise Invoice also Captured and posted. While posting the invoice of other Delivery cost after GR system is not showing any value in MIRO line item.
    Where as in normal inport cycle Value in Planned delivery cost IV (after GR) is appearing itself.
    Please guide how to Post Delievry cost IV in above scenario. we donot want to enter any amount manual in MIRO line item.
    Thanks & Regards,
    Ranjan Kumar

    Hi Ranjan,
    The idea with MIRO is to enter the vendor invoice that you got on paper, i.e. the gross amount, the tax amount(s) and the net item amounts - all from the vendor invoice. For this reason the defaulted amounts shouldn't be necessary.
    If your business case is different, then there's a workaround. MIRO only suggests amounts if two cases:
    - PO doesn't have provision for GR ("GR" flag on the tab "Delivery") or
    - PO does have provision for GR and the received qty up to day is higher than the total invoiced qty up to day.
    I have however used a user exit to make MIRO think the GR flag in the PO is not set. The user exit is the enhancement point MRM_AMOUNT_QUANTITY_PROPOSE_01 of the enh. spot ES_SAPLMRMC located right in the beginning  of the function MRM_AMOUNT_QUANTITY_PROPOSE. The function module receives the GR flag from the PO in the parameter I_MRM_PROP-WEPOS. Let your enhancement reset the flag and make MIRO believe the GR flag in the PO is not set. Then it will propose the PO qty and amount.
    However, let me underline again - the idea with MIRO is that you should type in the invoice that you hold your hand.
    BR
    Raf

  • Planned Delivery Costs in IMPORT PO

    Hi,
    What planned delivery costs are posted to GL accounts and material accounts.
    I want to post Clearing & Forwarding and Demurrage charges to material accounts.How it can be done.
    Regards

    Solved

  • Incoming payment by F-28: Reason code error while posting

    Hello everyone,
    I want to post Incoing Payment using F-28 net of TDS. I want the separate GL account to be picked up automatically for the difference when I enter the Reason Code 003.
    I did the following customization for the same.
    1. Financial Accounting> Accounts Receivable and Accounts Payable> Business Transactions>Incoimng Payments> Incoming Payments Global Settings>Overpayment/Underpayment> Define Reason Codes:- Here I selected the Indicator 'C' for reason code 003 which is for "Indicator: Charge off difference via separate account". The reason code 003 is for TDS Netted
    2. Below the Define Reason Code node, I selected the node 'Define Accounts for Payment Differences' . Selected the key ' Rules' and selected the checkbox 'Reason Code'. Then clicked on 'Accounts' and enetered the desired GL account against the reason code '003'.
    After doing the above customization I posted the Incoming payment using T code F-28. I entered the difference in the field 'Difference Posting'. Then entered reason code '003' which is for 'TDS netted' in the field 'Reason Code'. Now, I am getting the follwoing error.
    Reason codes with automatic charge-off are not permitted here
    Message no. F5605
    Diagnosis
    The reason code entered is designed to ensure that the payment difference amount is posted to an account specially set up for this purpose.  Postings of this nature usually require additional specifications (e.g. tax code, business area). If the difference stems from a single open item, the necessary specifications can be taken from that item. In the case that led to this error message, however, the difference does not stem soley from one item, which means that this method cannot be used.
    System Response
    The reason code entered is not accepted.
    Procedure
    You can either select a different reason code, which would create a new open item for the customer or vendor OR write off the difference using the function Charge off diff.. This function either takes you into a pre-configured account assignment model or into the document overview. From here you can enter the required difference postings.
    How can I proceed ahead?
    Thanks and Regards,
    Pradnya

    Hi Saulo,
    Thanks for ur reply.
    I had alreay done the config in OBXL and OBBE. Only thing I wanted to know is while posting Incoming Payment by F-28, how to use this reason code.
    Ur reply was a gr8 help for me.
    Regards,
    Pradnya

  • Tax code error while releasing a billing document to accounting in VF02

    Hi SAP Gurus,
    While trying to release a billing document to accounting, the following error is displayed
    " Tax Statement Item Missing for Tax Code TA".
    Message number: FF805.
    Please provide your valuable inputs to overcome this issue.
    Suitable points shall be rewarded.
    Thanks and Regards,
    Sreeni.

    Check your pricing procedure. One of the Tax relevant items is ending up with a base value of Zero.
    This is easy to check if you double-click on tax related Pricing Conditions, you will find one of them with a base value is zero.
    If not, it could be something more simpler, like GL Account master data. Make sure the "Post without tax allowed" box is checked and ensure the tax category is masked ("*").
    Hope this helps.
    Cheers.

  • Tax jurisdiction Error while posting

    Hello Everyone
    I am trying to make a posting , but i am an error " Specify Jurisdiction Code". Is there any setting i have to make so that it does not ask for tax jurisdiction Code. Feel free to ask if you need some more information. I am using ECC 6.0.  I am making a credit posting to revenue account. In posting I am specifying GL account, Profit center, sales tax code, trading partner, partner profit center, material number. Any feed back will be highly appreciated.

    Hi,
    'When entering an invoice debiting a P&L account , the tax jurisdiction
    code gets populated from the cost centre (from the cost centre master
    record - KS03 , where you have also defined a tax jurisdiction code).
    If by any chance, you want to debit a Balance sheet account which
    does not require a cost centre, the system will ask you for a tax
    jurisdiction code if on the master record of the balance sheet account
    you have defined a tax category (fs03 ).
    Thus please maintain the jurisdiction code in KS03, and check the
    result.'
    Reg
    Madhu M

  • "Check Business Area of the company code" error while posting stock

    Hi Experts,
    While posting stock to a storage location of a plant , the system is giving me the following error message :
    "Check Business Area of the company code" .
    Would highly appreciate if I could get some info for this error message and how to resolve the same.
    Thanks & regards
    Vikas Hali

    hi
    i think division is missing in material master basic data , please enter division in basic data tab in material master then you will try ,
    then post the stock
    regards
    vijay

  • Error while posting return delivery to backend system

    Hi All,
    We are facing problem when we are posting return delivery. Currently we are in ECS implementation. Our SRM is 7.0 EHP3.
    Scenario goes as, SC is created then PO is created then further confirmation is created and on creating return delivery of this confirmation, this return delivery goes error in process.
    Now on further analyzing, I found out that outbound IDoc in SRM is getting posted successfully but when ECC receives this IDoc it is saying please enter reason for movement 122. This reason for return is already entered while creating the return delivery. But this reason is not flowing in IDoc (Message Type MBGMCR and Basic Type MBGMCR01) in SRM and further to ECC. This field MOVE_REAS in IDoc is populating blank.
    Can anybody help me resolving this problem? Any pointers or SAP notes related to can also be suggested.
    Thanks
    Siddarth

    Hi Siddarth,
    Please implement the note below, which is included in SP05.
    2007628 - Return delivery cannot be posted in backend system as reason for return delivery is empty
    Regards,
    Wendy

  • Tax code error while releasing into accounting

    hi
    i raised sales order with price,basic excise duty,cess,hcess forgot to give cst and saved order.then i done delivery(picking,packing,pgi) and raised commerical invoice and released into accounting.then i cancelled billing reentered cst in order and done billing.while relesing into accounting it is throwing errroe taxcode in tax inn is invalid.incustomer master i mainted tax classification correctly as 1& 1 but the sytem is reading as 2 &1 in pricing analyis with cs
    can any one suggest
    thanks and regards
    venkatramana.m

    Hi Venkat,
    For the issue "errroe taxcode in tax inn is invalid" Kindly check the OUTPUT Tax Code assigned to Company code in transaction OBCL and check the Tax Code assigned in "Maintain Excise Defaults" for TAXINN Proceedure.
    Below is the path for "Maintain Excise Defaults"
    SPRO>Logistics - General>Tax on Goods Movements>India>Basic Settings>Determination of Excise Duty>Maintain Excise Defaults
    Ensure that both the place OBCL and "Maintain Excise Defaults" Tax code should be same.
    Hope this will help you to resolve the issue.
    Regards
    Murali

  • Tax code error while entering Expense Receipts in TRIP transaction

    While entering Expense Receipts in the transaction TRIP (Travel Manager), I get an error saying..
    "Entry TAXUSJ V0  does not exist in T007A (check entry)".
    1) Please help me understand the cause for this error. As the  Travel Expense system is connected to the FI (Finance) system, is any config in the FI table causing the error?
    2) Please suggest how to resolve this error.
    Thanks

    Hi,
    TAXUSJ--Sales Tax USA w. Jurisdictions and VO is a Tax code.
    Please mainbtain above combinations in below tables and try
    GOTO SM30
    J_1BTAXCODEV
    J_1BTXMMCV
    V_T007A_DEF
    Bhairavareddy
    Edited by: Mudupu123 on Dec 14, 2010 8:04 AM

  • Error while posting Inbound Delivery

    I am trying to post inbound delivery and getting error that there is no item avaialble on the Purchase order. Please help.
    Thanks in advance.

    Hi,
    Check Confirmation Control Key of resp. purchase order.
    Also check for the said inbound delivery, have you created shipment for this?
    If no, create with respect to Inbound delivery using transaction VT01N and then do GR agianst Inbound delivery.
    Please check and revert.
    Thanks
    Hrishi
    Edited by: Hrishi on May 30, 2011 10:53 AM

  • Tax code error  while executing BAPI_INCOMINGINGINVOICE_PARK

    Hi,
        we are using BAPI_INCOMINGINGINVOICE_PARK.  For parking invoices for service POs . This program is working fine  with only  few Tax codes and with other tax codes it is throwing error "Tax code S5 in procedure invalid"
    Please help us out in resolving this issue.
    Regards
    Eswar

    HI Javier,
                 The complete error log can be found in NWA.
    login to NWA (http://<host name >:<port number>/nwa)-> Problem Management ->log and traces -> log viewer.
    in the log viewer u will find the User interface View or last 24 hours View where the complete error message will be displayed for ur component.
    Hope it helps .
    thanks and Regards

Maybe you are looking for

  • Hello Someone knows if theres a problem with sign in feature the Folio Builder Panel

    Recently I did the update of the DPS tools, to the 27, the desk top viewer dosen´t install, and I install it manually as sugested, and it works but, I can´t connect the folio builder panel with the DPS account using the folio builder panel side menu,

  • Using iWeb to host podcasts

    Hello, I have just been emailed by Apple to say my submitted podcasts have been approved and will be available in a few hours to download and subscribe too, but there seems to be a problem getting the podcasts to download... I have submitted it via i

  • Human Task expiration containing Task History from another Human Task

    Hi All, Let me explain you my complete workflow in brief. I have 8 Human Tasks and all are sharing Task history. My each individual Human task are in Scope activity. In my payload I have a variable "strExpiryDuration" and I am setting its value in an

  • How to synamically choose and load a JAR at runtime

    Hi all, I have an application that uses an API to communicate with a backend system. There are five API jars that each support a different version of the backend system. I want to be able to select the jar at runtime. I can't put each in my CLASSPATH

  • 10.4.9 crashes on G4 Yikes

    Hi, I wonder if others using the ancient 450Mhz G4 Yikes have had problems with this update? I can only find one reference to it from the discussions and it remains unresolved. My problems started with 10.4.8, I have 2 hard drives and I use carbon co