Linking two Queries but the values are corrupted

I have started linking two queries from the same Cube.  The invoiced value from the pre-query shows the correct value from SAP.  When I use this prequery into another query and look at the same invoiced value key figure, the result has changed and is not correct anymore.  Please advise what I am doing wrong.
Any help would be most appreciated.
Ray

Hi Bhanu, the replacement path is on the Dimension Sales Document.  I have tried to use the same variable on the Key Figure Net Value (Invoice).  I also tried for a later attempt to use a different Key Figure in the prequery as net weight, just in case they added together.
Am I right that I should be using the same key figure Net Value (Invoice) in both queries?
Thanks
Ray

Similar Messages

  • HT3819 I have turned Home Sharing on on two computers, but the "Shared" area is not appearing on either computer.  What does this mean?  What do I do?  THANKS!

    I have turned Home Sharing on for two computers, but the "Shared" area is not appearing on either computer.  What does this mean?  What do I do?  I am trying to get music from one library into another library to sync with my ipod so that I can have all songs on the ipod from both libraries. 
    Thank you for your help!

    If you have the horizontal menu bar showing (File, Edit, View,...), select View, then select Show Sidebar. 
    If the menu bar is not showing, dorp down the menu in the very upper left corner and select show menu bar, then follow steps above.
    Hope that helps.  Good luck.

  • I installed the new firefox sync on my two computers, but the bookmarks are not synchronising. How do I solve it?

    Hello,
    I recently installed the new version of firefox sync on my computers (by unlinking the old version, and creating a new account), but the bookmarks are not synchronising. One of the computer turns with Windows 7 and the other with Ubuntu 14.
    I created the account with the firefox on the Windows computer, and some things were well synchronized on the Linux computer (ie Addblock was installed), but the bookmarks on the Linux firefox are empty.
    Could you please help me to solve this problem?
    Thank you very much.

    Type '''about:sync-log''' in the URL bar and hit Enter.
    Do you have any Error Reports?
    If so, open the most recent report (check the date to make sure it is from the new version of Sync). Then copy and paste the contents of that report to http://pastebin.com/ and post the URL to "your New Paste" to this forum thread so that we can review that error log.
    ''Edit - whoops'', start with the Windows PC, then the Ubuntu box.

  • Client sends cyrillic in SOAP request, but the characters are corrupt

    Inbound call with cyrillic characters does not handle the cyrillic characters correctly
    Problem Description
    We receive in an OSB proxy SOAP service a request with data that contain cyrillic characters.
    The message is sent correctly by the cliend but the message is parsed server side with corrupt the cyrillic characters.
    Example:
    sent:
    <PreconfigDesc>Част от обхвата на вътрешните номера на DDI. Не са посочени всички номера от обхвата. Закриване на номерата, които не са заявени за пренасяне.</PreconfigDesc>
    received:
    <PreconfigDesc>Част от обхвата на вътрешните номера на DDI. Не са посочени всички номера от обхвата. Закриване на номерата, които не са заявени за пренасяне.</PreconfigDesc>
    Some of the java parameters of the server instance:
    -Duser.timezone=Europe/Istanbul -Duser.language=bg
    -Duser.region=BG
    -Dfile.encoding=utf-8
    -Djrf.version=11.1.1
    -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger

    I would not only share a JAX-RPC example but a whole chapter on how to build web services using JAX-RPC :-) Please download JWSDP 1.3 binaires and tuotorial. The tutorial comes with bunch of samples fully explained.
    JWSDP 1.3: http://java.sun.com/webservices
    Tutorial: http://java.sun.com/webservices/docs/1.3/tutorial/doc/JAXRPC.html#wp72279
    JAX-RPC Example: http://java.sun.com/webservices/docs/1.3/tutorial/doc/JAXRPC4.html
    Post your JAX-RPC related questions to [email protected] for a quicker resolution.
    Send an email to [email protected] to subscribe to the alias.
    Send an mail to [email protected] for a complete list of help commands.
    Thanks,
    -Arun

  • Mail is not downloading messages from two accounts but the messages are in the server.

    Hello, I'm having this problem. Mail is not downloading messages from two accounts. I don't know why but there're two accounts working so bad. If I click with the right button on the account and click to see the account details, I can see the messages on the server but not in inbox. I made a sync with this account and my iphone and then the iphone downlad the messages with out problems. Not my imac at work or my imac at home... what can be wrong?
    Thanks.

    For Gmail, this is normal, there is nothing you can do about it -- just type Mail AND Gmail in the search box to see threads discussing how Gmail works.
    As for the other accounts, this shouldn't happen. I wonder if what you're seeing is just that Mail is ignoring this setting for mail that was already on the server when you started using it. I've seen something like this happen when playing with that setting, e.g. changing it from "After one day" to "After one week". Mail would just ignore messages that fell in the timeframe where the two settings could interfere and I didn't notice it until some time later, when Mail "forgot" those messages had already been downloaded and, being faced with them again, dutifully downloaded them as if they were all new.
    I believe that, if you leave the setting however you wish and stop playing with it, then Mail shall correctly process any mail that arrives from now on. In order to manually delete old messages that Mail seems to be ignoring, you can invoke the Account Info window (this is probably what you meant when you said "I can delete messages individually"; if that's not the case and want more info on this, just ask).

  • Created a trigger but new values are not inserting in the backup table

    I have created a backup table and writter a trigger on a table such that after update old values and new values are to be inserted into the backup table, but new values are not inserting. I am giving the code please help me
    create or replace trigger "SUPPQUOTES_AUDIT"
    after update or delete on phsuppquotes for each row
    begin
    insert into phquotes_audit(cprc_new,suppcode,itemcode,cprc_old,negodt,validdt,userid,TRANDATE) values
    (:new.cprc,:old.suppcode,:old.itemcode,:old.cprc,:old.negodt,:old.validdt,:old.userid,SYSDATE);
    end;

    old values and new
    values are to be inserted into the backup table, butwell you have only one insert there, inserting old values with a new id (which is ok if you don't update the id column, but I don't think that :new is available for deleting ops); you should have two inserts:
    insert into
    phquotes_audit(cprc_new,suppcode,itemcode,cprc_old,negodt,validdt,userid,TRANDATE) values (:old.cprc,:old.suppcode,:old.itemcode,:old.cprc,:old.negodt,:old.validdt,:old.userid,SYSDATE);
    if (updating) then
    insert into phquotes_audit(cprc_new,suppcode,itemcode,cprc_old,negodt,validdt,userid,TRANDATE) values (:new.cprc,:new.suppcode,:new.itemcode,:new.cprc,:new.negodt,:new.validdt,:new.userid,SYSDATE);
    end if;
    gojko adzic
    http://gojko.net

  • I am trying to import movie files into to iMovie. They are home videos so I use handbrake and VLC to put them onto the computer and convert them to MPEG-4 files. I successfully imported two of the videos but the others are not working, they are all MPEG-4

    I am trying to import movie files into to iMovie. They are home videos so I use handbrake and VLC to put them onto the computer and convert them to MPEG-4 files. I successfully imported two of the videos but the others are not working, they are all MPEG-4 files. Now, they are not compatible. How to I get them into imovie?

    Hi
    I use
    • DV-PAL or DV-NTSC - or -
    • AIC
    Yours Bengt W

  • 0PA_C01  different results from two queries on the same cube ....

    HI
    Can you please help with this  problems ...
    i am running a two queries with the same restrictions e.g
    Sep 08 for employee 22345 ,
    In one report it shows the Pay Scale level as A1 , then in the other report it shows Pay scale Scale level as A2  ,
    looking  at the master data in 0employee  , the first report is right ... this is how the data looks like in 0employee
    Employee  Valid from      To                Pay scale Level
    222345       2007-11-03   2008-09-30     A1
    222345       2008-10-01   9999-12-31     A2
    Can someone please shed some light on this , im thinking it has something to do with update rule but even that is supposed to use last date of the month , not 1st day of the following month. The Cube is a stndard cube 0PA_C01 and the update rule aswell .....

    Hi,
    Please check in the cube whether the data for the Employee is getting with two values like shown in your question:
    Employee Valid from To Pay scale Level
    222345 2007-11-03 2008-09-30 A1
    222345 2008-10-01 9999-12-31 A2
    and also check whether when the data loaded to the cube.
    There may be some change in the report structure where the difference is getting may in the column wise or row wise restriction may present.
    Please check on the structure of the report also.
    With Regards,
    Ravi Kanth

  • Linking two queries

    I am having trouble linking two queries in my data table. The first query finds the maximum of a certain set of information, has the breakorder set at asending and orders them by a set of numbers in that query. A coordinate (ie. x and y) field is based off this maximum. In the other query, another maximum and coordinate are found and should be ordered by the same thing as in the first query (set of number in asending order). Instead of this happening, it prints all the numbers (not just the max) and the cooresponding coordinates for that number. I think that it has something to do with the queries not being linked properly. I would like to figure out what and where to link these queries (the whole report is based off a common id number).
    Thanks!

    If you're getting everything (as opposed to just the maximum) then I would suspect that it's your where clauses, or groupings, that are at fault (select max(x), y from <table> group by y should only return one row per y).
    However, it's pretty hard to determine what's going on with your descriptions - could you provide a couple of simplified queries and describe how they're linked, and it might be easier for everyone to figure out what's going on.
    Thanks,
    Danny

  • Issue in displaying two queries in the Excel

    Hi,
    as per the requirment, I have to keep two queries in the single excel.
    Can u please let me know
    1. how to do this.
    2. If one query has a free characterstic, and if I drilldown what will happen to the display values as the next cell may contain the second query.
    Thanks  in advance
    Ananya

    Hi,
    this cant be achived in Bex reporting ...
    the only possible way is to do in WAD reporting
    WAD is a platform where you can fetch the reports from more than one Bex query.
    when designing the WAD report use diffrent tables with diffrent infoprovider
    for example
    you have report 1 , report 2 and report 3
    when you drag single table and link all the three reports the Out put will be Report1 report2 Report3( with the same infoprovider)
    when you Drag three diffrent tables for Report 1 , Report 2 and Report3 with three diffrent infoprovider the out put will be
    Report1
    Report2
    Report 3 so the all the three reports will be placed one below the other
    holpe this helps
    Thanks & Regards,
    Ravi.

  • I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    You can set up a temporary button (or link, bookmark, etc.) and add the following JavaScript action:
    // Mouse Up script for a temporary button (or bookmark, etc.)
    // Change the font and font size for all text fields in this document
    for (var i = 0; i < numFields; i += 1) {
        var f = getField(getNthFieldName(i));
        if (f.type === "text") {
            f.textFont = font.Helv;
            f.textSize = 9;
    It also sets the font size, but you can remove that line if you don't need to do that.

  • HT4075 I tried the steps mentioned above but the changes are not being saved.

    I am not able to edit or merge PDF files. I followed the steps mentioned in the Mac support community but the changes are not being saved. Any solution to this?

    The link you posted gives be a 404 not found message. 
    The reason you're getting the repeat is because your site name is wilgenroos.nl and the first page of your site is wilgenroos. 
    The standard URL for domain names that are forwarded with the CNAME method is:
    http://www.domain_name.com/site_name/page_name.html.
    You can change the site and page names in iWeb to give you something more informative about the site and page.
    If you're publishing to a  3rd party server and want to get rid of the site name in the url and only have
    http://www.domian_name.com/page_name.html
    do the following:
    publish the site to a folder on your hard drive (already done)
    use Cyberduck to upload just the contents of your site folder to the root folder of your account on the server.
    You should delete the old site folder and files that are currently there beforehand.

  • I just bought photoshop elements 13 last night. Today I am watching tutorial videos to show me how to use it, but the videos are showing me things I don't have. Asking me to click on tabs i don't have. Why is this? Is there another way I can learn? Or is

    I just bought photoshop elements 13 last night. Today I am watching tutorial videos to show me how to use it, but the videos are showing me things I don't have. Asking me to click on tabs i don't have. Why is this? Is there another way I can learn? Or is my download messed up and not giving me everything I need?

    Got a link showing us which video tutorials you're watching and examples of what's missing in your software?

  • How the values are stored in Claneder week/year internally

    Hi BW Gurus,
    Can any one please let me know in which format the values are stored in the Calender week.year time characterstic?
    is it YYYYWW or WWYYYY or YYYY.WW or WW.YYYY or YYYY/WW or WW/YYYY?????
    Thanks in Advacne,
    Dilse...
    Hash

    Hi Bhanu & Alessanrdo,
    Thanks for the prompt response. Actually I was trying to populate some values in to the calender week/year variable through the user exit.So, I got confused while updating the values in to the variable. I used the value format which you both had suggested. But no luck.
    The olap control is passing out of my code successfully.
    After the coming out of my inlcude program it entered in the function RRS_VAR_VALUES_EXIT_AFTER there the following if condition is met.
    " IF -vartyp EQ rro04_c_vartyp-value". after that it raised the exceptions and the above message is displayed. Can you please look in to the issue.
    and the message number that was shown is Message No: 00010004 with the following note :
    "AError for variable  in customer enhancement ZLASWK"
    Can you suggest me why it went wrong and what needs to be done...?????
    Thanks in Advance,
    Dilse...
    Hash

  • BW 7.3 Error in DTP if the values are char for the char field

    Hi,
    I have created a field with
    Eg: Field1 CHAR 7 -> i have removed the ALPHA conversion
    I am loading the data from ECC if the values are
    AA0-992 or AA1-AT1 there is no issue it is getting loaded
    but when i am getting the values as AAA-BBB it throws an error.
    In RSKC "-" is allowed CHAR.
    Can someone help becuase as this is the CHAR field it should accept
    Thanks

    Hi,
    I resolved in between we had the lower case characteris so that thrown and error.
    Thanks

Maybe you are looking for

  • "Installer failed to initialize" when attempting to install Lookout 5.0 in Windows 7 Windows XP Mode

    I have a new, clean, Windows 7 Professional tower (has newest Windows updates). When attempting to install Lookout 5.0 in the Windows XP Mode I get an error window indicating "the installer has failed to initialize". The only option is to click OK an

  • Ent.Structure Designing for FICO Imp.

    Dear Experts, I request you to kindly throw more insight in making me understand the Segment, EC-PCA and Buss.Area concepts, where by help me in designing the Ent.Structure. I have got 3 companies under 1 group, for Designing and Implementation purpo

  • Can I add additional lenses to Lens Peripheral Illumination Correction?

    Can I add an additional lens, one that is not listed in the Canon 7D, Lens Peripheral Illumination Connection?  Specifically I am interested in adding the Tamrom 18-270 lens.

  • What should be the logger name for Dispatcher Flush agent?

    Hi, I was trying to setup logging configuration so that the log for Replication agents can be saved on file system. I was able to do it using the logger com.day.cq.replication.Agent.publish. What would be the logger for Dispatcher Flush Agent if I ne

  • AJAX : HTTP Error 404

    i am using AJAX to communicate with the .java file. i am using tomcat. How do i match the url in req.open with the url of the web.xml to call the .java file. I was spend a lot time on this and i put a lot of different urls to get this .no one was giv