Credit Note With Out Incoming Excise invoice

Hi guys,
I want to know what are the A/R Credit Memos that still has not been converted intlo Incoming Excise Invoices.
will any  body please provide me a query for the same.
I have tried a query for displaying the Incoming Excise Invoices which has credit note as a  base document by this query.
SELECT distinct T0.[DocNum], T0.[DocDate], T0.[CardName],  T1.[BaseRef] as 'Credit Note No', T1.[BaseType]
FROM OIEI T0  INNER JOIN IEI1 T1 ON T0.DocEntry = T1.DocEntry
WHERE T0.[DocDate] between '[%0]' and '[%1]' and T1.BaseType ='14'
Thanks & Regards,
Vamsi.

You may try:
SELECT distinct T0.[DocNum], T0.[DocDate], T0.[CardName]
FROM dbo.ORIN T0 
INNER JOIN dbo.RIN1 T1 ON T0.DocEntry = T1.DocEntry
WHERE T0.[DocDate] between '[%0]' and '[%1]' and T1.TargetType != XXX
You need to replace XXX with the object type for Incoming Excise invoice.
You may check these threads if you don't know the type:
list of object type for sp_transactionnotification
SP_Notification | From where to find the list of Object Type details

Similar Messages

  • Excise on Freight does not include in Incoming Excise Invoice

    HI Expert,
    I am using SAP 8.81 (PL: 5),
    I Added GRPO where I included Freight at row level and applied Excise Tax as Excise tax in freight on document level is not allowed in SAP. Now when I copy GRPO to Incoming Excise Invoice, Incoming Excise Invoice is not including Excise tax amount of freight and also not in its Journal Entry posting internally.
    I also faced problem when I copy to AP Invoice the freight is not being copied from GRPO which is defined at Row level of GRPO.
    Is there any particular setting for this?
    Please help me to solve this issue.
    Thanks in Advance,
    Vishal

    Hi Deepak,
    Appreciate your response to my thread.....
    But I know about the Freight setup as I mentioned in my thread applied Excise Tax as Excise tax in freight on document level is not allowed in SAP. I dont have problem with this as system is working properly when we define freight in bottom Level but we can not select Excisable tax code on bottom freight level. And we can select this only at row level Freight Setup.......
    But when I copy GRPO to Incoming Excise Invoice, Incoming Excise Invoice is not including Excise tax amount of freight and also not in its Journal Entry posting internally.
    I also faced problem when I copy to AP Invoice the freight is not being copied from GRPO which is defined at Row level of GRPO.
    Experts please focus on this issue if it is very serious if is not included in SAP B1.
    Or is that PL Issue?
    Thanks In Advance!!!!!
    Vishal

  • One  credit  note  with reference to several invoices??

    Hello,
    my  customer  came  up  with  specia  requirement ,
    Is  it  possible  to  have  One  credit  note request  with reference to several invoices??
    I  never  seen  but  your  input  would  be  helpful.
    Points  will  be  added  for  helpful  answer.
    Thanks  and  best  regards
    L

    yes its possible. go like thru va01 with return order type then go to menu-> sales document->create with reference
    you can copy more than one invoices for raise credit request.
    Reg
    NAr

  • Credit Note with out Tax Value.

    Hi gurus,
    can any one tell me how to manage the system to not calculate the Taxes in case of Credit note to be issued for the Customer Returns.
    Here we are using only one Pricing procedure for all types of Sales transactions.
    I have one thought that can I manage by crating new Access sequence for the Return document type. will it works ?
    Please guide me how to solve this problem.
    Thanking you,
    Jaya.

    Hi,
    Here two ways to give the possible solution
    1.  Manual Removal of Taxes at the time of Return order
    2.  Through ABAP routine to make condition type as stastical.
    In case of Manual Removal, you need to maintain the configuration of condition type as editable mode during the order processing and the relevent configs are
    Activate the Boxes of Change, Delete, Value, Quantity unit
    In case to follow through ABAP, then develop a routine and attache the same against the conditon type.  Here the code need to write as
    a.  Compare the Billing date of VBRK-FKDAT with VBAK-BUDAT and if BUDAT >=180 days of FKDAT then system to make the conditon type as statstical and not relevent for billing.
    Rewards if it helps
    Regards
    Goutham

  • Print out put for miro and incomming excise invoice(j1iex)

    Hi guru's
    my client need print out for miro and incoming excise invoice.Plz help me in configuring them.
    thanks
    with regards

    hi,
    Do check the NACE transaction...
    Message schema is nothing but a program which will come into action whenever there will any need of output...
    So, check your message schema...Define the output type as per your requirement...
    Condition table consist of all those Fields which will be taken into consideration, whenever you trigger the message output...and those fields will be taken into consideration for the req. output...
    Access seq. will provide you the scequence in which the fields are be read and perform an output...
    At last printer determination is main, by which you'll print output...
    hope it helps..
    Regards
    Rahul.

  • Adding Credit Notes with reference to Invoice

    Hi Experts,
    B1 Version: 2007
    PL: 41
    Im having a difficulty posting a CreditNote with reference to an Invoice. For example I have an Invoice with 3 line items, and this customer returned 1 material. How do I post this Credit Note with only 1 material with reference to this Invoice thru DI API?
    Thanks

    Hi
    Try this
                    Dim oCreditNotes As SAPbobsCOM.Documents
                    Dim RetVal As Integer
                    Dim ErrCode As Long
                    Dim ErrMsg As String = String.Empty
                    Try
                        oInvoices = B1Connections.diCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
                        oCreditNotes = B1Connections.diCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oCreditNotes)
                        'Set the document header fields properties
                        oCreditNotes.HandWritten = BoYesNoEnum.tNO
                        oCreditNotes.CardCode = "cardcode"
                        oCreditNotes.CardName = "cardname"
                        oCreditNotes.DocDate = "date"
                        oCreditNotes.Lines.BaseEntry = "oInvoice DocEntry"
                        oCreditNotes.Lines.BaseType = SAPbobsCOM.BoObjectTypes.oInvoices
                        oCreditNotes.Lines.BaseLine = 0 'first line
                        oCreditNotes.Lines.Add()
                        oCreditNotes.Lines.BaseEntry = "oInvoice DocEntry"
                        oCreditNotes.Lines.BaseType = SAPbobsCOM.BoObjectTypes.oInvoices
                        oCreditNotes.Lines.BaseLine = 1 'Second line
                        RetVal = oCreditNotes.Add()
                        If RetVal = 0 Then
                            MsgBox("Credit memo created")
                        Else
                            B1Connections.diCompany.GetLastError(ErrCode, ErrMsg)
                            MsgBox(ErrCode.ToString + ErrMsg)
                        End If
    Hope this helps
    Regards
    Arun

  • Credit note with invoice reference are not concatenate in F110

    When I create a credit note with invoice reference by VA01, the fields payment term,  Baseline date for due date calculation, Assignment and Payment method are copied correctly from invoice to credit note, but in FI document the field invoice ref.  'BSEG-REBZG' is not filled. So when I run the transaction F110 Automathic Payment (for Italy) the invoice is rigthly payed but the credit not is included into Exceptions with the note 'No pymt possible because items with a credit bal.still exist'. If I put in the field 'BSEG-REBZG'  the reference to  the invoice, the one and credit note are concatenated and I have a rigth parzial payment.
    There is a way to have this link when I post the Fi document by vf01-vf02 without putting it manually using FB03?
    Thank you in advance
    Gianluca.

    hiii
    please refer thi link reconciliation in 2005
    https://websmp208.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000789632007E
    i would suggest you to upgrade your version, as reconciliation is very easy in higher versions
    please refer sap note no 1051038.
    Thanks
    Rizz
    Edited by: Mohammed Riyaz on Apr 24, 2009 4:01 PM

  • How to get incoming excise invoice in J1IIN

    Daer All
    Greetings!!
    Scenario: The company receives raw material from vendor and then vendor send excise invoice to company.
    The same raw material then sell to other vendor but the incoming excise invoice is used to pass on duty . with threference to that incoming excise invoice duty  pass on to this vendor to whom raw material has been sold
    Question:  How the process will be captured in SAP from MM to SD
    1) now how i will create order > delivery >billing and how i will be able to get that incoming excise invoice in j1iin ?
    2) What About Pricing Procedure?
    I have searched the forum and i have also tried on the existing solution given in forum but still could not do it
    I am still putting my effort but in need of valuable input from forum

    hi
    sales side proces
    va01-vl01n-vf01-j1iin
    j1id settings for this material and chapter id material is raw material u can assign the raw material , other wise assign finished goods, and excise duties main in customer and vendor also , in sale order process  you can maintain the excise duties in sale order, based on invoice , capture the j1iin it is for only out going invoice ,
    vendor details maintain at migo only , ofter migo  you can capture incoming excise invoice , incoming excise invoice at j1ig only,
    in j1ig u capture the  it is for only depo
    Menu Path: User menu à Indirect taxes à Procurement à Excise invoice à Incoming Excise invoice à Individual Processing à Capture/Display (J1IEX)  
    a.     Select Post Excise Invoice and Vendor in windows above the Header.
    b.    Enter Goods Receipt Document number generated in STEP 2 and press ENTER or Click on Execute   button.  
    c.     Following screen will appear as shown below.  
    Menu Path: Logistics à Materials Management à Inventory management àGoods movement à goods receipt à for purchase orderà Purchase order no. Known (MIGO)
    .     Enter the PO number, Vendors Delivery Challan Number      
    b.    Press Enter u2013 at this point of time system will copy all the relevant information from PO and a Excise Invoice tab will appear in the Header screen as shown below, select capture Excise Invoice on this tab and check the Excise group.  
    c.     Enter the Received Quantity in the Quantity tab in field Quantity & Unit of entry.
    Follow above procedure for claiming modvat for raw material.  
    d.    Enter receiving Storage Location in Where tab. Here check the stock type in which material is going to receive. If some text needs to be added regarding the goods receipt enter it in Text field.
    Follow above procedure for claiming modvat for raw material.  
    e.     Check the Excise Details related to the received material in Excise Item tab in Detail Data screen as shown above.  
    Post the Captured Vendoru2019s Excise Invoice
    Go to CIN transaction  
    Menu Path: User menu à Indirect taxes à Procurement à Excise invoice à Incoming Excise invoice à Individual Processing à Capture/Display (j1iex)  
    a.     Select Post the Excise Invoice and Goods Receipt in windows above the Header.
    b.    Enter Vendor Excise no generated above.  
    If material had directly came from different vendor, Enter vendor code in Ship from field in miscellaneous tab.
    a.     If Excise Invoice is faulty and still want to take the credit for the excise invoice, enter the rejection code.  
    b.    Check the Material Chapter Heading, Material type in Item tab in Detail Data screen.  
    c.     Check the Quantity in Quantity tab  
    d.    Check the Duty rate in Duty rate tab.  
    e.     Check duty values and Tax amount for the material in Duty value tab.  
    f.     Check the Part I entries, which are created immediately after the GR in Part I tab.

  • Country India Version Incoming Excise Invoice Cancellation

    Hi Experts,
    I am unable to cancel incoming excise invoice. I have gone through many threads regarding this subject but still none of the suggestion is working out here, please gives your valuable comments?
    We are using TAXINJ procedure and I followed the below steps for excise cancellation.
    1. Good Receipt for PO MB01
    2. Capture and Post Excise Invoice ref to GR J1IEX
    3. Cancel the Material document created in step1 MBST
    4. Cancel the Excise Invoice created in step 2 J1IEX.
    When I am trying to execute step 4 i am getting the error message Excise invoice EX140 2009 has already been posted for vendor 907970
    When I try to post the excise invoice EX 140 it gives me error No Part I exists for availing credit in excise invoice EX140 2009.I tried to update part1 using J1I5,there I only found the material document created in step 3.
    If I try to post the excise document with ref to the cancellation material doc and I use the same excise number i.e. EX140, it gives error Excise invoice EX140 2009 for the vendor 907970 Exists. I also tried with a dummy excise number EX141.i am able to capture excise with this number but when I try to post it gives me message No Part I exists for availing credit in excise invoice EX141 2009, Then I updated the part 1 using J1I5 and tried to post the document EX141, it gives a div by zero Dump.
    Please help me out.
    With Regards
    Sarvesh Kumar Vashist

    Hi,
    Thanks for your valuable inputs.
    I am still confused what standard SAP says regarding Incoming Excise Invoice cancellation, the comments are contradictory even I searched in other threads also but there also no standard answer.
    does it allow the cancellation if Part2 is posted?
    I followed the steps suggested by SAP Learner. But it does not allow me to do the step 3 it gives me messageu201D No Part I exists for availing credit in excise invoice XXXX 2009".I checked table J_1IPART1 and table J_1IPART2, the entries are there for excise invoice XXXX.
    Please advice As per Indian Tax law is it OK if I post the difference amount using J1IH other adjustment. But if we have to post the -ve difference then how can book that amount. I extracted the registers it is showing the JV values but does not show any reference document.
    With Regards
    Sarvesh Kumar Vashist

  • Unable to add Incoming Excise Invoice

    Hi All,
    While trying to add Incoming Excise Invoice, I'm gettin an error message,"Tax Definition, Message 173". I have checked the tax code and type, all the accounts are mapped here . What is causing this error and how to correctly add this document??
    Thanks in advance,
    Joseph

    Hi,
    Refer this note:559660  on Error message "Tax Definition (No.)" appears
    Symptom
    When attempting to add a document the message -"Tax Definition (No.)" appears
    Other terms
    Tax Definition, Error, Invoice, Credit Memo, AP Invoice, Message, Red, Add, Document, Invoice, Payment
    Reason and Prerequisites
    No General Ledger (G/L) account has been defined for tax groups used in the document
    Solution
    When you add a document that creates an automatic Journal Entry (e.g. Invoice, AP Invoice and Credit Memo), a relevant posting must be placed in accounting for the tax amounts in the document.
    If you select tax groups with a tax % of more than zero, then this must be recorded in the accounting system to the appropriate G/L Account defined for the tax group in "Administration" -> "Definitions" -> "Define Tax Groups" -> "VAT Account" / "Acquisition Tax" columns
    If no G/L Account has been selected for this kind of group, the system will display an error message, indicating the row number that contains a tax group with no G/L Account e.g.(1) and the document will not be added
    To remedy the described problem please perform the following steps:
       1. Select "Administration"
       2. Select "Definitions"
       3. Select "Define Tax Groups"
       4. Locate the tax group you used in the document
       5. Locate the VAT Account column and select an appropriate G/L account
       6. In case this tax group is of Input Tax type and the Acquisition Tax column is flagged you need to also select a G/L account in the Acquisition Tax column
    Hope this is helpful !

  • Incoming Excise Invoice::Whats the meaning of multiple GR multiple credits?

    Hello CIN Experts ,
    Pls clarify with an eg if possible of multiple GR multiple credits in case of incoming excise invoices .
    Does that mean that i can have the same invoice no. in more than one GR ??
    If so ..... whenever i try to post the second GR with the same vendor excise invoice number .. the system says " an excise invoice already exists for the same vendor."
    What is the functionality of the so called multiple GR multiple credits
    Rgds
    Anis

    Hello SAP Learner ,
    As per ur reply ... if there is a 100kg  PO qty & in the first GR the recieved qty is 50 , then the credit that we would be able to take would be that of 50 kg only  , which the system would prorate & hence subsequently i would post the excise invoice & take the credit for only 50  kg ...
    Later if the balance open qty as per PO are cancelled then there is no  question of GR & hence credit .
    Still the utitity  as well as functionality of multiple GR multiple credits is not very clear .
    pls do revert bk wid ur valuable inputs
    Rgds
    Anis

  • System failure during locking GL account 5555 by 13113910 Message no. 8I076  and the time of saving out going excise invoice.

    Hi SAP Gurus,
    We are configuring the CIN Settings for our client and at the time of testing, while saving the Out going excise invoice the system is giving the error as “Balance in Transaction Error” and when pressed enter the system displays the error as “ system failure during locking GL account 5555 by 13113910.”
    We have configured Out going excise duty condition types  in the SD pricing procedure
    and
    also maintained the same condition types  as mentioned below  in the path IMG / LOGISTICS GENERAL  / TAX ON GOODS MOVEMENT  /  INDIA / BASIC SETTINGS/ DETERMINATION OF EXCISE DUTY / MAINTAIN EXCISE DEFAULTS
    under the headings
    AR BED Cond – JEXP
    AR Cess Cond – JECS
    ECS AR – JHEC
    And also maintained the settings in the Path IMG / LOGISTICS GENERAL  / TAX ON GOODS MOVEMENT  / INDIA  / SPECIFY  EXCISE ACCOUNTS PER  EXCISE  TRANSACTION and also in SPECIFY G/L ACCOUNTS  PER EXCISE TRANSACTION .
    But still the above mentioned error is comming.
    Note : error in not coming when I am removing the  JHEC condition type  from the path IMG / LOGISTICS GENERAL  / TAX ON GOODS MOVEMENT  / INDIA / BASIC SETTINGS/ DETERMINATION OF EXCISE DUTY / under the heading ECR AR, But we need the JHEC(ie. Higher education cess) also in out going excise invoice.
    Please let me know what is the issue and how to resolve it.
    Thanks & Regards
    Shashi

    Dear We faced the same issue and  almost for 20 days to  get it resolved.
    For this kind of error firstly Check have you activated the Liable for AT1 indicator in(IMG>>Log.General>>Tax on goods Movement>>India>>Basic Settings>>Maintain Excise registrations)
    Also Have you assigned Proper GL account in (IMG>>Log.General>>Tax on Good Movement>>>India>>>Account Determination>>Account determination per Excise transaction type.
    Here pl check the relevant GL has been assigned for
    1.RG23A BED(for Both incoming and outgoing excise invoice  updations against your ETT)
    2 RG23C BED, (for Both incoming and outgoing excise invoice updations against your ETT)
    3 .OFF SET,(for Both incoming and outgoing excise invoice  updations against your ETT)
    4 MODVAT.CLEARING, (for Both incoming and outgoing excise invoice updations against your ETT)
    5 PLA BED& AED & SED,(for Both incoming and outgoing excise invoice updations against your ETT at the time of utilizations)
    6 PLA CESS(for Both incoming and outgoing excise invoice updations against your ETT at the time of utilizations)
    7 CENVAT ON HOLD(for Both incoming and outgoing excise invoice updations against your ETT at the time of utilizations)
    8.CENVAT SUSPENSE(for Both incoming and outgoing excise invoice updations against your ETT at the time of invoice posting)
    9.PLA ON HOLD((for Both incoming and outgoing excise invoice updations against your ETT at the time of TR6c)
    10. CENVAT REVERSAL(For cancellations vs ETT)
    11. RG23A ECS(for Both incoming and outgoing excise invoice  updations against your ETT)
    12. RG23C ECS(for Both incoming and outgoing excise invoice  updations against your ETT)
    13. PLA ECS(for Both incoming and outgoing excise invoice  updations against your ETT )
    14. RG23A AT1(check this more carefully)
    15. RG23C AT1(check this more carefully)
    16. PLA AT1(check this more carefully)
    Hope this helps you...
    Phanikumar

  • Excise values are not copying in my excise invoice

    Hi experts,
    When am doing factory sales with tranasaction code j1iin from billing  The excise duty is not copying into my excise invoice.  What could be the reason what needs to be done to run this scenario perfectly.
    excise invocie is generarting  with out value.  Iam working  ecc 6.0 version and taxinn procedure.
    Thanks & regards
    Rack29
    T

    Go through these threads
    [BED NOT FLOWING TO EXCISE INVOICE J1IIN   |BED NOT FLOWING TO EXCISE INVOICE J1IIN]
    [eXCISE INVOICE   |eXCISE INVOICE]
    [Excise Values Not Flowing in J1IIN-(export Excise Invoice) |Excise Values Not Flowing in J1IIN-(export Excise Invoice)]
    [excise values in exports   |excise values in exports]
    Though your issue relates to domestic, the above links is applicable to your issue also.
    thanks
    G. Lakshmipathi

  • How to find Material Document respect to incoming excise invoices?

    When stock is transfered from one plant to another,
    in sending plant, material document is created, with respect to this material document out bound delivery is created further out bound excise invoices.
    In receiving plant when the incoming stock reached the plant with incoming excise
    invoice, material document is created .
    how to find the this receiving plant material document with respect to incoming excise invoice.?
    how to get the receiving plant material documents with respect to sending plant material documents?

    when  the material is transferred from the one plant to another.
    before going to transfer the material.
    one material document is created
    with respect to multiple item  of material document delivery documents created.
    for every delivery one invoice is generated.
    when the stock is reached to plant with invoice
    with respect to this invoice one material document is created for quality check.
    I this case we may have multiple invoices may have the multiple material documents in receiving plant .
    how to find for which excise invoice it is creating material document in receiving plant?

  • Amount is not Determined while creating excise invoice

    Dear Gurus,
    I have created Excise invoice with reference to Billing Document F2.
    In Sales order and Billing Doucment Pricing Procedures determine BED, SED, AED by using Factory Pricing Procedures Which is Condition Based.
    But when I am creating excise invoice with reference to Billing Document, the value of BED, AED, SED will not coming.
    I had also save the data in Logistic General - Tax on goods movement - india - determination of excise duty - condition based excise determination - classify condition types.
    over here i maintained the data for my particular pricing procedure along with condition type which i am using.
    May I know where is my mistake
    Suneet Prakash

    Hi Lakshmi,
    I had also maintained this setting also but still its not coming in my excise invoice.
    what will be the setting which basically activate that amount.
    i dont know means upto billing i am able to see the excise duties
    but in excise invoice its not showing.
    one more thing what are these excise transaction types
    why we require this. can i get some document regarding this.
    document in which i will get the information about all the customising setting regarding CIN.
    Please help me out.
    Suneet.

Maybe you are looking for

  • Built in calendar app

    I accidentally deleted my built in calendar app on Mavericks. Where can i download it again?

  • SAP in a Oracle server

    Is it possible to apply and use a SAP as a layer on a Oracle Database. Should the DBA have the knowledge on SAP to perform this... ?

  • DVD Burner; LG  Super Multi DVD Rewriter no longer working under 10.6

    Model GSA-5163D, FireWire Burner. Since upgrading to 10.6 my computer no longer sees this burner. Any ideas as to how to get it to work under 10.6? Thanks

  • Abap Query Execution

    Hi, I want to execute Abap Query using a Transaction Code. Please help me out to run a query using Transation code. Thanks in Advance John Vikram

  • Xml publisher generate huge size excel file

    hi, we use xml publisher to generate excel file. the problem is: when there are over 100,000 rows, the excel file size will be very very huge,and it will take very very long time to open it. i open the excel file with UltraEdit and find it is filled