GRN to AP Invoice Doc total changes

Hi All
We have a problem with the Invoicing AP Invoices from GRV's, the document total changes and leaves the document open.
I copied one GRV with doc total R 9215.79  to AP Invoice and the total was R 9215.41. The only thing that I changed was the Doc date from 04/101/2011 to 22/12/2010.
The supplier has payment terms set to 7days and there are no discounts on payment or penalties.
Hope its clear
Regards
Bongani

Hi......
The problem is might be with Tax Amount. I think you are trying to change tax manually in GRN level and when you try to copy to AP Invoice it is coming to its original amount.......
Please check this carefully....
Regards,
Rahul

Similar Messages

  • Hi All Experts , In PLD's Doc total amt in USD shud be  convert in words

    All Experts,
    As per  Client requirement in document printing they required Document total amount in words.
    I am able to convert in total amount in words but main issue is its shown  proper if  document in US Dollar amount.
    Can i make amounts in words in Upper case.
    Pl give me solution for these issue.
    Thanks
    Milind

    Hi  milindpv,
    yes, correct.
    It is possible on SAPB1.
    IF you need to print the Doc. Total in words.
    Try this,
    ->> Open the require PLD.
    ->> Create 1 Database Field in Page Footer.
    for example,
    Convert of A/R Invoice Doc.Total in Words.
    Table -> OINV - A/R Invoice.
    Cloumn -> DocTotal
    =>> Goto Properties Window and Select the Font( Showcard Gothic ) at Format Tab.
    =>> put the Tick mark in Sum in Words at Format Tab on Properties Window.
    Save and Run the Print Preview.
    OR
    ->> Create 1 Formula Field in Page Footer and
    ->> Copy Doc.Total FieldID in PLD and Paste in Formula Field.
    =>> Goto Properties Window and Select the Font( Showcard Gothic ) at Format Tab.
    =>> put the Tick mark in Sum in Words at Format Tab on Properties Window.
    Save and Run the Print Preview.
    Regards,
    Madhan.

  • GRN mismatch and invoice blocked for payment

    Hi Team,
    We have an issue with regards to Invoices not being allocated to the right GRN's.  This causes some invoices to be paid without approval, and other invoices that have been approved to be blocked for payment.
    According to standard SAP requires the total GRN quantity to match the total invoice quantity in order for the Invoices to be released for payment.  Unfortunately many get stuck in a payment cycle and invoices are not released for payment, for example;
    We have an  order of a quantity of 100
    We receive an invoice (qty 10)  this is posted
    We complete the GRN (qty 10)
    This should release for payment but unfortunately just prior to the bacs run and running MRBR to unblock any invoices we post another invoice for a qty of 10. 
    Now the total GRN and Inv values mismatch and no invoices will be paid.....
    The cycle goes on and on and more invoices are blocked for payment, even though some GRN's are completed.
    where the GRN value is lower (75) than what has been invoiced (78).  In order to rectify this I need to go into each individual invoice, check the delivery note number and match it off against the GRN.  When I find an invoice that doesn't match a GRN, in most cases these have taken an incorrect GRN and have been paid.  I have to chase for the GRN to be completed or for the invoice to be removed.  Once the totals match I then have to pray no more invoices are posted until the BACs run has gone!!
    Can we apply a fix to force those invoices that match a GRN be approved for payment even if the total's don't match (so the matches will occur line by line and not from the totals)?
    Thanks

    Hi,
    You can acheive this by setting GR based IV indicator in PO. hence system won't allow to do invoice with out GR. system will ask quntity match between GR and IR. Ultimately no mismatches will occur. So do GR first and next IR by setting this indicator in PO.I hope this will resolve your issue. Thanking you.

  • No Matching Record Found in Invoice Doc Creation (ODBC -2028)

    When I add an Invoice Document with DI Api, system returns a mysterious error : "-2028 No Maching Record found (ODBC -2028)".
    I work with SAP Business One 2005A SP01 PL11.
    My code is:
            ' Header
            vInvoice = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
            TestataFattura = Split(strTestata, "|")
            '1  FTCLCodice          (Card Code)
            '2  FTDataFattura       (Doc Date)
            '3  FTCPCodice          (Payment Terms)
            '4  FTTotImponibile     (Total begin VAT)
            '5  FTTotIva            (VAT Total)
            '6  FTTotFattura        (Doc Total)
            '7  FTNumeroFattura     (Invoice Number)
            '8  FTRGCodice          (VAT Code)
            vInvoice.CardCode = TestataFattura(1)
            vInvoice.HandWritten = SAPbobsCOM.BoYesNoEnum.tNO
            vInvoice.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
            vInvoice.DocDate = Now 
            vInvoice.DocTotal = TestataFattura(5)
            Dim vecchiaData As DateTime = TestataFattura(2)
            Dim nuovaData As New DateTime
            nuovaData = vecchiaData.AddMonths(3)
            vInvoice.TaxDate = nuovaData 
            vInvoice.Comments = "Questa è una fattura importata da T.D. -NR: " & TestataFattura(6)
            counter = 0
            ' Lines
            While dettDataReader.Read
                vInvoice.Lines.SetCurrentLine(vInvoice.Lines.Count - 1)
                If dettDataReader.Item("DFImporto") <> 0 Then
                    vInvoice.Lines.ItemCode = dettDataReader.GetValue(2)
                    vInvoice.Lines.ItemDescription = dettDataReader.GetValue(3)
                    vInvoice.Lines.Price = dettDataReader.GetValue(4)
                    vInvoice.Lines.VatGroup = dettDataReader.GetValue(5)
                        vInvoice.Lines.AccountCode = dettDataReader.GetValue(6)
                    If dettDataReader.IsDBNull(8) Then
                        vInvoice.Lines.Quantity = 1
                    Else
                        vInvoice.Lines.Quantity = dettDataReader.GetValue(8)
                    End If
                    sFlagRigaDati = "Y"
                Else
                    vInvoice.Lines.FreeText = dettDataReader.GetValue(3)
                    sFlagRigaDati = "N"
                End If
                If sFlagRigaDati = "Y" Then
                    If vInvoice.Lines.LineNum <> 0 Then
                        vInvoice.Lines.Add()
                    End If
                End If
            End While
            If retval = 0 Then
                'Add the Invoice
                retval = vInvoice.Add
         End If
    Thanks for any help.
    AL.

    Hi Eddy,
    I have tried to use the code of example inserted in help of the SDK for the insertion of an invoice being used the same data that I must insert through SDK but the error remains the same one.
    The code that I have used as test is much simple one, I insert before the header and then two lines of detail.
    Source code in SDK Help:
    Sub AddInvoice_Click()
        Dim RetVal As Long
        Dim ErrCode As Long
        Dim ErrMsg As String
        'Create the Documents object
        Dim vInvoice As SAPbobsCOM.Documents
        Set vInvoice = vCmp.GetBusinessObject(oInvoices)
        'Set values to the fields
        vInvoice.Series = 0
        vInvoice.CardCode = "BP234"
        vInvoice.HandWritten = tNO
        vInvoice.PaymentGroupCode = "-1"
        vInvoice.DocDate = "21/8/2003"
        vInvoice.DocTotal = 264.6
        'Invoice Lines - Set values to the first line
        vInvoice.Lines.ItemCode = "A00023"
        vInvoice.Lines.ItemDescription = "Banana"
        vInvoice.Lines.PriceAfterVAT = 2.36
        vInvoice.Lines.Quantity = 50
        vInvoice.Lines.Currency = "Eur"
        vInvoice.Lines.DiscountPercent = 10
        'Invoice Lines - Set values to the second line
        vInvoice.Lines.Add
        vInvoice.Lines.ItemCode = " A00033"
        vInvoice.Lines.ItemDescription = "Orange"
        vInvoice.Lines.PriceAfterVAT = 118
        vInvoice.Lines.Quantity = 1
        vInvoice.Lines.Currency = "Eur"
        vInvoice.Lines.DiscountPercent = 10
        'Add the Invoice
        RetVal = vInvoice.Add
       'Check the result
        If RetVal <> 0 Then
            vCmp.GetLastError ErrCode, ErrMsg
            MsgBox ErrCode & " " & ErrMsg
        End If
    End Sub
    Many thanks for your help.
    Alex.

  • AR Invoices not getting changed to the status Close

    Hi,
    The AR - Invoices are not changing the status - from 'open' to 'close' even after applying the receipts aganist the invoices.
    Kindly advice what could be the problem or any functional setup should be done to change the status.
    Thanks
    Ramya Nomula

    Hi,
    Do you mean ra_customer_trx_all.status_trx or ar_payment_schedules_all.status?
    If you mean the first one, it is not supposed to be changed when the invoice is totally paid.
    When the balance goes to 0, AR changes the column status in ar_payment_schedules_all. According to AR user guide, you can use ra_customer_trx_all.status_trx to define your own approval system.
    Regards,
    Ketter Ohnes

  • Wrong Shipping Cond. - Sales Doc Vs Invoice Doc

    Dear friends ,
    I solicit your sugessions for the following issue I am facing :
    In a particular sales order , the shipping condition is Road. But in the invoice print for this order , the route is coming as  Air transport. Ideally , if the shipping conditions is as Road in the sales order, it  must be appearing as Road in the Invoice also . But , on what situations , the transport as 'Road' In Sales doc. will be changed in other mode as 'Air Transport' in Invoice doc ?
    I analyzed , I found  in the invoice view VF03 , clicking 'Go to' >Header>Foreign Trade and customs --> , I  can see in the handling tab , the mode of transport is ' Air Transport ' as fig. below. Whether this text may have appeared in the invoice Print out ? But user is not agreeing with this .
    But plainly to put my request , where is the  shipping condition is determined in the Invoice document and how we can control in the output (As Road , Air , Sea etc? )
    Your advice can be of much help ,
    Thanks in advance,
    Karthik

    hi,
    shipping condition - header-general information you can see the shipping condition,
    mode of transportation - for trade/custom
    mode of transport determination = shipping point + plant
    img -- sales and distribution -- transportation data
    i think this will help you
    regards
    senya

  • Invoice Doc Display for Ship to country

    Hi,
    I am trying to Display Invoice Doc's based on Ship-to-country.
    I am Displaying Invoice amount, Payment amnt and With holding tax amnt.
    I am getting Payment Doc's(cleared) and Invoice Doc's from BSAD.
    Here the problem is I am able to get Ship-to-country for only Invoice Doc's.I am not getting for Payment Doc's.
    For Ex:If there are multiple Invoices for 1 Payment Doc and the Invoices are for Different Ship-to, Only specified Ship-to Invoices will be captured.
    Here the criteria is Total Invoice amnt should be equal to Sum of the Payment amnt and Withhold amnt.
    Same situation will arise when multiple payment document's for multiple Invoices.
    They way I am taking Ship-to-country is From Invoice doc>Sales doc>Ship-to.
    Please help me if any thing I missed in the flow to get the correct result.
    Thanks in Advance for your reply.

    hi,
    invoce number and invoice document number are same. you just give the same invoice document number here.
    otherwith check with XBLNR ( reference document number )
    cheers,
    sasi

  • Why the doc total amount is not matched with the total item line amount?

    Hi,
    Recently when i try to update something in sales order via my add-on, i got an error said u201CThere is a difference between the document total and its components.  [ORDR.DocTotal][line: 0] Iu201D Then i checked the sales order in SAP B1, I found the document total amount was not matched with the item line total amount. Actually the item line is quite simple, there is only one item line with qty 1. How comes the document total could be different with the amount from item line? I know the document total amount is a read-only field which is calculated automatically by SAP. This is really weird for us, we don't know how this happened.
    Has anyone experienced similar situation like mine and how this happens?
    Thanks,
    Lan

    I am having this same issue and I have additional information.
    I am on ver. 8.8 PL 16.
    Periodically (mulitiple times a week), when a Sales Order is created, the Doc Total amount is -zero- when there are clearly items that have a price associated with them. This causes an error when Adding the document. Sometimes, I can just change the quantity of one of the items, which forces the Doc Total to update.  Most of the time this does not work, though.  I end up having to restart the SAP client and then everything begins to work as it should.
    This behavior is occuring on mulitple machines in our office.
    Earlier in this thread, Rahul mentioned that they currency rounding was turned off and that this could be part of the problem.  In fact, we were having issues with Currency Rounding and did turn it off not long ago.  Rahul, can you explain better what you meant by "give the proper amount so that you can overcome the error..."
    Randy Davis
    Denver, CO
    Edited by: Randy Davis on May 16, 2011 2:01 PM

  • Totally Change to Windows 8.1 English on Yoga 2 Pro bought at China

    Hi Everyone,
    I bought Y2P i5/4gb/128gb from China last December because it still not launched at my Country, actually I realize that it's imposible to change the language into english in Windows 8.1 Chinese edition.
    Can I have the support from official how to totally change my Y2P to become english version, even I should pay?
    TIA

    closed..
    Problem solved.

  • Can't figure out why colors don't totally change when you select type with curser? It looks like it has by looking at it, but when you highlight the area after the old color is still there. It happens with objects to. Driving me NUTZ. Help!

    Can't figure out why colors don't totally change when you select type with curser? It looks like it has by looking at it, but when you highlight the area after the old color is still there. It happens with objects to. Driving me NUTZ. Help!

    Select the text, and open the Appearance palette (Come on guys, text highlight is irrelevant, it happens to objects too says the OP), and see what's listed there.  For a simple text object, there should only be a line item "Type", followed by "Characters", and when double-clicked the Characters line item expands to tell you the stroke and fill color.  For a basic object, there should be a fill and/or stroke.
    What happens sometimes, is that you end up adding extra strokes/fills to objects or text, and the appearance palette is where that will be noted.  Especially when you are dealing with groups, and/or picking up a color with the eyedropper, you may inadvertently be adding a fill or stroke on top of something.  You can drag those unwanted thingies from the Appearance palette into its own little trash can.

  • TO Fetch Outgoing Excise Invoice Doc Num & DocDate

    Hi
    I hav designed Sales A/R Inovice Crystal Report,
    I want to put Outgoing Excise Invoice Doc Num & DocDate in the Report but i hav a problem in query with joining
    I am gving here query plz help me to fetch Outgoing Excise DocNum & DocDate
    SELECT T0.DOCENTRY,T0.NUMATCARD,T0.DOCNUM,T0.DOCDATE,T0.DOCDUEDATE,T0.CARDCODE,
    T0.CARDNAME,T0.ADDRESS, T0.ADDRESS2,'' AS LRNUMBER ,''AS LRDATE ,''AS TRANSPORT,
    ''AS AGENT,T0.DOCNUM,DATEDIFF(DD,T0.DOCDATE,T0.DOCDUEDATE)DUEDAYS,T0.DOCTOTAL,
    T1.QUANTITY,T1.PRICE,'' AS U_RGDS,'' AS U_SPDS,'' AS U_CSDS,T1.LINETOTAL,T1.DSCRIPTION,
    T12.TAXID1,T12.TAXID11,T12.TRANSCAT,
    '' AS PARTYCODE,T4.SWW,T5.BATCHNUM,
    (SELECT DOCNUM FROM ORDR A,RDR1 B WHERE A.DOCENTRY=B.DOCENTRY AND B.BASEENTRY=T1.TRGETENTRY) ORDDOCNUM
    FROM OINV T0
    INNER JOIN INV1      T1 ON T0.DOCENTRY=T1.DOCENTRY
    INNER JOIN INV12 T12 ON T0.DOCENTRY=T12.DOCENTRY
    INNER JOIN OITM  T4 ON T1.ITEMCODE=T4.ITEMCODE
    LEFT OUTER JOIN IBT1 T5 ON T1.BASEENTRY=T5.BASEENTRY AND (T1.BASELINE=T5.BASELINNUM  AND T5.BASETYPE=15)
    ORDER BY T0.DOCENTRY

    Hi,
    1. You Manufacture goods at your factory
    2. These goods are transferred to the Branch office. Here a STN ( stock Transfer Note) is created and an outgoing Excise is created where you need to take the To Warehouse to be the branch Office
    3. For this you correspondingly create the Incoming Excise invoice by taking the From warehouse as Factory. Here the Cenvat credit is recorded and correspondingly the RG registers are updated.
    4. Suppose the Branch Office returns the goods then again a STN is created for  which the Outgoing Excise is to be created first having to warehouse as Factory and IEI where the from warehouse to be Branch office. Here again the RG registers will getr updated and Cenvat credits will get reversed.
    Now as far as the Documnet Numbering Series is concerned .......the OEI and the IEI creation will have to be created whenever STN and A/R Invoices are created. Please note that you need create the OEI and the IEI for an item only once . If you have transferred goods from Factory to Branch office then the OEI and the IEI created here will be enough ....you need not create the OEI  again while invoicing to the final customer from the Branch office.
    What it effectively means is that since you are creating the Excise invoices ( OEI and the IEI) based on both ST and Direct Invoices ( Directly invoicing to the customer from factory) the OEI series and the A/R invoice series will never be the same.
    J Nagesh

  • Problem with Doc type change in ME51n

    During ME51N, when I change the document type of PR system keeps on Processing/busy mode, takes long time (almost 5min) to effect the doc type change in drop down.
    there is no processing time taken if i enter the  the other data in the transaction like quantity,Plant,Purchasing organisation.
    So my Problem is that system takes too much type only when I try to change the Doc Type of PR in ME51N.
    (Note: In debug mode I try to locate the pain point, I noticed that system stuck at module 'Even_pie_finished'...there it keeps on processing continuously.)
    Please input on problem. I am putting this on MM forum at times.

    Thanks for Reply,
    But the Problem is not on changing the Doc type rather Problem is with too much time taken by system when I try to change the doc Type of PR. Prerequisites related to changing the doc type are there in place.
    System goes in into processing mode for long time movement I change the Doc type.
    Jurgen sir, Dev & Prasoon please suggest some input.
    Just to correct in my question module name is 'event_pai_finished'
    There must some infinite loop is getting executed in programme i guess.

  • Importing html totally changes site. How do I fix in Muse?

    I am creating a new web site. I have a lot of content to include that I have created in Word, since that is the only practical way to create white papers that I know of. It took me a while, but I was finally able to create html code that works pretty well, even including the jpg graphics once I properly set up the website, with a folder containing the .jpg files. But, the problem is that once I import the html files, the web site page is totally changed.
    By that, I mean that the menu is eliminated, and the header is destroyed, being replaced by simple text in a small font.
    What I did was to create an html file of the white paper by converting the word 2007 file into a pdf file. Then, using the latest version of Adobe Acrobat, I converted that file into an html file. I then imported that html file into the main portion of my web page, below the header. But, it changed the structure of the web page. My menu is gone, and the header is just text in the same size and font as the white paper.
    I suspect I can correct this by editing the page in Dreamweaver, but I suspect I am doing something wrong in Muse. Do I need to create a "frame" in Muse to contain the html code? I tried bringing it into a text box, but that did not work, obviously, since html code is not text, at least not as far as the appearance of the web site is concerned.

    edtroy From what you describe, it sounds like you're importing a complete web page into the Muse page. This will have a detrimental effect, since the code is being added to the existing page code.
    I think the only way to do this easily, with the content as it stands, would be to upload the html page you've created to the assets folder (File > Add Files for Upload). Then create an iframe on your Muse page to load the page content. Something like <iframe src="/assets/yourhtmlpage.html"></iframe>. Follow the link for more details on the HTML iframe tag.
    I hope this helps.
    David

  • Hello I just made a playlist and it was too long for  cdd so I burned it to a dvd. When I went to check it the oreder of the songs was totally changed. Is this something I can fix?

    Hello I just made a playlist and it was too long for a CD so I burned it to a DVD. When I went to check it the song order was totally changed, is this something I can fix?

    Thank you SO much.  Sorry.  I am flustered and didn't even notice.  LOL
    Have a good night.  I have posted my question in the correct forum now.  Thanks for your help.

  • Invoice Plan Status Change

    Friends,
    Here is my requirement...
    When a batch program runs (using RMMR1MIS), based on certain criteria, the Invoice plan status changes from A to C (table : FPLT-FKSAF).
    I would like to start a workflow by tracking the status change, but I do not see any default event or update in any change document....
    Thanks in advance.
    Muthu

    HI,
    Unfortunately I can only confirm that there is missing functionality
    for change management in area of MM invoicing plan. No change documents
    are created in CDHDR and CDPOS tables for any change for invoicing
    plan.
    Best Regards,
    Arminda Jack

