Invoice Value Mismatch in Output Printouts

Dear Experts,
We are facing a problem on invoice printouts as it is mismatched with oprginal values in the system, also we have checked in sales order printouts it's accurate with orginal values but the same value in not updating in invoice outputs.
Actual condition price should get print on all the outputs, please note that the problem occurs only with old invoices or invoices which already printed in past
Could anyone please let me know what is the root cause for this.and what is the solution to get the actual prices into invoice outputs.
Thanks in advance.
JA
Edited by: javeed ahmed on Oct 29, 2010 3:44 PM

It sounds like you have a problem with the print output layout set u2013either the sapscript or smartform or adobe form.  As the problem only exists with old invoices, I would look for some u201Chard-codingu201D on the layout set that dos not properly handle the way your pricing procedure  currently sends the data.
A u201Cvalue-mismatchu201D could result from the layout set using an obsolete subtotal from your pricing procedure. 
I would have your ABAP support sit down with your SD person and scrutinize the communication structures sent to the layout set.
Regards,
Ken

Similar Messages

  • The Report returning incorrect Invoice values

    Hi,
        When we are executing a  particular report in BEX, it is returning incorrrect values for a few PO numbers for the field  invoice values .The rest of the PO's have correct invoice values.
    I have checked in the cube and ODS and it has the same incorrrect values for these PO's.But in R/3 system, when i check the respective PO ,it has correct values in the TCODE ME23N.
    But in BW system , it is showing incorrect values.I tried to view the same PO Number in the datsource in RSA3. But here when i extract the data and check the output list, I could not find the PO which i am looking for.
    Also, can you please tell me.How can i check the respective PO's in RSA3.Is there any different approach.
    Do provide soem inputs.
    Thanks,
    Samir

    Hi Samir
    In RSA3,do you have selection on PO,if so then you can give that particular PO and extract and crosscheck.
    Orelse if you have selection on 0FISCPER,and if you know when this PO has been created then give that period and extarct,there you can able to find that particular PO
    If  the values in ODS and cube are incorrect,then you need to crosscheck first in PSA( in the staging layer),since in PSA you will get the raw data exactly the same as in the source system
    Regards
    Jagadish

  • RE:Invoice & GRN mismatch issue

    Hi All,
    one of my user is facing an issue with regards to Invoices not being allocated to the right GRNu2019s.  This causes some invoices to be paid without approval, and other invoices that have been approved to be blocked for payment.
    for ex:
    We have a 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 paidu2026..
    The cycle goes on and on and more invoices are blocked for payment, even though some GRNu2019s are completed.
    is there any way we can apply a fix to force those invoices that match a GRN be approved for payment even if the totalu2019s donu2019t match (so the matches will occur line by line and not from the totals)?
    Thanks

    Make sure you use goods receipt based invoice verification (set GRbasedIV flag in vendor master)

  • Contract Release Value is not updated with Confirmation or Invoice value

    The release value for a contract in SRM EBP shows the value of purchase orders created using that contract.  It does not take into account confirmation and/or invoice values.
    For example I create a PO for 10 items at £100/each using Contract ABC.  The total value of the PO is £1000 and the release value contract ABC would be £1000.  If I then only confirm and invoice 5 items (£500) for the PO, the release value of contract ABC stays at £1000 even though I would expect it to update to £500
    Therefore the release value of the contract could be incorrectly overstated if purchase orders are created against the contract but not actually invoiced/confirmed for their total value.
    Please could you confirm the correct functionality and how I could find out the the true invoice value of purchases made using a contract?

    Hi
    <u>Which SRM and R/3 versions are you using ?</u>
    <b>Meanwhile, please go through the following SAP OSS Notes, which will help in this case -></b>
    Note 622045 Net value in release overview of contract is incorrect
    Note 493519 Release quantities are not updated
    Note 1108322 BBP_CONTRACT_CHECK wrong calculation of values
    Note 1102886 Contracts: Lesser Field length for Target Value
    Note 1082548 Check of Released quantity and released value in contract
    Note 656181 Release synchronization of releases on services
    Note 874920 Currency not allowed to be changed for a 'Released' Contract
    Note 703771 Resetting release values during purchase order item deletion
    Note 643823 BLAREL: Incorrect values in service segment
    Note 519879 BBP_CTR_MAIN: No message when values in Contract are reset
    Note 520734 Target value not converted if currency is changed
    Note 528897 Documents not displayed in contract release order overview
    Note 430373 BBP_CON_MNT: No releases available
    Note 491993 Entry of contracts with target values
    Note 437491 Purchase contract: Incorrect update of the call-off values
    Note 406799 BBP_CON_MNT: Fields after contract release ready for input
    Note 398168 Purchase contract: Target value is not changed
    <b>Do let me know.</b>
    Regards
    - Atul

  • How to update excise invoice values after migo.

    Hi Guru's,
    I have checked the forum. but did not get exact solution.
    Here im having the problem with  bapi  BAPI_GOODSMVT_CREATE . This bapi don't have the structure to update excise invoice values.
    I have one bapi  'BAPI_EXCINV_CREATE_FROMDATA'  to update the excise duty, but in that also i didn't find the structure
    'J_1IEXITEM'  to update the ECS value ( field is 'total_ecs').
    Please help me on this,Thanks in Advance...
    Regards
    Naren

    Hi Krishna
    Do not do excise invoice capture during 103. At that time select the option "No excise entry". Then capture excise invoice during 105.
    The system messge " No selectable items for this document" is prompted since the preceeding document is already assigned with invoice.
    Try this and give feedback.
    regards
    sairam akundi

  • Error assigning varchar2 value to an output varchar2 parameter

    I do not understand why is the procedure erroring out while assigning value to an output parameter.
    It gives ORA -06502 ; numeric or value error
    character string buffer too small
    Procedure is doing something like this
    Procedure Test ( logs_tats out varchar2,
    log_num out number,
    check_num in number) as
    v_stats varchar2(400);
    begin
    if (check_num = 0) then
    v_stats := 'Check something and check something else';
    end if;
    if( check_num +3 <10) then
    v_stats := v_stats || chr(13) || 'Check something and check something else';
    end if;
    if (check_num +5 <15) then
    v_stats := v_stats || chr(13) || 'Check something and check something else';
    end if;
    log_stats := v_stats; -- gives error at this line
    check_num :=0;
    exception
    when others
    --raise_application_error()  statement
    end Test;
    I also tried with removing all 'chr(13)' that I am using and it still gives an error at very that line,
    i tried doing a dbms_output to check the length of v_stats just before error and it is 287.
    Is there any upper limit on the size of output varchar2 ?
    thank you

    How about you try posting the actual code and actual attempt to call it (SQL Plus is great for doing this).
    Procedure Test ( logs_tats out varchar2,and then later
    log_stats := v_stats; -- gives error at this lineYou misspelled the out parameter in the procedure declaration.
    Some notes
    1) use the code tags so your code stays readable
    2) give us complete details including an oracle version
    3) use some naming standard for your variables
       pi_ --> parameter in
       po_ -->parameter out
       l_  --> local
    ... etc
    Makes life easier (pick any standard you find useful and easy to understand).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Intrastat Germany Free Goods comes error "invoice value to be filled"

    Hi Gurus,
    I am running Intrastat in GTS for Germany.
    For free goods we are entering the statistical value but invoice value
    must be zero, because these are free goods.
    But GTS does not allow a Zero value as invoice value.
    What to do? Please help
    Thanks
    Dieter

    Hi,
    This may be fine for this case,  but as explained earlier the same item category is being used when you are doing the normal returns without any reference (stand alone returns).
    So how this will tackle if you remove the pricing indicator totally?  I need to complete the return order as usual but with zero pricing- only when it is referred to free goods invoice and when stand alone returns (or) when referred to F2 value invoice, in these cases the returns will be with value.
    Please get back to me with your answers.
    regards,
    Murali

  • Updating invoice value in po history

    HI gurus,
               I have done vendor invoice through F-43, by using PO document no.... but when I see the PO history, It's not updating invoice values..
    How could I get the values??

    Hello,
    When u post F-43, no PO history gets created.
    To update the assignment field on vendor line items, you need to use 014 (Purchase Order) as the sort key in the vendor master.
    In FBL1N, this will give you the details of purchase order on the invoices.
    Regards,
    Ravi

  • How to send invoice through email with output type RD00?

    What are the configuration settings to send invoices through email with output type RD00?

    Hi,
    Please go through the following links:
    [E-mail|Email Configuration Settings]
    [e-mail|Re: EMAIL BILLING DOCUMENT TO CUSTOMER THROUGH SEND MAIL OPTION IN VF02]
    After triggering the output,goto T.Code SOST and process it.
    So that e-mail will be triggered immediately.
    You can use External send/EDI/simple mail for this.
    Regards,
    Krishna.

  • Viewing Bind variable values in TKPROF output

    DB Version:10gR2
    After tracing a Stored proc , i can see the bind variable values in the raw trace file. But the TKPROF output of this trace file doesn't show Bind variable values. Is there a way i could see Bind variable values in TKPROF output?

    I guess when you think about it, TKPROF is primarily intended to aggregate and summarise repeated SQLs and related statistics from raw trace files. While waits can reasonably be aggregated over multiple exeuctions of the same SQL, bind variables are explicitly associated with individual executions of an SQL and hence cannot be aggregated in the same fashion.

  • PO : Invoice value in ME23N is not matching with 2LIS_02_SCL field BWGEO

    Hi Expert,
                  1) Invoice value in ME23N tcode is not matching with datasource 2LIS_02_SCL field BWGEO in item level
    for few item BWGEO field contain the data with tax but for few item the value is not coming correctly.
    2) The value is not matching for that particular item which has same material document in other Item level.
    eg. PO(eg 60000XXXXX) if item 1 has invoice value with tax is 1300+52 and its material doc is XXXX1234. if same material doc XXXX1234 is present in
    item 2 for another invoice of same material invoice value with tax is 1200+48. In that case the value which is coming in
    BWGEO field is 1300 only.
    I am working in 7.0 system for AFS specific. My whole transaction is in INR.
    Thanks and Regards
    Lalit Kumar

    Please review the information below from one of our deverlopers       
    - it may explain the behaviour you are seeing on your system: 
    When posting a GOODS RECEIPT for a DELTA UPLOAD process you only will    
    have the information regarding the GOODS RECEIPT values (XMCEKET-WEMNG   
    and XMCEKET-WEWRT) and not the invoice values (XMCEKET-REMNG and         
    XMCEKET-REWRT).                                                                               
    When posting an INVOICE for a DELTA UPLOAD process you only will         
    have the information regarding the INVOICE values (XMCEKET-REMNG         
    and XMCEKET-REWRT) and not the GOODS RECEIPT values (XMCEKET-WEMNG and   
    XMCEKET-WEWRT).                                                                               
    The DELTA INIT process is different, because for this process, all       
    information about posted documents against a purchasing order need to    
    processed again and this means that all documents related to an order    
    (invoices, goods receipt, deliver costs, goods issue, etc)               
    are read from database and rebuild one by one in the same process, and   
    of course this information in available.                                                                               
    When posting an invoice, the goods receipt information is not            
    available because of the following reasons:                                                                               
    1 - System standard fields.                                              
    In datasource 2LIS_02_SCL, there is only                                 
    fields BWMNG - that represents quantity, BWGEO and BWGEO that            
    represent values. The information under these fields are dependent       
    from the information of field BWVORG (BW transaction key). This field    
    determines whether these values are from a purchasing order, goods       
    receipt or an invoice. You never have a missing information, but when    
    you want to get goods receipt values, you need to check where the        
    BWVORG correspond to goods receipt process and not invoice.                                                                               
    2 - Performance                                                          
    There are documents as purchasing orders and schedule agreements that    
    are opened for years in some customer system (it may not be your case),  
    where goods receipt and invoices have been posted during all this time.  
    Every time that a new document is posted in order to built the           
    cancellation sentence (ROCANCEL = X) and in order to add the new         
    value in the old, system need to process all previous posted documents,  
    and this means processing time. For this reason when posting invoices    
    only previous documents that are invoices are taken into account and     
    not goods receipt.                                                       
    The delta fields, DBWMNG and DBWGEO, are the difference between the 
    purchasing order quantity and values and the goods receipt quantity 
    and values, then is natural that this information is only available 
    when processing a goods receipt and not when processing an invoice. 
    I'm sorry if this is not the system behavior that you are expecting,
    but this is the normal standard behavior and this is really necessary
    because of the system performance when dealing with documents that  
    have a long order history.                                          
    Hope this information is useful for you
    Best Regards
    Barry

  • Is it possible to input a value in an output field in a batch input sessio?

    Hi everybody
    A quick question
    I wanted to know if theres a way to put a value in an output field when doing a batch input?
    I think its not possible but Im not sure
    PLease do confirm

    Hi sia,
    1. Ofcourse not
    2. BCOS
    3. Batch input
       indirectly is nothing
       but SIMULATION / EXACT COPY OF MANUAL ENTRY
       of that particular transaction.
    4. If the transaction does not allow
       entry in manual mode,
       then it won't allow even in batch input/sessoin/bdc mode.
    regards,
    amit m.

  • Customer ledger receivables are showing less as per Invoice value.

    Hi
    we have checked randomly and found that in few cases Invoice amount which is reflecting in our customer ledger is basic value insted of " net selling value" ( basic price + Tax Price ). Due to which in my customer ledger receivables are showing less as per Invoice value.
    If any body not understand this problem, please send email id.  i will send you screen shot.
    my email id: [email protected]
    Attaching Scrren shot of customer ldeger for customer " Tristar
    Attaching mannually working file for your reference

    Hi
    Is this RP/RW report or standard report ledger ...you are referring , if it is CO-PA report then it will the problem in the forkula. If you double clik on that field you will get the formula ....
    VVr

  • In CJI5 Parked invoice value is added to Internal commitment

    Hi Experts,
    After the upgrade from 4.7 to 6.0. Parked invoice value is getting added to Internal Commitment in report CJI5. We do not want parked invoice value in internal commitment.
    Earlier Internal commitment did not had this value added.
    Please suggest the process how to handle this.
    Regards,
    SKA

    Please try by running program RKANBU01 and then CJEN

  • Invoice value in indian currency

    hi
    i have created a alv and the problem i have is that if i go for 21(export) the total invoice value(netwr) comes in foreign currency.
    my question is how to display it in indian currency.

    Use the Function module
    UNIT_CONVERSION_SIMPLE
    Regards,
    ravi

Maybe you are looking for