Error Message in Excise Invoice

Hey
When I a creating a Excise Invoice wrt  Billing(T code J1IIN) , When I am saving the invoice, I am getting an Error message as follows
Not Enough Balance for utilisation
Message no. 8I578
Diagnosis
The balance in the Account is not enough to carry out the current transaction.
Procedure
You need to increase the balance by either taking credit or depositing into PLA.
Even though i have maintained in the SPRO settings  >Logistics general>Taxs on Goods on Movement>India>Bussines Transactions>Utlization>Maintain Minimum balance for Excise Accounts
Can any body help me how to resolve this error message. An immediate response would be appreciated.
Cheers
Guruprasad

Hi Guru,
  First of all have you posted any incoming excise invoice.
Secondly check whether the transactions are being calculated as per the calcualation procedure.
The transaction you are using is to update the register.
  Reward points if it helps.
Regards
Karan

Similar Messages

  • Error message of Excise invoice has no matchin lines while capturing excise

    hi CIN gurus
    I ma facing a problem Whil capturing excise at depot. error message appearing as Excise invocie no matching lines.
    This problem occurs even after entering appropriate internal number in J1IG.
    And this problem is occuring randomly .
    This occurs for STOCK TRANSFERS FROM DEPOT TO DEPOT.
    CAN ANYONE COME OUT WITH SUGGESTION
    rgds
    BJ

    Hi,
    Refer to SNote Note 1382678 - Pop-up to select Excise Invoice in J1IH/J1IIN cancellation.
    Symptom
    While cancelling outbound Excise Invoice through the transaction J1IH or J1IIN, system always picks up the first excise invoice even when multiple excise invoices are present with same excise number and year.
    Regards,

  • Error message in Excise invoice cancellation J1IH or J1IIN

    Dear Experts,
    while i am cancelling Excise invoice through J1IH And J1IIN ,amd getting the below error, i searched a lot about this on forum,but there is no solution find please help me to overcome this error issue.
    Invalid parameter value at <> SPACE. Only    allowed
    Message no. AM004
    Thank and Regards,
    madhu

    Hi,
    Refer to SNote Note 1382678 - Pop-up to select Excise Invoice in J1IH/J1IIN cancellation.
    Symptom
    While cancelling outbound Excise Invoice through the transaction J1IH or J1IIN, system always picks up the first excise invoice even when multiple excise invoices are present with same excise number and year.
    Regards,

  • Error Message for Excise Invoice for delivery in J1IJ

    Hello there,
    While doing Excise Invoice posting in J1IJ for delivery, I get below error
    "Quantity is more than that available in the excise invoice"
    The selected mother excise invoice available qty is 0.003 CTN, but I want to post invoice for 0.167 CTN.
    Please suggest at earliest.
    Thank you!

    Does the Depot have sufficient stock?
    As per your post, it seems there is stock deficient ?
    Regards,
    Reazuddin MD

  • Error in allocating excise invoice

    When i do the billing using vf01, the billing document is displayed. On saving the billing document, i get the message " Print excise invoice in series group S2 using j1-ip for billing document" and a message at the bottom of the screen comes "excise document created for billing document". However when i try to post it to accounting, I get a message "express document" update was terminated"". On clicking the error, it shows " error in allocating excise invoice" and the attribute defined for it is "Express copy printing not allowed . Forwarding not allowed". How to resolve this problem? Please help
    Rohit Uniyal

    Hi Garima/Rohit,
    Please check in  Customizing, whether you have properly maintained the IMG activity Excise Group - Series Group Determination.
    Further,
    Check your Number Ranges for both
    Billing type F2 as well as for Excise Invoice Number range for all relevan objects.
    May be there is overlapping of Number Ranges Somewhere.
    Plz Check these settings.
    Reward if found useful.
    Regards,
    Gaurav Raghav.

  • Assign CO object error while cancelling excise invoice

    Dear Gurus,
    I am getting following error, while cancelling excise invoice.  I was able to post the excise documents without this error.
    Account N870 requires an assignment to CO object. Message no.KI235
    Kindly help me to resolve this issue.
    Regards
    Ranga

    If you click on the long text of your error message, you will see an explanation of how to fix the error there.
    Or just put an entry into table OKB9 for the GL Account N870

  • Error while creating Excise Invoice

    Hi All,
    Can any one help me on CIN?
    I am getting one error while creating "Excise Invoice [T.code J1ILN]" i.e. "System failure during locking GL account Cocode by 13113910"
    Regards
    Chowdary

    Dear Raghavendra
    Please make a try with the following but I am not sure whether it will solve your problem.
    Go to FS00, give the G/L account which has the problem and select "Control Data" tab.  Here punch as asterisk in the field "Tax category" and save.
    Now try to create the excise invoice.
    Thanks
    G. Lakshmipathi

  • Error message control for invoice w/o PO in SRM

    Hi,
    Anyone  know how to setup error message if invoice value limit is above e.g. 10000 USD? Invoice will be entered without PO.
    There will be no PO but invoice will be created and user should get error message if total invoiced value is above 10000 USD.
    We are in SRM_SERVER5.5 with SP 06.
    If anyone came across during IMS setup, please help me on it.
    Thanks in advance.
    Regards,
    Rahul Mandale

    Hi Atul,
    Thanks for your useful answer.  I am getting error message while creation of invoice. But problem is that it is throwing message for all invocie, need to consider  if condition of  'GROSS_AMOUNT >= 1000 USD. During creation of invoice, it should throw msg 001 (YIMS) which I have configured as my exception in  IMS when fulfills the condition.
    I am sending code for 'CHANGE' and "CHECK'  BADI.
    Can you check and suggest the correction? Where I need to put this conditon for pop up of error while gross_amount >= 1000  while creation and change of invoice??
    Thanks in advance.
    regards,
    Rahul
    <b>method IF_EX_BBP_DOC_CHANGE_BADI~BBP_IV_CHANGE.</b>
    DATA:   ls_header               TYPE bbp_pds_inv_header_d,
              lt_messages             TYPE TABLE OF bbp_smessages_badi,
              ls_message              TYPE bbp_smessages_badi,
              lf_dummy                TYPE c,
              lf_gross_amount         TYPE BBP_IV_AMOUNT,
              i_guid                  TYPE BBP_GUID .
    get data of the invoice from guid
      CALL FUNCTION 'BBP_PD_INV_GETDETAIL'
        EXPORTING
          i_guid   = i_guid
        IMPORTING
          e_header = ls_header.
      IF ls_header-GROSS_AMOUNT >= 1000.
    CLEAR ls_message.
        ls_message-msgty       = 'E'.
        ls_message-msgid         = 'YIMS'.
        ls_message-msgno     = '001'.
    APPEND ls_message to lt_messages.
        EXIT.
      ENDIF.
    <b>method IF_EX_BBP_DOC_CHECK_BADI~BBP_DOC_CHECK.</b>
    Data        ls_message TYPE bbp_smessages_badi.
    *To create  custom message
        clear ls_message.
        ls_message-msgty = 'E'.
        ls_message-msgid = 'YIMS'.
        ls_message-msgno = '001'.
        append ls_message to et_messages.
    endmethod.

  • 8I 681 Error While Creating Excise Invoice

    Dear All,
                Am getting error 8I 681 error while creating excise invoice,when i analysed since in the document flow the delivery document is not there, only J delivery will be allowed in creating excise invoice.
    Our client wants item level milestone,so in oder to activate that i have assigned the billing plan in the item category.But when i assighn the billing plan the system will not allow to put the billing relavance delivery relavant.So i made oder relavan in the billing relavance.So i create an oder and with that reference delivery.But when i create billing i have to refer the oder number,since in the item ctegory i have made oder relavant billing.So the result is in the billing document flow the delivery document is not flowing.Henceforth i could not be able to create J1IN.
    But this was not happening in the sand box,but only in the quality since it is superior.when we debugged we found only J(Delivery) is allowed to create excise invoice.
    Please help me to solve this issue,is there any possiblity to make the delivery document flow in the billing document.If it is done it 100%possible to create the excise invoice.
    Please share your ideas to solve this issue.....
    Best Regards,
    Venugopal

    Dear Lakshmi,
                         Thanks for your Prompt reply...
    In our case delivery is there,but when we create the invoice the delivery document is not flowing,since in the itemcategory oder relavant billing.We have billing milestone at the item level,for activating that i have to make the billing relavance as I.Other wise the system is not allowing me to select delivery relavant and billing plan.Please help me to make the delivery document flow in the billing document.Then this 8I error will be solved.
    I have alsochecked the update document flow,everything is perfect.
    Regards,
    Venugopal

  • Error in Canceling Excise Invoice

    Hello All,
    I am facing following error while canceling excise Invoice in ECC6.
    "No item information transferred into Accounting".
    However the same is working properly in 4.6.
    Please guide.
    Thanks & regards.

    Hi,
    Please go through the link given below.
    Re: Error"No item information transferred into Accounting"in PRELIMINARY_POSTIN
    Hope it helps,
    Regards,
    MT

  • Error while saving Excise Invoice

    Hi,
       I am getting an error while saving an excise invoice. It is as follows :
        BED :  Debit =  1,400.00  Credit =  392.00  Diff =1,008.00
        Message no. 8I312
    please help....
    Thanks & Regards,
    S.Rajeswari

    Hi,
    I am getting the following error while saving the Excise invoice.
    Balance in transaction currency
        Message no. F5702
    Diagnosis
        A balance has occurred in transaction currency 'INR' with the following
        details:
        Exchange rate '00', amount '            28.00' and currency key 'INR'.
        The data in the transaction currency were transferred from the calling
        application.
    System Response
        Your data cannot be processed in FI.
    Procedure
        The error is probably in the calling application.
    Thanks & Regards,
    Ramya

  • Error in creating Excise Invoice

    Hi,
    While trying to create an excise invoice from a billing document, I am getting the following error
    "Modvat utilization done already for 2510002498 of Delivery 2501000872"
    Please tell me how to rectify this problem.
    Regards
    Mohan

    Hi Lakshmipathi,
    Thanks for your answer. I checked in the table and excise invoice has laready been created.
    The problem is that for this order ther are two billing document. For one billing document the excise invoice has been created.
    But while creating the excise invoice for another this error message is coming.
    How could we rectify this error??
    Regards
    Mohan

  • Error in creating Excise Invoice - J1IIN

    Dear All,
           We have an issue in excise area. The scenario is as follows,
    If we have to raise a Service Order for a customer in VA01, we create a new sale order (Type - "Standard Order") with reference to old service order. For this order, we create billing document (VF01) of type "F2-Invoice" and for this billing document, we create a excise invoice in J1IIN and complete the process smoothly.
    This week we did the same process as above. But, while creating Excise invoice in J1IIN,  the systems shows error
    "Reference document of 919 is not delivery document"
    "Message no. 8I681"
    Also, we face problem in STO while doing MIGO (for excisable item), the system shows error "Excise details are not maintained for the vendor". But we checked the corresponding details in J1ID and its OK. Previously ( Before applying following SP, the same process was working fine).
    Note: Last week we applied the following support packages,
             SAP-AP     - SAPKNA7017
             SAP-APPL - SAPKH60016
    We need help to resolve these issues.,
    Regards,
    S.Sridhar

    Excise is applicable, when excisable goods leaving from the plant premises, As per above, you have not mentioned whether you are creating delivery or not? If there is no delivery in your process, then you will not be able to create excise Invoice in J1IIN.
    Still you want to pass the duties , then use Tcode: J1IS- Excise JV.
    Reg:STO. Hope you maintained record , ECC details of the respective vendor in J1ID. ( to remind once again, in STO, vendor is nothing but, internal customer assigned to the Supplying Plant)
    Re-check & confirm

  • J1IEX, error while posting Excise Invoice

    Dera Gurus,
    While posting the excise invoice for the invoice which has already been captured at the time of MIGO, I am getting the error message " All Part I entries have been canceled for excise invoice 5810 2009"
    I have checked the PO history and found that the GR has also not been canceled and moreover the entries are being posted in RG23A Part 1 table. The movemet type 101 has also been maintained for the updation of RG23A part 1
    The only thing that I have found  suspicious is while displaying the Excise invoice is that Quantity available for CENVAT credit is Zero. I think this field needs to populated. How does this this field gets populated.
    Regards
    Prabhjot Singh
    Edited by: Prabhjot Singh Nayyar on Jun 15, 2009 10:11 AM

    Dear All,
    I have already checked the table for the Part 1 entry, the Part 1 register is getting updated but it is now allowing me to post the Excise Invoice. As soon as I try to post the Excise Invoice, it gives me the error message " All Part I entries have been canceled for excise invoice 5810 2008 "
    Regards
    Prabhjot Singh

  • Error while posting Excise Invoice

    Hi Experts,
    I have captured incoming excise invoice for an Import PO of Asset material.
    GR has been made.
    Also partial payment to vendor has been done through MIRO.
    During check it do not show any ERROR message
    While posting Excise invoice , error message is displayed "ACCOUNTING DOCUMENTS NOT GENERATED"
    and immediately current session is closed
    How to solve the problem?
    Regards
    Jai

    Hi,
    Import cycle :-
    1. MIRO-Bill of Entry
    2. Excise Invoice capture
    3. Goods Receipt
    4. Excise Invoice posting
    5. MIRO -Vendor settelement
    Tcode you used for capturing excise invoice  -   j1iex
                                  posting the excise invoice.  j1iex
    Thanks
    jai

Maybe you are looking for

  • What is test stand ? Why is it used, how to get going ?

    Hello All, I am LabVIEW user and very new to test stand, have few basic questions, 1. Why teststand was introduced ? 2. In LabVIEW we write VI's and build a project to execute a big task, how is this done in teststand? 3. I did download some of the p

  • Incorrect file name when importing pictures from camera

    I am using PE 10 on Mac Snow Leopard. When I import pictures from my camera and select "Rename Files" with "Custom Date" + "Shot Date" (any format), the file name includes the custom name correctly, but the date part of the file name is some random d

  • If i run a combo updater to fix a issue will i lose everything?

    Hi,   I deleted my app store and i was wondering if i run the combo updater will i lose everything?  itunes iphoto email etc?    i dont have an external hard drive handy so just curious  thanks

  • Material Issue to AUC

    Dear Guru's, How to issue the materials to AUC(Asset Under Construction) from MM side, What about the excise in this case ? If we r using Raw materials & Finished materials then what about the excise & how we need to capture the same ? regds, CB

  • Re installed.

    Had a little crash on the Mac Pro last night, so let time capsule sort it out over night. All working now, but had to go and associate some extensions with the apps I use....... The only thing I can't get back to how it was is pdf docs in finder used