Maybe you are looking for

  • Problem with services hierarchy and purchase order

    Hi I'm in Srm 7 EHP8(classic scenario) and i have a problem with services hierarchies: I create a Purchase requisition in ECC with the next structure: 1.Hier 1.1 Serv1 1.2 Serv2 1.3 Serv3 Then I upload this PR to SRM(I activated the BBP_EXTLOCALPO_BA

  • Request Error  Calender could not be found.

    This just started happening lately when I've opened iCal but whenever I refresh the Calender, I get an error that says: Request Error Calender could not be found. And it just doesn't pop up one time. How can this be fixed?

  • What are the random swoosh noises...

    After I log in within the first 5 minutes I will hear that random swoosh noise. Like the noise you hear when you have new e-mail in your mac mail inbox. But the thing is I have not set up the Macmail thing so I don't know why I hear that random swoos

  • Converting daily date format to Calendar format 466

    Hi All, I need to convert the DAILY DATE FORMAT TO FORMAT 466... (4 WEEKS IN PERIOD 1,6 WEEKS IN PERIOD 2 ,6 WEEKS IN PERIOD 3, 4 weeks in period 4,6 weeks in period 5,6 weeks in period 6) I'm thinking buckets. NTILE perhaps? But how to approach for

  • Report size

    I had a group of 25 tables (one master and 20 childs). I want to make a compact report. the page size may be 81/2X12 when i select page size then i can't get more then 5 tables in a report. vinod