Goods Received Not Invoiced Account is accumulating credits/not reconciling

Newbie here.  I found the forum today and hope you guys can help me.
My company runs SAP B1 and I have two questions (for now):
1.  The Goods Received Not Invoiced Account is accumulating a larger and larger credit balance even though there are no Goods Receipt POs open.  There are a lot of transactions I'd have to dig through to figure out the problem.  So, I'm wondering if any of you can direct me to some transactions that typically cause this.
2.  The Goods Received Not Invoiced Account is not automatically reconciling GRPO and Invoices.  Should it?  Or do I have to manually do that periodically?
Thanks in advance.
Steve

Steve,
Have you mapped the Goods received not invoiced under
Admin > Setup > Financial > G/L A/C determination > Inventory Tab > Allocation account
The above account is a liability account under COAs.
Once you close the GRPO the balance in the Goods received not invoiced balance will reduce.
Then you can reconcile the account if the amount to reconcile is zero.
Hope this will help.
Regards,
Joel

Similar Messages

  • Goods Received Not invoiced ( GRNI )

    Hello Experts !!!
    Whenever i enter details in Goods receipt PO,the journal entry which is passed has a account called " Goods Received Not Invoiced  " which is debited. What is significance of that account . why it is used .
    Please Experts help me .
    Regards
    A S Vamsi Krishna

    Hi Vamsi......
    If you know about contra or allocation account. GRNI is one of that.
    As you know SAP has some standard procedure to follow the purchase process.
    PO which is non accounting and not legal document which is only used to give the order to supplier.
    Based on PO, GRPO is raised. Because of GRPO Stock gets In. So here accouting entry must pass.
    In this GRN Entry ashould be passed where Stock Account gets Debited and GRNI account gets credited which will then be credited at the time of invoice where creditors outstanding will be generated.
    In short your accounting would be Suplier--> Credit
                                                            Stock--> Debit
                                                            Tax--> Debit (if any)
    Hope you understood the concept.....
    Regards,
    Rahul

  • Purchase order Goods received not invoiced.

    Hi,
    Is there any transaction ? where i can find Purchase order goods received and not invoiced.
    Thanks..Gopi

    Hi
    Use transaqction ME2N , with selection paramter RECHNUNG & from the dynamic selection (Shift+F4) select the delivery completed indicator from the Purchase Order Item
    Execute the report, this will give you the list of PO's open for invioicing after GR
    Thanks & Regards
    Kishore

  • T.code for goods received but invoice not received

    HI,
    I have received the goods but i have not receive the invoice, so how will i know the diffrence for goods received and goods received with out invoice if there any t.code.Please let me know.
    Thanks
    R.Manigandan

    Hi
    Use the t.code MB5S which is useful for you
    Regards
    madhav

  • Goods Received Not Invoiced

    Hi all
    Is there any way to retrieve backdated Goods Receipt PO not Invoiced?
    Example
    how to include those Open Goods Receipt PO as at 31 Dec 2014
    even if they are Closed in 2014?
    Kedalene Chong

    Hi Kedalene,
    Not Getting what exactly your requirement is.
    Please check below Query.
    SELECT T0.[DocNum], T0.[DocDate], T0.[CardName], T0.[DocCur], T0.[DocTotal], CASE WHEN ( T0.[DocDate]  <>  T3.[DocDate]) THEN 'OPEN' ELSE 'CLOSE' END AS Status , CASE WHEN T0.[DocStatus] = 'C' THEN 'CLOSE' ELSE 'OPEN' END  AS  'Current Ststus' FROM OPOR T0  INNER JOIN POR1 T1 ON T0.[DocEntry] = T1.[DocEntry] INNER JOIN PDN1 T2 ON  T2.[BaseEntry] =  T1.[DocEntry]  AND   T2.[BaseLine] =   T1.[LineNum]  INNER JOIN OPDN T3 ON T2.[DocEntry] = T3.[DocEntry] WHERE T0.[DocDate]  <>  T3.[DocDate]  AND  T0.[DocDate] >=[%3]  AND   T0.[DocDate] <=[%4]
    Hope this helps
    Regards::::
    Atul Chakraborty

  • Good received not invoiced

    hi Gurus,
    Do you know of a report that would show closed/invoiced/ and paid Pos for a plant for a specific time frame
    Thanks
    Anusha

    Hi anusha ,
    Closed / Invoices can be taken from ME2L report by choosing right values from drop down list for "Selection parameters" .
    Payment is not tagged directly to MM invoice , hence you cannot find any report ...
    ML80FN is a detailed report from which you can do much more analysis as requried..
    Thanks,
    sudhakar

  • How to calculate Amount of goods received bill not received

    Hi Gurus,
    In my vendor aging report client require one filed which is amount of goods received bill not received (Goods received amount- Invoice amount)
    can u please tell me what should i do?
    Thanks in Advance
    Kavita

    Hi,
    Actually i written a code in CMOD and enhanced the data source but the value is not proper......
    something is missing ...can anyone explain
    here is my code
    when '0FI_AP_4'.
      data  wa_DTFIAP_3 type  DTFIAP_3.
        loop at c_t_data into wa_dtfiap_3.
         select single ebeln lifnr from ekko into  (it_ap03-ebeln,it_ap03-lifnr)
            where lifnr = wa_dtfiap_3-lifnr.
           it_ap03-budat = wa_dtfiap_3-budat.
           it_ap03-budat = wa_dtfiap_3-belnr.
          if sy-subrc = 0.
            append it_ap03.
           endif.
        endloop.
      loop at it_ap03.
       select SINGLE mblnr from mkpf into mkpf-mblnr WHERE budat =  it_ap03-budat and blart = 'WE' AND
         VGART = 'WE' .
         IF SY-subrc = 0.
         SELECT SUM( dmbtr ) from mseg into   it_ap03-dmbtr where mblnr = mkpf-mblnr and xauto = '' and
           bwart in ('101','102') and lifnr = it_ap03-lifnr .
       SELECT SINGLE ebeln matnr from mseg into (mseg-ebeln,mseg-matnr) where mblnr = mkpf-mblnr.
         select sum( dmbtr ) from ekbe into it_ap03-dmbtr1
         where ebeln = mseg-EBELN  and vgabe = 2  and matnr = mseg-matnr  and budat = it_ap03-budat.
         it_ap03-tamt = it_ap03-dmbtr - it_ap03-dmbtr1.
        ENDIF.
    select sum( wrbtr ) from ekbe into it_ap03-dmbtr
    where ebeln = it_ap03-EBELN  and bewtp = 'E' and budat = it_ap03-budat.
      select sum( wrbtr ) from ekbe into it_ap03-dmbtr1
    where ebeln = it_ap03-EBELN  and bewtp = 'Q'  and budat = it_ap03-budat .
      modify it_ap03.
      clear it_ap03.
      endloop.
    loop at c_t_data into wa_dtfiap_3.
    read table it_ap03 with key lifnr = wa_dtfiap_3-lifnr belnr = wa_dtfiap_3-belnr.
    wa_dtfiap_3-zzbillamt = it_ap03-tamt.
    modify c_t_data from wa_dtfiap_3.
    endloop.
    endcase.
    Edited by: kavita on Sep 11, 2010 8:48 AM

  • Good Receipt Note mandatory before Invoicing the POs

    Hi,
    Trying to make Good Receipt Note mandatory before Invoicing the POs. Created the below SP Transaction Notification (practicing hard!) but getting the error. Just thinking if it is actually possible to make a Good Received Note mandatory!!
    CODE:
    IF (@object_type = '18' and @transaction_type = 'A')
    BEGIN
         If Exists (Select * from OPCH T0 Inner Join PCH1 on T0.DocEntry = T1.DocEntry Where T0.DocEntry = @list_of_cols_val_tab_del and T1.[BaseType] != '20')
         BEGIN
              Select @error = -1, @error_message = 'Please Create Good Receipt Note Before Invoicing'
         END
    END
    ERROR:
    Msg 4104, Level 16, State 1, Procedure SBO_SP_TransactionNotification, Line 36
    The multi-part identifier "T1.DocEntry" could not be bound.
    Msg 4104, Level 16, State 1, Procedure SBO_SP_TransactionNotification, Line 36
    The multi-part identifier "T1.BaseType" could not be bound.
    Thanks in advance.
    Kanu

    Hi Kanu,
    Try:
    IF (@object_type = '18' and @transaction_type = 'A')
    BEGIN
         If Exists (Select T0.DocEntry from OPCH T0 Inner Join PCH1 T1 on T0.DocEntry = T1.DocEntry Where T0.DocEntry = @list_of_cols_val_tab_del and T1.BaseType NOT IN ('20'))
         BEGIN
              Select @error = 18, @error_message = 'Please Create Good Receipt Note Before Invoicing'
         END
    END
    Thanks,
    Gordon

  • Free goods are not copying in credit memo from invoice

    Dear Gurus,
    I have made a invoice having two line items 1.normal goods with sale price and 2.free sample goods(part of promotional scheme) without any sale price.
    but while making credit memo for receiving goods back in cancellation of invoice , i am facing problem for free goods. system is not copying the free goods in credit memo and copying only normal goods.
    what can be problem for not copying? whether i am following some wrong procedure or some configuration is missing.
    please advise me with your valuable suggestions.
    Thanks in advance
    Parag

    hello, friend.
    first of all, the free goods are not relevant for credit memo since the customers never paid for these in the first place.
    however, i observed that after cancelling the invoice, you still issued a credit memo?  this may not be the proper process.  when you cancel the invoice, entries into the customers Accounts Receivables are reversed as well (we are assuming no payments are posted yet).  so there is no need to issue credit memos. 
    if you are referring to another process, please clarify the same.
    regards.

  • PRD account different between good entry and invoice entry

    Hi all
    I have a company with purchase account posting active,  with the posting method "at clearing account amount". In the good entry the PRD account is of "calculation" type (not balance sheet relevant) like the stock account and the offsetting purchase account ; the total sum of  these three them is 0 (it is a must, otherwise I shall do a false in balance).
    But in the invoic receipt I have only three lines: vendor,GR/IR account and PRD, so I cannot use the same account I have in good entry because the GR\IR is a Balance relevant account, so the PRD must be also.
    No idea about how I can force a different account for the PRD in invoice receipt?
    thanks
    Davide

    Hi
    Working a standard price can happen if the invoice price is different from that of purchase order. SAP register the variance in GR a first time between the standard value of product and PO value, and after a delta in IR corresponding the eventual difference between the PO value and Invoice value.
    Davide

  • Explain the term 'If a quantity of goods received is not yet calculated'

    Hi SAP Experts
    I read the note: 212286-Overview note: Valuation during goods movements.
    In the end, it reads
    "Determination of credit posting to order during the goods receipt for production order During goods receipt for the production order, the value of goods movement is determined by the credit of the production order.
    If a quantity of goods received is not yet calculated, credit posting
    to order is calculated from plan credit.
    If the quantity of goods received is already calculated, the order is credited for actual costs."
    Please help to explain the sentence, thanks you.
    If a quantity of goods received is not yet calculated, credit posting
    to order is calculated from plan credit."
    Regards
    Mike

    Thank Mukthar.
    I know the logic for the production, but i don not think the sentence' if the quantity of goods received has not yet been calculated' is apply to the logic of production.
    For example, 135103-GR for purchase order in foreign currency: Rounding, In the beginning, it also reads "The problem can occur if the quantity of goods received has not yet been calculated.".
    It not only describe the production order, but also describe the purchase order. so i think it apple to one special situation.
    Regards
    Mike

  • AR / invoice before Good Receivable how to handle

    Hi Experts,
    What is the best way to book an AR Invoice of goods which are not yet received in stock. And is it possible to connect the AR invoice to the Goods receivable after the stock is available in the Warehouse??
    THX
    Mark

    Hi
    What is the need of booking in System before receving the physicall stock,(its wrong practise also if ur entering without having the physicall stock.) for any info if u wana to maintain in system then make invoice and save it draft , so it will not store in the system that it will not effect the stock.
    Explain ur full req.so it will be better to give suggestions..
    Giri

  • Only show invoice in MIRO that are completely goods received.

    Hi,
    Is there any way to block invoices from listing in the PO search function in MIRO before they the PO is completely goods received and all positions are closed?
    All tips are appreciated!

    Hi try this not sure it will help  you or not
    int-code  ME2N
    click on  dynamic  selection then click on purchasing document item ,then select delivery completed indicator and mark  X
    now  on selection parameter select GUTSCHRIFT =invoice exist
    and execute this report for a plant and check result
    Regards
    Kailas Ugale

  • Why am I not receiving monthly invoices????

    Why am I not receiving monthly invoices???? And why are they not appearing in my Adobe account even though Adobe are happily taking the monies out of our account every month!!

    I have the same problem. I contacted Adobe support a couple of times because of this. I always get the answer, that invoices are in my order history. But the history is completely empty. Even though my company bought a lot of products from Adobe.

  • Hello - I live in the UAE and my itunes account is regsitered here. Unfortunately the choice of music is not as good as when my account was registered in the UK. I cannot register my account in the UK as my bank details are all in the UAE now. HELP!

    Hello - I live in the UAE and my itunes account is regsitered here. Unfortunately the choice of music is not as good as when my account was registered in the UK. I cannot register my account in the UK as my bank details are all in the UAE now. HELP!

    Sorry, but no help is possible. You can only use the UAE iTunes Store, and Apple can only offer what content they are able to license for sale in that country. You'll have to look elsewhere for content. Whether there are any other download stores able to sell in the UAE I don't know. You may need to purchased CDs and import them into iTunes.
    Regards.

Maybe you are looking for

  • ICloud with Numbers: Only Works In One Direction?

    Hello, Trying to get started with iCloud and a problem from the outset; I use two computers; iMac OS10.8.5 Macbook Pro OS10.9.2 and Numbers 2.3 on both. When I upload to my iCloud the files can be read by both computers if I upload from my Macbook, b

  • How do I show invisibles in Pages for iPad?

    I'm using Pages on an iPad 2.  I'd like to show "invsibles" or formatting marks in my documents but don't know how to do it.  Can anyone please help? Thanks Alison

  • 11.5.2 patch still available?

    Another listserver posted a note stating that Oracle had recalled the 11.5.2 patch (1354512). It took me 5 attempts to download the 395Mb patch, but it appears to still be available, anyone heard about this?

  • How to Transform a Circle?

    This is probably a simple question for most of you, but I'm trying to make a circle split into 3 equal parts, and then make the parts come back together. My main issue is figuring out how to split the circle into 3 parts (its just a normal outline ci

  • KT6V Modem problem

    I have a KT6v motherboard.  I'm unable to use dial up.  I've tried another modem with no change in problem.  I can use the onboard nic with no problem.  I did have notice the green light on the onboard nic stays on all the time.  Even when the nic is