Cannot get BI JDBC query to display results..

My connection to the Oracle DB works fine. The system check in Portal returns OK. The system alias is visible in VC. I can browse tables and views. I can use the BI integration wizard to set up a query, and I am also able to review the output (see the actual table rows) within the query configuration tool.
BUT - I can't get the data to be displayed in an output table. I have dragged a table from the output port of the BI query, the column names are what they should be. When deploying the model I get a warning: 'Element "BI query : "All Data : VC_test" is not in use'.
What am I doing wrong here?
Help MUCH appreciated!!
Henning

Hello
It's necessary to add a "Start point" on the input of the SQL table. Something like:
Start point => SQL table => output table
Guido

Similar Messages

  • I have a black dialog box on my display that I cannot get rid of. It displays text of whatever I am in, apps, docs, etc, and I have been unable to get rid of it.

    I have a black dialog box on my display that I cannot get rid of. I was cleaning my keyboard and must have hit some combination of keys that caused it. It shows text announcing everything I open on the display or am looking at. Can anyone help me turn this off? Thanks.

    Hi there francone,
    It sounds like you may have the Picture-in-Picture Zoom option enabled. Take a look at the article below for more information as well as how to disable it.
    OS X Mountain Lion: Zoom content on the screen
    http://support.apple.com/kb/PH11488
    -Griff W.

  • Passing Parameters to SQL Query and Displaying Result

    The user enters a serial number in a text box and then pushes a button to get info about the serial number. I do this with two regions. The first region has the text box and the button. The second region is a Report type region and contains the following SQL:
    select case
    when "WARRANTYSTATUS"."OUTOFWARRANTYDATE" >= sysdate then
    'Serial Number '||"WARRANTYSTATUS"."SERIALNUMBER"||' is in warranty.'
    else
    'Serial Number '||"WARRANTYSTATUS"."SERIALNUMBER"||' is out of warranty.'
    end as "The result is:"
    from "WARRANTYSTATUS"
    where "WARRANTYSTATUS"."SERIALNUMBER" in (:P1_SERIALNUMBER)
    For a single serial number of the form CU5-0799 every thing works. I am a little suprised this works because the SERIALNUMBER in the WARRANTYSTATUS table is of type varchar2 which means the serial number in the where clause must be surrounded by single quoties. Not sure where the single quoties are being added.
    However, what I like to do is to enter more that one serial number, seperated by commas, in the same text box, and then the query return a result for each serial number. What I would like to enter is:
    CU5-0799, CU5-07132, CU5-89345
    The problem is this string of three serial numbers will needs to be have single quotes around each serial number at the level of the sql statement. So the question is how do I make this work?? Thanks for the help in advance.

    Bob,
    If you would change your OTN handle to something more mnemonically friendly, that would help us. Thanks.
    This topic is addressed fully, with various techniques described, here: Re: Search on a typed in list of values .
    I am a little suprised this works because the SERIALNUMBER in the WARRANTYSTATUS table is of type varchar2 which means the serial number in the where clause must be surrounded by single quoties.
    Not true. Quotes are used for literals, not bind variables.
    Scott

  • Cannot get new VOD page to display.

    Hello I am trying to get the Vod service working and have
    followed the documentation to a T but cannot get the page to stream
    or work. I am using IIS 6 and have copied the sample vod folder and
    renamed it modifed the fms.ini file and application.xml and put my
    .flv file in the media folder. When I go to run it from the browser
    and typing rtmp://localhost/vod2/campaign_manager_movie.flv I get
    page cannot be displayed. I have tried different ways like
    rtmp://localhost:1935/vod2/campaign_manager_movie.flv or using full
    machine name but nothing seems to work.
    If I go to the test Vod player Item and browse to the .flv
    file it plays fine. Am I missing something here? I have tried to
    stop and start the services (IIS, FMS) with no luck. I also tried
    to go into the admin console and add the service just in case but
    that didnt seem to help. I have checked the files to make sure I
    didnt make a typo so I dont think that is it.
    Many Thanks in advance for the help

    From the URL:
    rtmp://localhost:1935/vod2/campaign_manager_movie.flv
    I guess that FMS is on the same machine where the browser has
    opened the page from IIS. If it is not so, you can try putting the
    IP address of the machine hosting the FMS in RTMP URL. apart from
    it I don;t se any reason why VOD shouldn't play (except in case you
    are trying to play H.264 file from older flash player (<
    9.0.0.115)

  • XML SQL query not displaying result in SQLPLUS

    Have a registered schema and 1 xml document successfully inserted using Oracle 10.2.0.3.0
    I then run the following query:
    select extract(object_value,'/warehouse/warehousename')from xwarehouses;
    Expecting 1 record to be returned in SQLPLUS but get the following result:
    EXTRACT(OBJECT_VALUE,'/WAREHOUSE/WAREHOUSENAME')
    1 row selected.
    Can anyone shed any light? Is it a setting in SQLPlus

    Thanks A Non
    I still cannot see where I am going wrong!
    The schema registers okay. My inserts work fine.
    --register the schema
    begin
    dbms_xmlschema.registerSchema(
    'http://www.oracle.com/xwarehouses.xsd',
    '<schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oracle.com/xwarehouses.xsd"
    xmlns:who="http://www.oracle.com/xwarehouses.xsd"
    version="1.0"
    elementFormDefault="unqualified">
    <simpleType name="RentalType">
    <restriction base="string">
    <enumeration value="Rented"/>
    <enumeration value="Owned"/>
    </restriction>
    </simpleType>
    <simpleType name="ParkingType">
    <restriction base="string">
    <enumeration value="Street"/>
    <enumeration value="Lot"/>
    </restriction>
    </simpleType>
    <element name = "Warehouse">
    <complexType>
    <sequence>
    <element name = "WarehouseId" type = "positiveInteger"/>
    <element name = "WarehouseName" type = "string"/>
    <element name = "Building" type = "who:RentalType"/>
    <element name = "Area" type = "positiveInteger"/>
    <element name = "Docks" type = "positiveInteger"/>
    <element name = "DockType" type = "string"/>
    <element name = "WaterAccess" type = "boolean"/>
    <element name = "RailAccess" type = "boolean"/>
    <element name = "Parking" type = "who:ParkingType"/>
    <element name = "VClearance" type = "positiveInteger"/>
    </sequence>
    </complexType>
    </element>
    </schema>',
    TRUE, TRUE, FALSE, FALSE);
    end;
    --create the table
    CREATE TABLE xwarehouses OF XMLTYPE
    XMLSCHEMA "http://www.oracle.com/xwarehouses.xsd"
    ELEMENT "Warehouse";
    --Insert
    INSERT INTO xwarehouses VALUES(
    xmltype.createxml('<?xml version="1.0"?>
    <who:Warehouse xmlns:who="http://www.oracle.com/xwarehouses.xsd"
    xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
    xs:schemaLocation="http://www.oracle.com/xwarehouses.xsd
    http://www.oracle.com/xwarehouses.xsd">
    <WarehouseId>1</WarehouseId>
    <WarehouseName>Southlake, Texas</WarehouseName>
    <Building>Owned</Building>
    <Area>25000</Area>
    <Docks>2</Docks>
    <DockType>Rear load</DockType>
    <WaterAccess>true</WaterAccess>
    <RailAccess>false</RailAccess>
    <Parking>Street</Parking>
    <VClearance>10</VClearance>
    </who:Warehouse>'));
    I don't know if you see the error
    Thanks again.

  • How to Get Input From User and Display Result

    Hi ,
    I need to get 2 inputs from user and to display it's Mutilple Value.
    The Below Code is working fine to get 2 Input's from user,but it display a Junk value as a Result .How to
    overcome this Problem. I need to display it's Mutilple(a*b) value of "a " and " b".
    import java.io.*;
    class Mul{
    static int a=0;
    static int b=0;
    static int Count=0;
    public static void main(String args[])throws IOException{
    BufferedReader br =new BufferedReader(new InputStreamReader(System.in));
    do{
    a=(char)br.read();
    Count++;
    b=(char)br.read();
    if(Count==2)
    System.out.println("The Multiplied Value is "+a*b);
    }while(Count<2);
    }

    Hi ,
    I need to get 2 inputs from user and to display it's
    Mutilple Value.
    The Below Code is working fine to get 2 Input's from
    user,but it display a Junk value as a Result .How
    to
    overcome this Problem. I need to display it's
    Mutilple(a*b) value of "a " and " b".
    import java.io.*;
    class Mul{
    static int a=0;
    static int b=0;
    static int Count=0;
    public static void main(String args[])throws
    IOException{
    BufferedReader br =new BufferedReader(new
    InputStreamReader(System.in));
    do{
    a=(char)br.read();This line will get you the ascii-value of the typed character.
    This line will not get you the value typed in.
    Try looking for Integer.parseInt()...
    Count++;
    b=(char)br.read();
    if(Count==2)
    System.out.println("The Multiplied Value is "+a*b);
    }while(Count<2);

  • Macbook cannot get Samsung Syncmaster 710N to display

    I'm trying to connect my macbook to my monitor but anything happens. At the beginning it showed the message "Not Optimal Mode. Use 1280x1024 @60Hz" but after changing the resolution it remains the problem. Is it a monitor problem?

    Been poking around google and it seems that model is picky with the signal it receives.
    These guys were able to fix the not optimal mode screen prompt by soldering in a resister onto a chip in the monitor.
    http://www.fixya.com/support/t223929-novideopicture
    That's a pretty extreme fix though. I'd try turning down the video settings. Maybe the monitor can't handle millions of colors (32-bit depth signal?)
    1. Go to System Preferences > Displays
    2. Set the colors drop-down menu to Thousands
    3. Click OK if you get a warning message
    If that doesn't work I'd try using a lower screen resolution. Hopefully this helps.

  • Cannot get my LG g2 to display and need assistance

    charged my phone over night as usual. no display. when power on I have black (blank screen. phone does a 2 buzz sequence. when call cell from home phone msg says not in service.

        @okjoy,
    VZW to the rescue! Let's get your phone acting right.
    Has there been any physical or liquid damage? Press and hold the Power button (located on the back) until the device powers off (approximately 5 seconds) then release.
    Keep me posted!
    JohnB_VZW
    Follow us on Twitter @VZWSupport

  • I cannot get a pdf link to display correctly with version 4.0.1. How can I go bak to previous version? This appears to be a browser problem that does not occur for IE9.

    When I click on a link to a pdf file (in an email message) using Windows Live Mail, Firefox 4.0.1 opens it as a shortcut and treats it as a pdf app. I can read the pdf file, but cannot save or print it. This is not the case if I use IE9. There never was a problem using the previous version of Firefox. I am using Windows 7 Home Premium.

    See ''tmaca's'' post, 3rd one up from the bottom. He seems to think you can update it manually: https://support.mozilla.com/en-US/questions/822003#answer-184670
    Officially though, we're still at this stage: [http://community.norton.com/t5/Norton-Internet-Security-Norton/Norton-product-compatibility-with-Firefox-Updates/m-p/443808 Norton product compatibility with Firefox Updates]
    If you want to revert to the previous secure version, do the following.<br><br>
    Go to [http://www.mozilla.com/en-US/firefox/all-older.html Download Firefox v3.6.17] and download it to the desktop.<br><br>
    Then go to Add/Remove Programs, scroll down to "Mozilla Firefox" and remove it, choosing to keep your bookmarks, customizations etc., (don't checkmark the box).<br><br>
    Then reboot and delete the folder called "Mozilla Firefox" at this location: C:\Program Files\Mozilla Firefox<br><br>
    Finally run the installation file you downloaded to the desktop earlier.<br><br>
    Your bookmarks, customizations etc., are maintained in a different location and will become available to you again once you complete the installation.<br><br>

  • I cannot get the Schwab website to display properly. It does however display properly on another computer I have using the same Firefox

    firefox asks for security exception and i allow however page still does not display properly

    The website https://www.schwab.com is opening fine on my system.
    -> Update Firefox to the latest version (9.0.1)
    * [[Installing Firefox on Windows]]
    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache/ Clear Cookies & Cache]
    * [[Troubleshooting extensions and themes]]
    * Update All your Firefox Plugins -> [https://www.mozilla.org/en-US/plugincheck/]
    ** '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''
    Check and tell if its working.

  • I cannot get into ipad at all displays disabled 10X

    how can I enable my ipad it continually displays DISABLED on screen

    Try and force iPad into Recovery Mode. Follow step 1 to step 3 very closely.
    http://support.apple.com/kb/HT1808

  • How to write sql query that display comma suppurated result using Group by

    Hi,
    I am having data like bellow ,
    Above result got from joining two tables VMTAGroupClient,VMTAipNames .
    Query i have written to display above result is,
    select vgc.VMTAGroupId,vn.VMTAName from VMTAGroupClient vgc inner join VMTAipNames vn
    on vgc.VMTAID=vn.VMTANameID group by vgc.VMTAGroupId,vn.VMTAName 
    using the VMTAGroupId column how to write query to display result result like,
    VMTAGroupID    VMTAs
       1                       VMTA1,VMTA3
       2                       VMTA2,VMTA4,VMTA5
    Regards,
    Anwar Shaik

    Satheesh,
    Here in my case data need to read from two tables VMTAGroupClient, VMTAipNames.
    VMTAGroupId is in one table and VMTAName column in some other table.Iin both the tables VMTAID is common.
    Please check the above result displayed data from two tables.
    can we write same query using join?
    Anwar Shaik

  • How to display result of database query in JFrame?

    How to display result of oracle database query in JFrame?
    This is part of my code:
    String username, password;
              DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
              OracleConnection conn = DriverManager.getConnection(String url, String username, String password);
    Statement s= conn.createStatement();
    ResultSet q= s.executeQuery("SELECT A, B, C FROM TABLE X");
    Forget what url, username & password are. Is there any problem with my code?
    What should be next if I want to display result of the query in a table in JFrame?Thx !

    How to create JTable with unknown no. of rows? How to get no. of rows of a query?
    I saw the demo of creating JTable on java.sun.com but the the table has a certain no. of rows which is not applicable to my case.
    Suppose the result of query is a table with 3 attributes so there are 3 columns in the table.
    R contains the result of the query.
    Should it be something like this if I want to create JTable of the query?
    How to make n rows of {R.getString(1),R.getString(2),R.getString(3)};?
    public SimpleTableDemo() {
    super(new GridLayout(1,0));
    String[] columnNames = {"A",
    "B",
    "C",
    while (R.next())
    // content of a row
    Object[][] data = {R.getString(1),R.getString(2),R.getString(3)};
    I can't run it because I still can't debug my code which is said before.
    Thx!

  • Display results of MySQL query from AMFPHP by ArrayCollection in AS3 (Flash CS4)

    Hi, i am using Flash CS4 (AS3) + AMFPHP + MySQL to do own flash frontend for Wordpress CMS.  Everything is going fine but i`ve got one problem. Problem with properly display of result of query in AS3 by using ArrayCollection.
    When i check my service in "amfphp/browser/" in web browser i`ve got this (with all needed data):
    (mx.collections::ArrayCollection)#0
    filterFunction = (null)
    length = 2
    list = (mx.collections::ArrayList)#1  
    length = 2     source = (Array)#2
    That is the reason that i suppose that service work fine.  Problem is when i try to display result in AS3. In actionscript i have got this:
    function getNewsListHandler(result:Object):void{
    trace(result);
    This function displays: [object Object].
    I know that "result" is an ArrayCollection type but i don`t know how to get rows and columns from this. I know that my data is there but i have no idea how to get it.
    Clarify: I don`t know how to get to Arrays and simple data variables which are in ArrayCollection.
    Could anyone help me with that problem. I would be gratefull
    P.S. I tried also change query type in service.PHP for mysql_fetch_query but in that case i`ve got only one row (not all data).

    Thanks for fast reply,
    arr_coll:ArrayCollection = new ArrayCollection ({col1:"data1",col2:"data2"}, {col1:"data3",col2:"data4"});
    you would get the data like
    var resultstr:String = arr_coll[1][1].col2;
    trace(resultstr);
    //results in data4
    could you explain me how it was happen (arr_coll[1][1].col2)? It`s not clear to me. I thought in this case rather something like this :
    var resultstr:String = arr_coll[1]['col2'];
    It should give me "data4". I know it wasn`t but i don`t understand ArrayCollection in level which is needed to use your advice in my case. Could you clarify "arr_coll[1][1].col2" a bit?
    What would it look like when you would have something like this:
    arr_coll:ArrayCollection = new ArrayCollection ({col1:"data1",col2:"data2"}, {col1:"data3",col2:"data4"},{col1:"data5",col2:"data6"},{col1:"data7",col2:"data8"});
    and you would want know f.e. position in ArrayCollection of  "data6". How would you code this? arr_coll[1][2].col2?

  • Can we use ad hoc query to get a temporary report of payroll result?

    Hi,All
    can we use ad hoc query to get a temporary report of payroll result?or we have to get a report of payroll result by customizing and ABAP?
    and how can I customizing a report on the basis of standard SAP report for payroll?

    Hi
    As of my Knowledge You cannot get the payroll report through Adhoc query you have to go for ABAP Devlopment
    Thanks
    Mahantesh

Maybe you are looking for

  • Installation problem on AS1.0.2.1, Can you help me !

    I want to install the Oracle9i AS 1.0.2.1 on my computer, my OS is Windows 2000 Professional Edition (Japanese Edition). But when I run the isetup.exe program , I got a message box, "Setup has detected that your iSuite Product Install has not been se

  • Reinstalling owned copy of Mt Lion

    Boought a new iMac.  Apple store cleaned old MacBook Pro of everything, back to original settings of OS X 10.7.5  Genius told me to go home and reinstall Mt Lion wich I had purchased.  Can't find anywhere that shows that I have a copy of Mt Lion that

  • Intercompany sales third party FI entries

    Hello all, Can somone please tell me how do the FI enteris flow in case of Intercompany third party sales. Here Customer XYZ places order on company code 1000 and then comany code 1000 order company code 2000 to directly deliver this material to the

  • Fonts in pages, and also automation of input

    Hi everyone, question 1- Does anybody know why the font "symbol" in Pages will not write in Greek? I used it all the time in Word, to write Greek words. I am lucky to have the font "helena" which will do it, but I liked to looks of Symbols for that.

  • SOAP over TCP/IP

    Hi, Has anyone implemented SOAP over TCP/IP sockets instead of using a web server? Does JWSDP support this? Any information and pointers on how to implement this is highly appreciated. Thanks in advance. Amogh