where W_EXCH_RATE_G get filled from?

Hello

Was just troubleshooting an exchange rate issue where the LKP W_EXCH_RATE table is used for exchange rate values. Could you get it someone please let me know where does get the values in this table in the warehouse?

I read somewhere that it is a general reference to OBAW table. IS this true? If so, then this means that's not pulling all the values of the source data and it has been already pre-filled by Oracle?

The reason why I doubt that when I check in the warehouse, it has w_exch_rate_g and w_exch_rate_gs. *. GS indicates an intermediate table. An intermediate table would in turn get populated from somewhere. How do I know that?

Thank you
Dan

Hi Dan,.

This depends on your source system. For example, with R12.1.3 EBS as a source system, the W_EXCH_RATE_GS table is filled with the EBS GL_DAILY_RATE table.
You can find the source table using Informatica dependencies:
-you select the folder for your source system
-you select the target W_EXCH_RATE_GS and dependencies table by clicking right.

It will be useful,

BLO

Tags: Business Intelligence

Similar Questions

  • Where to get assistance from Skype?

    Where is the right place to get support for Skype?

    If please go to http://support.microsoft.com/ and click the link to Skype

  • Is there a forum for Windows Mail - if not where can I get answers from?

    Is there a forum for Windows Mail - if not where can I get answers from?

    E-mail address is removed from the privacy *.

    Hello

    Yes.

    For Windows Mail in Vista, please use:

    http://answers.microsoft.com/en-us/windows/forum/windows_vista-ecoms/ .

    For Windows Mail in Windows 8 application please use:

    http://answers.microsoft.com/en-us/windows/forum/windows_8-ecoms/ .

    (select Mail app for the Category of App Store Windows when you ask the question)

    For the purposes of Windows Mail in Windows RT please use:

    http://answers.microsoft.com/en-us/windows/forum/windows_rt-ecoms/ .

    (select Mail app for the Category of App Store Windows when you ask the question)

    For Windows Live Mail please use:

    http://answers.microsoft.com/en-us/windowslive/forum/livemail/ .

    Hope that helps.

    P.S. Find it the appropriate forum for questions by email is not easy to say here... :)

  • My computer will only work CS3... where can I get it from?

    My computer will only work CS3... where can I get it from?

    Adobe don't support something more old than CS6, nor do they sell.

  • AppleSyncNotifier.exe - cannot find component__Corefoundation.dll can not be found. where can I get these from?

    AppleSyncNotifier.exe - Unable to locate component

    Corefoundation.dll was not found where can I buy from?

    Hello

    Try the steps by Lorien - One (Monday, 9 August 2010 18:07) the link below and check if that helps.
    http://social.answers.Microsoft.com/forums/en-us/vistaprograms/thread/e69def34-439D-4C4A-83da-4e3770fedf8f

    Thanks and greetings
    Umesh P - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.
    [If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message.] [Marking a post as answer, or relatively useful, you help others find the answer more quickly.]

  • Given multiple options to get filled by using the SQL query

    I have the following data in the table.

    I want to fill the column custid with a few conditions.

    (1) If a client is on a loan account as custid must get filled. (for example: 124)
    (2) if the multiples are on a single loan account then

    (a) if one of the clients has rolename = "w1" then it must be filled. (for example: 125)
    (b) If several customers a rolename = "w1" then custid minimum should get populated(eg:123)
    (c) If none of the clients has rolename = "w1" then custid minimum should get populated(eg:126)




    LOANNO ROLENAME CUSTID
    123 X 1
    123 2 W1
    123 3 W1
    124 Y 4
    5 125
    125 6 W1
    7 126
    8 126
    9 126


    And my output looks like

    LOANNO ROLENAME CUSTID
    123 2 W1
    124 Y 4
    125 6 W1
    7 126


    I tried the departure from

    SELECT ACCNO, ROLENAME, MIN (CUSTID)
    FROM TABLENAME
    ACCNO GROUP, ROLENAME
    HAVING ROLENAME = "W1".

    How to all conditions.
    Could you please help in this?
    I tried again on that.

    Thanks in advance.

    Concerning
    KVB

    Hello

    I see now: you do not want the Group BY accno both rolename; that would produce a line of output for each combination separate accno / rolename. You want only one line of output for each separate accno.
    One way to do that is a Query of Top - N , like this:

    WITH     got_r_num     AS
    (
         SELECT     accno, rolename, custid
         ,     ROW_NUMBER () OVER ( PARTITION BY  accno
                                   ORDER BY          CASE
                                                 WHEN  rolename = 'W1'
                                         THEN  1
                                         ELSE  2
                                     END
                           )    AS r_num
         FROM    table1
    )
    SELECT       accno, rolename, custid
    FROM       got_r_num
    WHERE       r_num     = 1
    ;
    

    You could do it with GROUP BY, but it's messy:

    SELECT    accno
    ,       MIN (rolename) KEEP ( DENSE_RANK
                                           FIRST
                              ORDER BY  CASE
                                             WHEN  rolename = 'W1'
                                   THEN  1
                                   ELSE  2
                               END
                        ,         custid
                         )         AS display_rolename
    ,       MIN (custid)   KEEP ( DENSE_RANK
                                        FIRST
                           ORDER BY  CASE
                                             WHEN  rolename = 'W1'
                                   THEN  1
                                   ELSE  2
                               END
                         )         AS display_custid
    FROM       table1
    GROUP BY  accno
    ;
    
  • How can I get data from each associated XMLnode in movieclips separated when you click a line in the combobox

    How can I get data from each associated XMLnode in movieclips separated when you click a line in the combobox?

    A sample of XML is like this:

    <>planter

    < Lauvtre >

    < Botanisk_navn > Acer campestre < / Botanisk_navn >

    < Norsk_navn > Naverlonn < / Norsk_navn >

    Gronn < Farge > < / fan >

    H4 < Herdighet > < / Herdighet >

    < Hoyde > 10-15 m < / Hoyde >

    < / Lauvtre >

    I have a combobox where it shows the botanical name and the Norwegian name. But the rest of the info in movieclips seem separate.

    Someone has an idea how to do this? Can I use the trace function maybe? Here is my AS3 code so far:

    var loader: URLLoader = new URLLoader();

    loader.addEventListener (Event.COMPLETE, onLoaded);

    list.addEventListener (Event.CHANGE, itemChange);

    function itemChange(e:Event):void

    {

    your. Text = list.selectedItem.data;

    TB. Text = list.selectedItem.label;

    }

    var xml;

    function onLoaded(e:Event):void

    {

    XML = new XML (e.target.data);

    var it: XMLList = xml. Planter.Lauvtre;

    for (var i: uint = 0; i < il.length (); i ++)

    {

    list.addItem ({data: it.}) Farge.Text ([i]) + "\n"+ it.» Herdighet.Text ([i]) + "\n" + it. Hoyde.text ([i]),

    label: it. Botanisk_navn. Text() [i] + "\n"+ it.» Norsk_navn. Text() [i]});

    }

    }

    Loader.Load (new URLRequest ("lauvtre.xml"));

    Thank you!

    Rheus.

    I don't know what you're trying to do.  but, if you want to fill one combobox with the botanical names and when one is chosen, the other use of logins:

    var loader: URLLoader = new URLLoader();

    loader.addEventListener (Event.COMPLETE, onLoaded);

    list.addEventListener (Event.CHANGE, itemChange);

    function itemChange(e:Event):void {}

    var selectedObj:Object = a [list.selectedIndex]

    trace (selectedObj ['fan'], selectedObj ['Botanisk'], etc);

    }

    var xml;

    var a: Array = [];

    function onLoaded(e:Event):void {}

    XML = new XML (e.target.data);

    var it: XMLList = xml. Lauvtre;

    for (var i: uint = 0; i

    list.addItem({label:il[i].child('Botanisk_navn').toString()});)

    a [i] = {'Fan': it [i].child('Farge').toString (), 'Herdighet': it [i].child('Herdighet').toString (), "Hoyde": he [i].child('Hoyde').toString (), 'Botanisk':il[i].child('Botanisk_navn').toString(),'Norsk_navn':il[i].child('Norsk_navn').toString()};}

    }

    }

    Loader.Load (new URLRequest ("test.xml"));

  • I know where the last call from my iphone stolen?

    I know where the last call from my iphone stolen?

    Not anyone here, not Apple. You can check with your operator if they used your SIM card, and you may have to get the police involved for the information about the location. If it was not your SIM card, you would not be able to.

  • I get emails from Sparklebox to the United Kingdom. Recently all of a sudden they say they are hugs and Cookies which is a site of recipes in the USA. How can I change?

    Sparklebox is a site of educational resources in the United Kingdom. I get emails from them regularly.
    They started suddenly a couple of weeks when I arrived indicating that they come from hugs and Cookies XOXO that a recipe to the site in the United States who subscribe to.
    Can you please change it to reveal that they are Sparklebox not hugs and Cookies XOXO?

    Sorry if you think that the complaints of not being able to see your question are dumb. But it is very difficult, and after complaining over a year my frustration is very high.

    Regarding the removal of the entry in your address book for hugs and Cookies, is nothing of the sort. Thunderbird use your display name in address book preferences to fill the list.

    Of the last 100 people who came here to complain that the mail of a person was in fact someone else. Their book of addresses for this person was the cause in probably 99 of them.

  • How to get assistance from mozilla to answer questions for windows when I use a macintosh computer

    How to get assistance from mozilla to answer questions for windows when I use a macintosh computer?

    Look on the right side of the knowlegde base articles, where it is said ' help to ". Here, you can change the operating system and the version of firefox. The content of the article will adjust.

    If you ask a question on the help forum, you can simply say this in your question.

  • Nb505 - where to get the product specifications

    It is very difficult, if not impossible to find the specifications (sometimes called 'Key features') for Toshiba products. For example, I try for more than 5 hours through all the websites of Toshiba to know the main characteristics of a mini NB505 laptop model. I walked into the family, the model, the serial number as exactly written on the device, such as given by the Properties window & case
    computer device tab and I always get the message "you search revealed 0 results.»

    Can any body tell me where & how to get information from Toshiba (specifications) products need to know before buying the product?

    Thank you.

    Hello me,.

    What information product you want exactly? In addition, it seems strange for me because you wrote that you have the serial number, so I guess that you already NB505 but now looking a few specifications?

    The NB505 is an American model and you can find it on the Toshiba U.S. page:
    http://us.Toshiba.com

    If you do a Google search for NB505 the first result I get is Toshiba NB505 product page:
    http://us.Toshiba.com/computers/laptops/mini-notebook/NB500

    So I t understand how it of possible to search for more than 5 hours

  • Problem drive external HARD - where to get warranty service

    Dear Sir.

    I bought an external HARD Thosbia [store ART 3 E] disc from Dubai, Carrefour. Now I'm in India. This device does not not properley. Where to get service for this problem.

    Please help... urgent

    concerning
    Antony Thomas

    Hello

    I think that you will need to contact the ASP in Dubai.
    You will find here all the FSA all over the world:
    http://EU.computers.Toshiba-Europe.com/innovation/generic/ASP_SUPPORT/

    But I recommend to check your user manual and booklet warranty issues are mentioned there as well.

  • Portege R500-124: where to get DVD Reovery

    Hello

    Just got a Portege R500-124 and they wanted to establish themselves.

    They just asked asked on a recovery DVD, as none came with it.

    I have looked at the manual and see you can use F8 at startup upward to get to the recovery partition and do a complete reinstallation shape it.,.
    but it would also be good to have a recovery media...

    Is anyway to create this laptop?

    This came pre-installed with Windows XP PRo.

    Thank you

    Ken

    Hello

    Where did you come from?

    As far as I know the European notebooks from Toshiba are always equipped with the Toshiba Recovery CD.

    However, try to contact the ASP in your country and ask if the restore CD is available for you Portégé R500.

    If this isn't the case, then I recommend to check your system and installed applications.
    Sometimes, there is an option to create a clean recovery CD/DVDs.
    In this case, you will need to burn this image of Toshiba on the DVD.

    Best regards

  • Need help: where to get this recovery disk?

    Hello. I live in the UK, and I have a laptop HP 6163 cl, I had when I was on my trip to the USA. I messed up, installing Windows 8, and now even the switchable graphics do not work. I don't know what else to do, so where can I get a recovery for my laptop CD? I saw only CD of recovery for 6163us, 6163sf and 6163ef. If I get one from 6163us and use it, it still works? I want to order at a place, where the expedition will be really fast, all I want is more than 9 days, if possible, because I'm going on a trip on 4 April, and I would really like to take laptop really usable, because now with Windows 8, I can still play games. Thank you!

    Hello:

    I don't know if the recovery of the dv6-6163 disk will work. Should be, but you never know.

    I have another solution for you, and then you can get the drivers from your PC and driver page support.

    According to the specifications of your PC system, it came with W7 Home Premium 64 bit, correct?

    If so, please download the W7 Home Premium 64-bit ISO (English) at the link below. Burn the file on a disk using a program that can burn ISO files so the DVD is bootable DVD burning. Burn at the lowest speed as possible.

    Then use the product key 25 character on the bottom of your laptop computer to activate the installation.

    http://www.mydigitallife.info/official-Windows-7-SP1-ISO-from-Digital-River/

    Paul

  • IM get emails from FBI

    Im getting emails from false people tell their FBI, just win million dollars from different countries, or has just arrived at the airport with your money, it will never heard so much Bull. I sweep and block junk mail but it just comes back constantly in HOW I STOP IT before receiving a virus?

    Hello

    Adding effective prevention can help.

    Bayesian filters<- these="" just="" some="" of="" those="">
    http://email.about.com/cs/bayesianfilters/a/bayesian_filter.htm
    http://getpopfile.org/
    http://www.Spamihilator.com/
    http://www.Codeode.com/spamfilter/index.html

    PopPeeper is a powerful utility to prevent spam and malware from reaching your Inbox.

    Get the PP and also get the PPTweaker - free
    http://www.poppeeper.com/

    PopPeeper - Forums
    http://www.poppeeper.com/forums/

    =================================

    More information and methods to prevent SPAM:

    Don't forget to check with your email provider and support for any e-mail program you
    Use.

    If Hotmail, Windows Live Mail or Outlook.com check in the appropriate forum:

    Answers - Hotmail, Messenger, and SkyDrive (and all things, Windows Live) Forums
    http://answers.Microsoft.com/en-us/windowslive

    For Outlook Express (XP) or Windows Mail (Vista)

    Answers - Windows (select your version of Windows) - network and get online
    http://answers.Microsoft.com/en-us/Windows/Forum/networking

    For Outlook (select your version of Outlook)

    Answers - Office - Outlook
    http://answers.Microsoft.com/en-us/Office/Forum/Outlook

    For email to party 3 programs and providers to check with their support for the suggested methods
    to control SPAM.

    ---------------------------------------

    SPAM and how to get rid of
    http://email.about.com/od/spamandgettingridofit/Spam_and_How_to_Get_Rid_of_It.htm

    How and where to complain about SPAM
    http://email.about.com/od/spamandgettingridofit/a/report_spam.htm

    Anti-SPAM fighting tips, tricks and Secrets
    http://email.about.com/od/spamfightingtips/Spam_Fighting_Tips_Tricks_and_Secrets.htm

    Top Six most effective tips to avoid Spam altogether
    http://email.about.com/od/spamandgettingridofit/TP/most_effective.htm

    What Email Headers can tell you about the origin of SPAM
    http://email.about.com/cs/spamgeneral/a/spam_headers.htm

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

Maybe you are looking for