ODI: Identify every interface that used a specific datastore

Hi all,
I work for a big company, where we have lots of ODI projects going on... I need to identify every interface that used a specific datastore..... do you guys now a easy way to do this? I am using ODI 10 and its search does not provide this king of information.
Thanks

On the Designer tab, under Models  section, you should  be able to expand each Datastore you have, and see it's properties. One of those properties  is Uses section, where you can see where is it used  as source or a target.

Similar Messages

  • How do I create a treepanel that uses a specific path as its root?

    I want to create a treepanel which uses a specific path in my /content directory (eg. /content/a/b/c) as it's root node.
    If I'm working in CRXDE, how would I set that up?
    So far, I created a tab with a tree panel with attributes:
    root: /content/a/b/c
    xtype: treepanel
    This gets me a treepanel with the root node, but it does not open.  When I click on the "+" beside it, it only spins.  What am I missing in order to set this up?

    Hi. I'm having the same issue. Please share with us if you find a solution.
    Many thanks.

  • Searching dreamweaver-based website for files that use a specific template

    I use about 5 different templates on my site right now. I'd
    like to switch several groups of pages to a different template. Is
    there a way to search for all pages that use one template, then
    apply a different template to them?

    You must do it with ALL pages closed. And yes, it will work.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "pdeitel" <[email protected]> wrote in
    message
    news:ercu4a$12r$[email protected]..
    > hmmm. can I do that from Dreamweaver? I tried to test
    this approach with
    > one
    > page, but DW did not let me make the change because the
    code
    >
    > <!-- InstanceBegin template="/Templates/TEMPLATE NAME
    GOES HERE.dwt"
    > codeOutsideHTMLIsLocked="false" -->
    >
    > is in the uneditable part of the page.
    >

  • MACPRO: Is there an interface that uses DIGITAL AUDIO IN?

    I just got my new MacPro (woohoo!) and was getting ready to replace my 'ol tube preamp-to-soundcard configuration with a FW input box... when I realized I only have ONE of each FW port!
    I already have my USBs overpopulated, and my FW800 daisy-chaining my backup drives... But then I noticed those unused DIGITAL audio plugs in the back.
    ...Are those even an option?
    I really don't know if I want to put a box on the FW daisy chain...
    Hmmmm.
    tix,
    e

    If you want use the digital in/out of your mac are there many fantastic Professional gear
    I can suggest
    RME ADI-2 it is good and not so expensive
    there are also many dream-machines
    one of the best (to me) is: Universal Audio 2192 that comes with a Great Class A preamplifier!!!
    Apogee mini-dac + Mini MP... or Rosetta 200 (up to +26dBu OUT)
    there are many others AD/DA converters... search for it on Google or Yahoo

  • Dude, Where's my "Show in Finder"?  Whatever the bug is, it seems to affect every app that uses the method. Any thoughts (besides logout/restart)?

    Doesn't matter if it's Finder, LaunchBar, Fresh, Spotlight, Path Finder, Tower...you name it: After being logged in awhile (assuming this is a requisite condition), all "show in Finder" functionality fails to work. It's really beginning to (1) make me realize just how much I rely on that feature, and (2) **** me off.
    OS X 10.8.2  |  2012 Mac Pro

    Me too. Seems endemic from searching around.
    Trashing finder prefs and a restart works for awhile.
    Fixing permissions and a restart works for a while.
    But it comes back.
    10.8.2 on three machines - two Mac Pro's and a Retina MBP. All the same problem.

  • Is there a site to find printers that use a specific ink cartridge?

    I currently own a Canon MP640R printer that I LOVE, unfortunately, it is done for and I just purchased a ton of cartridges for it.  Is there a site where I can see what other printers take the same cartridges?  I have decided that of all the printers that I have had, I really like the durability of the canon and would like to purchase another one, but don't see letting all these cartridges go to waste.
    Thanks,
    Donna
    Donna L Spradlin

    Welcome andspradin!
    Another person had a very similar question to you a while back.  The trick I've found is that if you go to Canon's online store and look up the ink cartridge, it will list the compatible printers.
    Hope that helps!

  • How can I identify reports that use specific tables

    Hi, is there a way that I can identify the reports that select from specific tables?  We have 3,000 reports in business object enterprise XI R2 SP5. and we're trying to identify all the reports that use a specific table.

    Or if you have a developer in Java or .NET available you can write one. Fairly simple to get the info.
    In .NET you would open each report, write the name of the report to a log file with the output of the SQL Statement:
    Using RAS as the report engine.
                GroupPath gp = new GroupPath();
                string tmp = String.Empty;
                rptClientDoc.RowsetController.GetSQLStatement(gp, out tmp);
                MessageBox.Show(tmp, "Data Source Set and SQL Statement", MessageBoxButtons.OK, MessageBoxIcon.Information);
    If you want more details is is available with a few more lines of code. The above would only show you what is used in the report.
    I don't believe there is a BOE tool that can do this but they may have one.
    Here's a link to the BOE Admin forum: BI Platform
    Thank you
    Don

  • How do you identify all reports using a specific custom function?

    Is there a way to identify all Crystal reports that use a specific custom function?  When we make changes to the function we need to re-attach the function to the existing reports, but we need to know what and where they are.
    We are using CRS XI.
    Thanks.

    duplicate - please do not post multiple times

  • How to know the list of scenario that use a KM

    In ODI work repository, from which table I can know a list of interfaces that use one IKM and from which table I can can know a list of package that use that interface? The reason for this question is I want to regenerate all scenarios impacted by that KM.
    Thanks

    Hi,
    try this:
    SELECT snp_scen.scen_name
    ,snp_scen.scen_version
    ,snp_package.pack_name
    ,snp_step.step_name
    ,snp_pop.pop_name
    ,snp_trt.trt_name
    FROM snp_scen
    INNER JOIN snp_package on snp_scen.i_package = snp_package.i_package
    INNER JOIN snp_step on snp_package.i_package = snp_step.i_package
    INNER JOIN snp_pop on snp_step.i_pop = snp_pop.i_pop
    INNER JOIN snp_trt on snp_pop.i_trt_kim = snp_trt.i_trt -- integration
                             or snp_pop.i_trt_kcm = snp_trt.i_trt --check
                             -- more joins here !

  • Unable to open newly created files using a specific font.

    Hello everyone!
    All of a sudden, I am not able to open newly created files in Acrobat Pro 9.0 that use a specific font. It seems to be localized to files that are created in Microsoft Words, as I tried to create a document in Pages and was able to open that PDF (using the same font) in Acrobat. I'm not sure what to do at this point...Any ideas?

    Hi,
    If you have recently upgraded to Mac OS X 10.6.7, then have a look here:http://forums.adobe.com/message/3593533#3593533, where Steve Werner had the solution.
    Niall

  • What is a good multi track interface to use w/ GB

    I use garageband quite frequently and now I want to multitrack. I have always used a tascam 8 track but I am finally making the switch to full computer. My first goal is to record a 3 peice band I am in. So I was thinking a 8 track interface that uses USB possibly. I have a white 09 macbook but I will be upgrading soon if that makes a difference. Also another question which I am wondering is should I even try a different program? Or is GB all I need? I am in Kiel Germany.
    Thanks!
    -c

    Does your macbook have Firewire? If it does then I would suggest you go with a FW interface. The choice of interface depnds on how you decide to record your band, ie one member at a time or all simultaniously. Check out the PreSonus line of gear as one option. I use the FireStudio Mobile without a hitch in GB.
    The choice of computer depends on what road blocks you encounter. Depending on your budget, there are RAM and HD upgrades avaliable that you can DIY including SSD. http://www.macsales.com/ The other thing you may find with your macbook is screen real estate or lack thereof.
    GB is a very capable program, however, there are some workflow issues that may not suit you. The beauty of GB is that it is not bloated. I think you will find initially setting up your recording environment and collecting gear to be more of an issue that which program to use.

  • Searching for document that uses a certain font?

    Is there a way to search for a Word document that uses a specific font? There is only one possible document on my hard drive that uses this font.

    There must be a way, that info is stored in the Document near the end, like...
    Still working on it.

  • Whenever I go on a new web page or any thing that uses Internet, it says cannot verify server identity.

    How can I fix this it is really annoying for every thing that uses internet

    - Try a reset. Nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>Safari and delete, cookies, histy, cache and similar items.
    - Do you get the message for all web pages like Google home page?

  • How to identify reports that are using a specific universe object?

    Any idea how to use BO Auditor or Metadata Manager to identify webi reports that are using a specific universe object or universe prompt in the report SQL?

    Hi Samuel,
    In case you are using BOXIR2 you can do this by editing the crystalenterprise.webi.xml file.
    Replace the CrystalEnterprise.Webi.xml file (Take a backup) with the edited one.                                                                               
    Path where you can find this file- Tomcat/webapps/businessobjects/enterprise115/desktoplaunch/WEB-INF/classes/META-INF/CrystalEnterprise.Webapps/ePortfolio/plugins                                                                               
    Paste the Custom Documentation folder in Tomcat\webapps\businessobjects\enterprise115\desktoplaunch\ 
    May I know your email Id so that I can send you the edited crystalenterprise.webi.xml file.
    Regards,
    Sarbhjeet Kaur

  • Macbook air Wi Fi and sound stops every time it goes to sleep. i have to  restart it every time to use wifi and sounds. this started happening just after the latest upgrade to X. any reasons why its doing that and how to fix it.

    Macbook air Wi Fi and sound stops every time it goes to sleep. i have to  restart it every time to use wifi and sounds. this started happening just after the latest upgrade to OS X. any reasons why its doing that and how to fix it.

    Test after taking each of the following steps. Back up all data before making any changes.
    1. Make sure the network is on the preferred list by following these instructions. It's important to read the article carefully, as it's the starting point for any further efforts to solve the problem. If you skip any of the steps, the problem may not be solved.
    2. Follow the instructions in this support article under the heading "Symptom: The network connection drops unexpectedly."
    3. Make a note of all your settings for Wi-Fi in the Network preference pane, then delete the connection from the connection list and recreate it with the same settings. You do this by clicking the plus-sign icon below the connection list, and selecting Wi-Fi as the interface in the sheet that opens. Select Join other network from the Network Name menu, then select your network. Enter the password when prompted and save it in the keychain.
    4. From the Location menu at the top of the Network preference pane, select Edit Locations. A sheet will drop down. Click the plus-sign button to create a new location. Give it any name you want. In the new location, set up the Wi-Fi service with the same settings you used before. Click Apply and test.
    5. Launch the Keychain Access application. Search for and delete all AirPort network password items that refer to the network. Make a note of the password first.
    6. In some cases, the problem has been resolved by repairing permissions on the startup volume.
    7. Turn off Bluetooth and test.
    8. Reinstall OS X.

Maybe you are looking for

  • Can not open video in e mail

    I took a video with my i pod and sent it to my PC and My sons PC,we both can open and see the video,BUT I can open it on my i pod? Phil

  • Preventing ADF Input Form from validating

    Can anyone say how can i prevent an ADF Creation Form from validating the inputText fields when there is no data entered in any of the fields and the user press a Cancel button to cancel the input and return/navigate to another page??? Currently when

  • My iTunes Store won't open

    My iTunes store won't open. And I keep getting pop-up windows saying they can't identify the server (there are 4 different servers that pop up) I am unable to reset my cache also.  Thanks.

  • After I update my computer it wont restart...?...

    after I do an update my computer restarts then comes to the Mac OS x screen with the blue bar and it dosent move from there I have left it for an hr and Ive tried restarting a millilon times and it still dosent move from that screen last time I did t

  • .swf files

    I am trying use flash buttons from Dreamweaver but when I insert them they are not showing up up in my web page. I am using both safari and firefox to preview the page and it still doesnt show up. If I use an .swf file however that shows up in my pag