Cost in document currency is displaying wrong values

Hi Experts,
We have observed for some of the documents in VF03, cost is coming wrong.
Scenario :
When we are going to VF03 screen Cost in document currency is some value, when we click on the material and go to condition tab and then come back to previous screen, Cost in document currency is some other value.
For Ex : For Billing Document A, intially Cost - 1000 when we clikc on the material and go to condition table and then come back, then the cost - 500.Document type is Z document type. For only some documents we are getting this kind of error.
Kindly help me on this.
Thanks and Regards,
Zakir Appas A

Hi kavi,
Purge your cache in rpd and try to see the grand total once again. For me data is displaying properly now.

Similar Messages

  • Display the document currency instead display Currency in Report

    Hi Experts,
      I am having  a query in support system, in that one characteristic called document  currency is there under Unit Dimension and this Doc currency info object  having the Display currency and Document currency as Variables. Document currency Info object is in Free characteristics without related  variables (Disp.curr and Doc.curr)
    When I execute the query  defaultly Display currency will appear as a  variable in selection screen, because customer exit(cmod) has created like that
    Now user want to display the document currency instead Display currency  in the report, may I know how can I solve this problem?
    Here I am unable to get the customer exit  detatils and which program is there in CMOD, can anyone suggest me, how I will get the details?
    And one more requirement in this CR, that is user want to display the key figure amount in the report should be displayed with the document currency amount only
    May I know, want to do any settings for this?
    Thanks to All
    Regards
    Mrudula

    Hi rajesh,
    1.customer exit value you can change in CMOD,select your project and go to components  and select EXIT_SAPLRRS0_001.there go to  include zxrsru01,and change  display variable to document currency variable.
    2. if u want to display your key figure value in document currency ,,go to that key figure info object ,,,in currency ( reference) field give document currency info object.Then map the respective amount value again in transformation.load the data, now  in report document currency will be displayed along with key figure amount.
    Thank you,
    Joseph

  • BEx Displays Wrong Values After Reloading InfoCube

    I am very new to all of this, so there is a good chance I have just done something stupid.  I have an InfoCube in which I deleted all of the data, and then reloaded it with corrected data from the PSA.  If I look at the raw data in the InfoCube, it looks fine.  If I run a query with either BEx Analyzer or BEx Web Analyzer, key figure data is doubled, as are the result rows.  I believe it has to do caching for that particular Query, because I can create a new one and it will display the data correctly.  Does anyone have any ideas what might be causing this to happen? Or how to clear out the cache?
    Thanks

    Well, by the time I got back to look at it, it was working fine.  Which told me it was related to caching.  So I decided to recreate it.  In order to do this, I cleared out the request from the InfoCube, and then went and modified a few rows in the PSA.  After the DTP, I once again checked the Query and it was wrong.  I first checked the Request IDs, and I only had the new one.  I then went into RSRT and deleted just the cache for that query.  After that, the query was working again!  Thanks for your help. 
    Now my questions are how long does it take for the cache to recycle, and what actions can prompt it to recycle (such as changing the query)?

  • Aggregation displays wrong value

    Hi,
    OBIEE 11.1.1.5
    I have 3 columns, Column1,Column2,column3
    based on 3 columns,I have done agregation like below
    a=column1*column3 (result comes correct)
    b=column2*column3 (result comes correct)
    c=a/b (result wrong)
    Something like this i have used : (column1*column3)/(column2*column3)
    can i know why it comes wrong

    Bernhard,
    I must correct what I said in the last post. The correct statement is: When a region is rendered, the items in that region obtain their values and those values are also copied to session state. They can be referenced on the page after that point. What is inconvenient is that after an automatic row fetch process has already executed, e.g., before header, you can't reference the associated items to obtain the fetched values until after the items are assigned values during the rendering step. That's what we hope to fix.
    Thanks,
    Scott

  • Clstr display wrong value

    Hi,
    ( Payroll is already posted. I need solution bec..from next payroll onwards it shows correct values)
    /552 State Net  Subs Adjustment =  500.00
    is not display in pay slip. But it  add in cluster table.
    What to do? to get proper values.
    Pl give sugg.

    Hello,
    This query is really not clear. /552 is basically sum of /551 of retro periods processed during payroll run of current period - with a reverted sign. It will be included in bank transfer (/559) or cash payment (/557) wage types. Usually these wage types are posted. So /552 may not be configured for posting. Depends on configuration.
    Independent of posting, it will always be part of cluster (RT cluster table).
    Hope this helps. If not, pl explain the query in more detail.
    Best Regards,
    Biraju

  • Display Wrong values in a Circular Queue

    Hi i did a test for the Circular Queue but get weird values . must i do some sort of casting ?
    The output of test is State of Data structure is [RingBufferNode@1a758cb, RingBufferNode@1b67f74, RingBufferNode@69b332]
    instead of [string1,string2,string3]
    class Test  {
      public static void main (String args[])  {
        TradQueue s1 = new LinkedQueue ();
          s1.enqueue ("string1");
           s1.enqueue ("string2");
            s1.enqueue ("string3");
         String a = s1.front().toString();
         System.out.println("State of Data structure is " + s1); LinkQueue Class
    class LinkedQueue implements TradQueue {
    RingBufferQueue elemdata = new RingBufferQueue();
      public LinkedQueue ()  {
      public void enqueue (Object o)  {
        elemdata.addLast (o);
      public void dequeue ()  {
        elemdata.removeFirst ();
       public Object size(){
      return elemdata.size ();
      public Object front ()  {
        return elemdata.getFirst ();
      public boolean isEmpty ()  {
        return elemdata.size() == 0;
      public String toString ()  {
       boolean firstelt = true;
        String result = "[";
        for (Enumeration elts = elemdata.elements();  elts.hasMoreElements(); )  {
          if (!firstelt)
            result += ", ";
          firstelt = false;
          result += elts.nextElement ();
       result += "]";
       return result;
      public Enumeration elements ()  {
        return elemdata.elements();
    }RingBufferQueue Class
    public class RingBufferQueue implements Queue {
    //private RingBufferNode [] a = new RingBufferNode [5];
    private Object [ ] RingBufferNode = new RingBufferNode [5];
          * initialize an empty ring buffer queue
         public RingBufferQueue () {
              firstFree = new RingBufferNode(firstFilled);
              firstFilled = firstFree;
              firstFree.next = firstFree;
         private RingBufferNode firstFree, firstFilled;
          * Determines whether the collection is empty
          * @return true if the collection is empty
         public boolean isEmpty() { return firstFilled == firstFree; }
          * Determines number of elements in collection
          * @return number of elements in collection as integer
         public int size () {
              int count = 0;
              RingBufferNode p = firstFilled;
              for (; p != firstFree; p = p.next) count++;
              return count;
          * Yields enumerator for collection
          * @return an <code>Enumeration</code> that will yield the elements of the collection
          * @see java.util.Enumeration
              public Enumeration elements () { return new RingBufferEnumerator(); }
          * add a new value to end of the collection
          * @param value element to be inserted into collection
         public synchronized void addLast (Object val) {
              if (firstFree.next == firstFilled)
                   firstFree.next = new RingBufferNode(firstFree.next);
              firstFree.value = val;
              firstFree = firstFree.next;
          * access the first value in collection
          * @return element at front of collection
          * @exception java.util.NoSuchElementException no matching value
         public Object getFirst () {
              if (firstFilled == firstFree) throw new NoSuchElementException();
              return firstFilled.value; }
          * remove first value in collection
          * @exception java.util.NoSuchElementException no matching value
         public synchronized void removeFirst () {
              if (firstFilled == firstFree) throw new NoSuchElementException();
              firstFilled = firstFilled.next;
    private     class RingBufferEnumerator implements Enumeration {
    private RingBufferNode ptr;
    public RingBufferEnumerator () {
    ptr = firstFilled;
    public boolean hasMoreElements(){
    return ptr != firstFree;
    public Object nextElement () {
    Object result = ptr.value;
       return ptr = ptr.next;
    class RingBufferNode {
         public Object value;
         public RingBufferNode next;
         public RingBufferNode (RingBufferNode n)
              { next = n; }
    }

    can i ask 1 more question ?
    im having problems declaring the size of the ring buffer queue, is my method below correct ? Because i tried enqueue more than 5 objects and it still seems fine to me. Is there another method of declaration ? please advice.
    private Object [ ] RingBufferNode = new RingBufferNode [5];
    Your container is backed by a linked list data structure, there is no need for an array. And as far as I can see, you never use that array try commenting out the array deceleration, most probably your code would work just fine.

  • DB Enterprise Manager displays wrong values

    Hi,
    I modified the size of db_recovery_file_dest_size from 10GB to 15GB and manually deleted the archive log files (size 9.7GB) from destination and also restarted the DB. Even then the enterprise manager displays the free space as only 5GB instead of 15GB.
    Please provide suggestions.
    DB version: 10.2.0.2.0
    Regards,
    Ashraf

    Thanks for the tips - but:
    I never deleted the archivelogs - I increased the db_recovery_file_dest_size parameter - this is on ASM so the RMAN backups clear the archive logs after the backup. So there's > 40GB free, but OEM doesn't see that - even on the Individual Metric screen it thinks it's 90% full when it's more like 5%.
    This isn't dbconsole, is it? It's grid control... I don't know if that matters, but it has been restarted - the RAC DB has also been restarted.
    I really don't want to drop and re-add the target - this is a production instance and has a number of jobs associated with it.
    Is there a way to clear the alert and have it re-check?

  • 2LIS_02_SCL extractor is delivering wrong document currency amount

    Dear all,
    We are currently trying to get the invoiced amount of a purchase order in the document currency (of the invoice). While extracting the Purchasing Orders via the 2LIS_02_SCL we discover that the invoiced amount in document currency (BWGEOO) is wrong (if document currency is not matching local currency). However the invoiced amount in local currency (BWGEO) is correct.
    It seems that the BWGEOO is calculated from the local currency field by using the PO header exchange rate (EKKO-WKURS). If we take the exchange rate (RBKP-KURSF) from the invoice header and apply it on the extracted invoiced amount in local currency, we get the correct value.
    - Does anyone have some information how the extractor is working (which source table is taken into account)?
    - Why is the local currency matching and the document currency not?
    - Do you have experienced the same issue? Do you have any solution for this problem?
    Thank you.
    Regards,
        Michael

    Hi,
    There are several Notes around this issue, but none of them is solving our problem:
    •     856004 Invoice value and GR value in extractor 2LIS_02_SCL
    •     838670 Net value for BWGEO and BWGEOO
    •     833209 BWGEO and BWGEOO values
    The field BWGEOO is delivering a cost based value in document currency out of the PO. This means it is calculating it (quantity * net price). But we needed the actual invoiced amount out of FI.
    We found a work-around for this “System Design” issue. We are going to extract the exchange rate out of the invoice header and apply it to the invoiced amount (REWERT) out of the 2LIS_02_SCL extractor.
    Logic to extract it is:
    Join the “Document Header: Invoice Receipt” (RBKP) with the “Document Item: Incoming Invoice” (RSEG) on Invoice document number (BELNR) and Fiscal Year (GJAHR) key fields. Out of the Item table the purchase order document number (EBELN) and the PO item number (EBELP) can be derived. The exchange rates need to be loaded out of the header (KURSF).
    Does anyone of you have additional documentation/information on how the LO extractors (e.g. 2LIS_02_SCL) are working and especially the details of the values (and the definition) out of the extractor?
    Thank you.
    Regards,
        Michael

  • Net Value of the Sales Order in Document Currency is Zero

    Hi,
    I have an issue with Sales order where in "Net Value of the Sales Order in Document Currency" field value in the initial screen is getting displayed as Zero. But in Pricing Conditions tab "Net Value in Document Currency" is showing correct value.
    Could someone advice what causes this situation and how to fix it.
    Thanks.
    Best regards,
    srikrishhna13

    Hi Navaneeth,
    Need your help and advice again. My later investigations reveals the below.
    In some Orders (with a different item category) the Net value is getting reflected at Header level, irrespective of whether the line item/items are under some RfR.
    My earlier case were with Orders (item category different from above) the Net Value is Zero when all the line items are under some RfR.
    Kindly help me how to fix this issue.
    Thanks.
    Best regards,
    Srikrishhna

  • Document Summary, wrong values displayed for not persistent prompt

    Some prompt values displayed on the document summary portion of the document properties area are displaying incorrect values.
    It looks like non persistent prompts are showing the  value of the prompt listed just before the non_persistent prompt, instead of the value entered by the user.
    eg: persistent prompt 'enter code', user enters 1234
    non persistent prompt 'enter date', users enters 1/2/2008
    display in document summary:
    code - 1234
    date  - 1234
    Is this a known issue with Webi? I imagine it is not an issue with the report, but if so, please let me know if there is something I can do to correct it.
    Thanks!

    HI Nilanjan,
    Thanks for your suggestions but i do not have any data in Apshell to test if it is being displayed correct or not.
    Please advice me further.
    Regards,

  • Display the values in Docment Currency in Report Painter-FDI4

    Hi,
    Am new to report painter. i created report painter in FDI4. this report is to display the due amount.
    when i click on table cell, which is amount field . Am chosen cell type as 'Select with Key figure' option .
    After then i try to select key figure for that cell (Popup:Element definition).
    In F4 selection there is only one Key figure which is Amount in LC.
    I need to display the field value as Amount in Document currency.
    How to bring Amount in Docment curreny in that F4. Is it possible.
    I didnt get any thread related to my requirement in SDN.
    pl help.

    Hi there,
    Could you insert the field FAEDT (Net due date) in customer reports? (reports from transaction FDI3). This field is not in a table, only in a structure. I defined it in TKAF like that:
    USGFL
    D
    ROLNM 
    FAEDT_FPOS
    CHTAB
    RFPOSXEXT
    CHFIE
    FAEDT
    ORTAB
    RFPOSXEXT
    ORFIE 
    FAEDT
    DIMPR
    2
    RSLIN
    1
    And I also added it in the RFRRD20, but did not work. Can you tell me how to do it? I will reward with point. Thanx!!

  • Wrong Document Currency

    Dear Experts,
    I have two company codes 1111 and 2222, and first company codes uses USD as local currency, 2nd will use GBP as local currency.
    And i did one asset transfer with Tcode ABT1 from CC 1111 to 2222. As per asset accounting we cannot use any specific document currency right?
    Since this posting will take place in the respective local currencies only in both the company codes.
    So when i go to doc display for doc in CC 1111, it is showing values in USD..so its correct
    But when i am opening the doc in CC 2222, it is showing values in EUR instead of GBP, and values in EUR also showing as 0.00 for all the GL accounts, when i shift to local currency, it is showing correct values as it suppose to show in doc currency also.
    Is it a program error or something else...please clarify?
    Thanks,
    Srinu

    Hi,
    It was a program error and we did informed SAP on OSS.
    Then they have released one SAP note to rectify the issue.
    Note 1167547 - Incorrect document currency after transfer using ABT1
    So our issue has been solved
    Thanks,
    Srinu

  • Display Financial Statement (S_ALR_87012284) in document currency amount

    I would like to display financial statement in document currency amount. (T-CD:S_ALR_87012284)
    Does anyone know how to do this?
    I don't want to use the special evaluation tab of that T-CD, as it is requested to specify
    rate and Key date for translation.  I just want to display the amount in document currency.

    Hi Ramanuja,
    I meant that for the fiscal year 2009 G/L accounts don't have any values in SAP.
    In this Company SAP has been installed in 2010 and in Financial Statements I'd like to obtain the comparison with the values of 2009.
    What to do?
    Thanks

  • S_ALR_87012178 to display with document currency

    Hi Expert,
    I tried to run report S_ALR_87012178 and always got the result with local currency, while I want the result with document currency.
    I see another thread that sap note 769338 will help. I tried and it does work.
    Is there anyone who has the experience of using this report.
    Thanks a lot in advance for your reply.
    Chih-Ming

    Hi
    regarding report on trx S_ALR_87012178:
    when you choose the input parameter
    "Summarization level (0-6)"  : '6'
    program RFDOPR10 will automatically set the other parameters as follows:
    "OI sorted list sorting(1,2)": '1'
    "OI list summarization(0-2)" : '1'.
    Consequently it is not possible to only display foreign currency items when using summarization level 6.
    The reason why the program works as it does is the following:
    when you display foreign currency items it is always necessary to also display the currency.
    Without the currency information the OI total would just not make much sense. Summarization level 6, however,
    forces the output of the data in only one line.
    Since only 132 characters can be printed in one line there is not enough space for additional output of the currency.
    Thus it is technically just not possible to also display the currency.
    The combination of "summarization level" 6 and "OI sorted list sorting" 2 therefore is technically impossible.
    If you want to see the document currency please use summarization level 1.
    Please also take a look at note 769226 for more details on this issue.
    Kind Regards
    davide

  • How can I display the value of the Target Currency variable in my query

    We have a query which has a key figure set to prompt for a Target Currency at runtime.  Because the user did not want the currency displayed in each cell they used the NODIM function to remove it. They do however want to display the Target Currency in a cell within the report.  Using Report Designer, I've tried to set up a Text Box to display this value, however, it is not in the list when looking at Constants, Filters or Variables or trying to display it in a Text box.  Has anyone found a way to be able to do this?

    Hi and thanks for the reply.  I should have stated that because this was a validated query, we'd like to do this without modifying the query and thus having to go through another lengthy validation process. That's why we did not go the route of adding Unit to the query but we may have to.  Another thing we can do is use a text variable in the headers that displays the currency. That works but, again, it's a query change whereas finding it in Report Designer will not require a query modification.

Maybe you are looking for

  • Getting messagingException

    Hi, I am writing a simple client program to read mail using IMAP protocol but , I am getting following exception. I did search on net but didn't find any solution . Please help me out. javax.mail.MessagingException: A4 NO There is no replica for that

  • How to I get rid of a Firefox alias?

    I loaded firefox on my 13" MacBook Pro. When I try to open Firefox from the dock, I get this large icon with the firefox icon, an arrow, and the applications folder. A small Firefox icon appears on my desktop. When I go to the Firefox folder in appli

  • My I tunes is in Portuguese,How can I change it back to English?

    My I tunes is in Portuguese,How can I change it back to English?

  • File Browse column in Report (Detail of Master Detail)

    Is it possible for a column in my report of my detail (in master detail) to be a file browse type? The option isn't there for the column type and I cant find any htmldb_item.file_browse type of thing (like you can create checkbox in report using this

  • How do I play background music for a movie

    It is easy to set the iPOD to play background music for a photo slide show. Is it possible to have the ipod play a song as background for a movie? The "movie" is really an mpeg4 file created by using a screen grabber and is silent. If it is not possi