Displaying SQL result in data grid

I'm trying to access a local DB file using an Air app. I can
successfully create the connection and connect; what I'm really
stuck on is displaying the data from my request in a Data Grid.
Using this code I can see my records in the console, but how
do I get it into a data grid? It doesn't seem to want to go into an
ArrayColleciton.
quote:
function selectResult(event:SQLEvent):void
var result:SQLResult = selectStmt.getResult();
resultData = result;
var numRows:int = result.data.length;
for (var i:int = 0; i < numRows; i++)
var output:String = "";
for (var columnName:String in result.data
output += columnName + ": " + result.data[columnName] +
trace("row[" + i.toString() + "]\t", output);

"arthurlockman" <[email protected]> wrote in
message
news:g7lfrq$qi$[email protected]..
>I want to have an image component that gets it's source
from the item that
>is
> currently selected selected in a data grid (like a
master detail region).
> I
> also want to do the same with a text box and a text
area. How do i do it?
yourDataGrid.selectedItem will contain the data from the
selected item.

Similar Messages

  • No Display of Results in Data Grid

    I have the following code. The logger shows that the
    connection to the remote service t is successful. If I dump the
    results of the CFC I get the data I'm looking for. I haven't done
    this in a while. Any ideas on why I'm not getting results in the
    datagrid?
    Thanks.
    //Import Stuff
    import mx.remoting.*;
    import mx.rpc.*;
    import mx.services.Log;
    //Data type the components
    var name_txt:mx.controls.TextArea;
    var myGrid_dg:mx.controls.DataGrid;
    //Remoting Stuff
    mx.remoting.debug.NetDebug.initialize();
    var myLogger:Log = new Log( Log.DEBUG, "logger1" );
    //override the default log handler
    myLogger.onLog = function(message:String):Void{
    trace("myLogger: " + message);
    //Create the service
    myService = new Service("
    http://localhost/flashservices/gateway",myLogger,"Phonebook.CFC.phoneData",null,null);
    //Hander for results
    function onGetData(msg:ResultEvent){
    mx.remoting.debug.NetDebug.trace({level:"Debug",message:"onGetData"
    myGrid_dg.dataProvider = msg;
    //Handler for errors
    function onDataFault(rs: FaultEvent){
    mx.remoting.debug.NetDebug.trace({level:"None",
    message:"Oops!: " + fault.fault.faultstring });
    var pc:PendingCall = myService.getNetworkUsers;
    pc.responder = new RelayResponder(this._parent, "onGetData",
    "onDataFault");

    Perhaps you should be taking the data into a RecordSet object
    which is displayed by the datagrid very easily.

  • User-Defined Type does not display values in Table Data grid

    I have a User defined Type that is a collection of one character VARCHAR2 values. In the Table Data grid it does not display the character values. I know on all our other Oracle development applications these values display. Is this a bug or is there a snippet to display these values?

    Version: 1.0.0.15
    DB: 10.2.0
    Workstation OS: Windows XP

  • Display SQL results in flash

    Hi all,
    Can anyone tell me how I would go about setting up flash to display results returned by a SQL query one at a time.  I can work out the query and PHP, but want I want to know is how to make flash take each one and animate it, including pausing and clearing the screen when full, then continuing on a 'new' screen.  It's basically for displaying a list of events in a database.
    So, looking at the movie in action, you would see
    Blank screen
    Event 1 (pause)
    Event 2 (pause)
    Event 3 (pause)
    (pause and fade out)
    New screen
    Event 4
    Event 5
    Event 6
    ...and so on until all the results had been displayed.
    Any help much appreciated.  In fact, it may be that actually what I need is help as to how to achieve this returning from xml.  It's really the actionscript I'm lost on.
    Thanks
    James

    If you don't have a handle on managing dynamic content in Flash, then for the time being you should focus on resolving just that aspect and save integrating the sql/php/xml afterwards.  For now just creat an array of stufff that you want to process in the manner you desire and work it from there.  Eventually, that's what you end up with when you feed the file the data anyways.
    As far as the pausing and animating aspects go, your best bet will be to search Google for a tutorial regarding maybe a slideshow or marquee that runs automatically.  Figure out how it works and then figure out how to turn it into something that suits your needs.
    The basic tools you'll be after will be the Tween class for animating and the Timer class for triggering pausing/motion, along with their respective event listeners.  If you can find simple tutorials just for those two things separately, you might be able to reason out the merger for what you're after.

  • Remote Call to Blazeds and displaying the result set in grid

    Hi,
    I want to call a remote method using Flex application from Blazeds and display the values in DataGrid. Can anyone help in this ?
    -- I am using AMFChannel
    -- The method to be called is PolicyApnVO.getPoliciesApn()
    -- Please advice any correction if required
    Here is the mxml code :
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                    creationComplete="initApp()" viewSourceURL="srcview/index.html">
        <!--
        Simple client to demonstrate runtime configuration of destinations.
        The "runtime-employee" destination is configured in
        EmployeeRuntimeRemotingDestination.java.
        -->
        <mx:Script>
            <![CDATA[
                import mx.messaging.ChannelSet;
                import mx.messaging.channels.AMFChannel;
                import mx.rpc.remoting.mxml.RemoteObject;
                [Bindable]
                public var srv:RemoteObject;
                public function initApp():void
                    var channel:AMFChannel = new AMFChannel("my-amf", "http://192.168.102.208:8400/policyAnalytics/messagebroker/amf");
                    var channelSet:ChannelSet = new ChannelSet();
                    channelSet.addChannel(channel);
                    srv = new RemoteObject();
                    srv.destination="runtime-policy";   
                    srv.channelSet = channelSet;
                    srv.PolicyApnVO.getPoliciesApn();
            ]]>
        </mx:Script>
        <mx:Panel title="Policy Details" width="100%" height="100%">
            <mx:DataGrid width="100%" height="100%" dataProvider="{srv.PolicyApnVO.getPoliciesApn.lastResult.data.result}"
                         showDataTips="true">
                <mx:columns>
                    <mx:DataGridColumn headerText="APN Id" dataField="apnId"/>
                    <mx:DataGridColumn headerText="APN Name" dataField="apnName"/>
                    <mx:DataGridColumn headerText="Policy ID" dataField="policyId"/>
                    <mx:DataGridColumn headerText="Policy Name" dataField="policyName"/>
                </mx:columns>
            </mx:DataGrid>
        </mx:Panel>
    </mx:Application>

    There may be other ways to do this but here's what I would do:
    1) add a results method to the remote object:
    src.result="onResult(event.result)";
    2) add the callback method: private function onResult(event : * = null)
    :void{
                                                         if(event is
    ArrayCollection)
                                                                myData =
    ArrayCollection(event);
    3) add the variable: private var myData:ArrayCollection;
    4) make the dataProvider for the grid use the my data :
    dataProvider=""
    You can probably avoid all this by adjusting your dataProvider. I am just
    not sure what it would be without experimenting. But definitely not what
    you have. Maybe just {svc.result}.

  • Display SQL results

    Dear all,
    I need some advice on how to display results of an SQL query in Forms.My scenario is as follows:
    The use need to searchs for a First name in Table called Customers.
    Users enters User name need and press Search Button.I need to display all names that matches his criteria.
    How to do that in Forms?
    Thanks

    The easiest way to do this would be to create two data blocks. The first is a Control block (not based on a database table) and only has the FIRST_NAME field and the Search button. The second block is a base table block based on the CUSTOMER table. Use the name entered in the FIRST_NAME field to filter the records in a base table block. When your user clicks on the Search Button, the code in the button would simply add the FIRST_NAME value to the WHERE clause of the base table block and then call the EXECUTE_QUERY() built-in to query the block.
    When-Button-Pressed Trigger Example:
    BEGIN
       IF :query_block.first_name IS NOT NULL THEN
          SET_BLOCK_PROPERTY('data_block',default_where,'first_name = :query_block.first_name');
          go_block('data_block');
          execute_query;
       ELSE
         message('Please enter a name before searching.');
       END IF;
    END;Default functionality in Oracle Forms will handle the rest.
    Hope this helps.
    Craig...

  • How can i get the external Sql result return data to abap?

    Dear All
             I have a problem to how to get the select  result data return abap.
    I used abap to run external SQL server. below is my code:
    ***in above ,abap has already connected external SQL.
    Sql = u2018select * from user01u2019
          CALL METHOD OF rec 'Open'
            EXPORTING #1 = sql
            #2 = con
            #3 = '1'.
          IF NOT sy-subrc = 0.
            MESSAGE e000 WITH 'run external sql error!'.
          ENDIF.
    ***now ,below code how can I get the select result to abap code?
    I know I can use native_sql  such as u2018OPEN CUR1 FOR SELECT * FROM user01 AND FETCH NEXT CUR1 INTO :WAu2019.
        Thanks for all
    Sun

    Thanks.
    it is okay now by myself.
    con_str = 'Provider=SQLOLEDB.1;Password=pwd;Persist Security Info=True;User ID=name;Initial Catalog=VTL_DEMO;Data Source=192.168.21.50'.
      CREATE OBJECT o_conn 'ADODB.Connection'.
      CREATE OBJECT o_rec 'ADODB.Recordset'.
      SET PROPERTY OF o_conn 'Provider' = provider.
      SET PROPERTY OF o_conn 'ConnectionString' = con_str.
      CALL METHOD OF o_conn 'Open'.
      sql_str = 'select *  from userh'.
      CALL METHOD OF o_conn 'Execute' = o_recordset
        EXPORTING
        #1 = sql_str.
       #2 = o_conn.
      GET PROPERTY OF o_recordset 'EOF' = rs_eof.
      REFRESH itab.
      WHILE rs_eof NE 1.
        CALL METHOD OF o_recordset 'fields' = o_field
          EXPORTING
          #1 = 0.
        GET PROPERTY OF o_field 'Value' = itab-name.
        CALL METHOD OF o_recordset 'fields' = o_field
          EXPORTING
          #1 = 1.
        GET PROPERTY OF o_field 'Value' =  itab-cid.
        APPEND itab.
        CALL METHOD OF o_recordset 'MoveNext'.
        GET PROPERTY OF o_recordset 'EOF' = rs_eof.
      ENDWHILE.

  • Displaying SQL results in Web Pages from non-native DBs?

    How do developers process the results from SQL queries fron  non-narive DBs? If Spry Data sets are the best approach do I save the  query as a .htnl file with the results formatted as an HTMLDataset or do  I save the SQL query as an XML file? What other options do I have?
    TIA Ephraim.

    Hi
    You will require a database driver for PHP in order for it to communicate with your chosen database, you can find a list of supported drivers here - http://php.net/manual/en/pdo.drivers.php.
    However this will require you to use PHP:PDO for the querys/inserts/updates etc, see - http://php.net/manual/en/book.pdo.php. PDO is supported by the zend framework or you can code your own by following the examples given in the php:pdo manual, (link above).
    The good news is that by using pdo it is possible to use prepared statements and transactions if your database supports these. Prepared statements are the recommended method of issuing queries etc.
    PZ

  • How to display reply in flex data grid?

    Hello All,
    Frompast couple of months i am working on a Flex Application which used MySQL databse and PHP as server side language. In this application user can login and they can post their comments which will be displayed in a datagrid. This will have a reply button where other users can send their reply. My problem is how i will be displying the reply of a msg in a datagrid. Here is the screenshot of my datagrid
    I thought of 2 options:
    1. Displaying the reply in the datagrid and disaply in the same row: i don know how we can do this.
    2. Store all the replies in data base and display in toher panel though a button. From flex side it is easy to do but i don know how i can store them in database.
    Please let me know if you have any ideas/tutorials on this

    This is only in theory, haven't actually checked it but I think it could work
    If each one of those posts is done by an itemrender, your renderer can have 2 states stateone and statetwo for example.
    The reply state (statetwo) being bigger and containing space for the reply post.
    Store your replies in the database and have another boolean column ( Tinyint(1) or something) in your MySql db indicating that a particular post has a reply . When you pull your data from the database and put in in an arraycollection check this column for each post and use it to set the state of the itemrenderer.
    That way posts with no reply with be state one, and posts with replies will be state 2 and you can populate the reply field with data from the object in your arraycollection.
    I suppose it all does depend on how you get your data from MySQL and how you store it in Flex but I think states is a way you could accomplish things like this.

  • How to save xml and xsl function to a data grid column

    hi. wondering, i have a xml and a xsl file, and have the transform class, and so need to save the xml and the xsl file, and display the results on a particular data grid column and to loop through the data grid columns. so, how do i use the xml save function
    class, any examples or point me to articles, where i can read how to do this. need to display a file, with a different colour and font. any ideas. thanks. marvin.hi. need to save a xml and xsl file and display the results on data grid. how do i do this. any
    sample code or articles i can read about thanks. marvin.
    http://startrekcafe.stevesdomain.net http://groups.yahoo.com/groups/JawsOz

    
    Hi.
    Okay, well, did ask on the msdn forums, and some one replied, and so, will paste the code he suggested.
    But getting a lot of errors.
    Can you help me out.
    Where am I going wrong.
    So, I can then get this to work, then it shows the colours and the fonts on the specified data grid.
    Can you help.
    Want to get this working and passed today if possible.
    Will pasate the code and the errors below.
    Can you help.
    Where am I going wrong.
    Marvin.
    // Set up the data set.
    DataSet ds =
    new
    DataSet();
    // Set up the data table.
    DataTable dt =
    new
    DataTable();
    // Ad the data table to the data set.
        ds.Tables.Add(dt);
    // Write the xml document to the data grid column.
        ds.WriteXML(@"c:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\CurrentCount.xml");
        ds.WriteXML(@"c:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\OnOrder.xml");
        ds.ReadXML(@"c:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\CurrentCount.xml");
        ds.ReadXML(@"c:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\OnOrder.xml");
    // Set up the data table and the data set and set to 0.
        dgvDisplayData.DataSource = ds.Tables[0];
    Error      1              Invalid token '(' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                215        
    18           WoodStocks
    Error      2              Invalid token ')' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                215        
    21           WoodStocks
    Error      3              Invalid token '(' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                219        
    16           WoodStocks
    Error      4              Invalid token '(' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                221        
    16           WoodStocks
    Error      5              Invalid token '(' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                222        
    15           WoodStocks
    Error      6              Invalid token '(' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                223        
    15           WoodStocks
    Error      7              Invalid token '=' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                227        
    31           WoodStocks
    Error      8              Array size cannot be specified in a variable declaration (try initializing with a 'new' expression)               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                227        
    43           WoodStocks
    Error      9              Invalid token ';' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                227        
    45           WoodStocks
    Can you help me out.
    Thanks.
    http://startrekcafe.stevesdomain.net http://groups.yahoo.com/groups/JawsOz

  • EA1 - Cannot Change Date Format in SQL Results

    In version 1.2, I used to go to Tools > Preferences > Database > NLS Paramters and change the date format there. The change would then be reflected in the SQL results for date columns.
    When I try to do the same thing in 1.5 EA1, the date format is always the same, DD-MON-RR, no matter what I put in the date format setting under NLS Paramters.
    Am I missing something?
    Thanks.

    Just a quick post to make sure that the bug you logged takes into account all NLS parameters :), as this does not concern only dates but also timestamp formats, decimal and group separators as well, and probably all of the NLS parameters I assume.

  • Dumping data from an advanced data grid on the browser to microsoft Excel

    I am building an app which enables a user to define a sql
    query in a flex app on the browser. Once defined and the data
    retrieved, the result set is then displayed in an advanced data
    grid. The user then needs to be able to dump the data in the grid
    to an Excel spreadsheet.
    I'm wondering if anybody can point me to some possible
    solutions for the Excel data dump part of this problem? Everything
    else works.
    Flex help does have one solution, but I'm getting an error
    message that doesn't want to yield. I'd like to know if there are
    other possibilities?
    Thanks in advance. Jerry in Juneau, Alaska

    What version are you using? If in 9i, you can use external tables. Otherwise, you will need either SQL loader, or to use ODBC. If you send me an example of your data, I can create a sample of each for you.

  • Data grid hidden

    hi. okay, have a two click buttons, and they are supposed to write to the xml and read the xml file, and then transform it to the application, when i click on the Current count or On Order buttons, when you click these buttons, have a grey background colour,
    foreground blue colour, and have a different font of Verdana and Century School book. it keeps  hidden, when i click these buttons, when i load the data grid from the csv. so, how do i make sure that, it is not hidden, when i click on it. will paste the
    two button click events. have tried googling this, and did not find any thing. so will paste the code below.
    marvin.
            // This function will display the Current Count data grid column  to change the style sheet for this click event.
            private void btnCurrentCount_Click(object sender, EventArgs e)
          // Design a data table and write and read the xml documents to the data grid columns selected.
          // Set up the data set.
          DataSet ds = new DataSet();
          // Set up the data table.
          DataTable dt = new DataTable();
          // Ad the data table to the data set.
          ds.Tables.Add(dt);
          // Write the xml document to the data grid column.
          ds.WriteXml(Application.StartupPath + ("CurrentCount.xml"));
          ds.ReadXml(Application.StartupPath + ("CurrentCount.xml"));
                // Set up the data table and the data set and set to 0.
          dgvDisplayData.DataSource = ds.Tables[0];
              // Set focus on the Data Grid Column.
          dgvDisplayData.Focus();
          System.Xml.Xsl.XslCompiledTransform xslTransformer =new System.Xml.Xsl.XslCompiledTransform();
          xslTransformer.Load("CurrentCount.xsl");
          xslTransformer.Transform("CurrentCount.xml", "CurrentCount.html");
        // This function will display the  On Order data grid column  to change the style sheet for this click event.
        private void btnOnOrder_Click(object sender, EventArgs e)
          // Design a data table and write and read the xml documents to the data grid columns selected.
          // Set up the data set.
          DataSet ds = new DataSet();
          // Set up the data table.
          DataTable dt = new DataTable();
          // Ad the data table to the data set.
          ds.Tables.Add(dt);
          // Write the xml document to the data grid column.
          ds.WriteXml(Application.StartupPath + ("OnOrder.xml"));
          ds.ReadXml(Application.StartupPath + ("OnOrder.xml"));
          // Set focus on the Data Grid Column.
          dgvDisplayData.Focus();
                System.Xml.Xsl.XslCompiledTransform xslTransformer = new System.Xml.Xsl.XslCompiledTransform();
          xslTransformer.Load("OnOrder.xsl");
          xslTransformer.Transform("OnOrder.xml", "OnOrder.html");
    http://startrekcafe.stevesdomain.net http://groups.yahoo.com/groups/JawsOz

    Hello,
    Perhaps you can show what you are after by posting images and describe from the images what you want as I am unclear otherwise to what you are after, thanks.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem. Contact via my webpage under my profile
    but do not reply to forum questions.

  • SQL Developer 1.1.0.21: Issues with Data Grid and SQL syntax checking

    In this new release of SQL Dev, when I execute a SQL in the SQL Worksheet and click in the Data Grid in the Results tab and try to navigate within a record using arrow keys, the grid cell enters into edit mode by default and so I cannot use the Left or Right arrow keys to navigate the grid. I am forced to use tab key to navigate. This is counter intuitive in my opinion.
    Is there any option to change this behavior?
    Another issue that I have come across is with SQL syntax checking. In some cases, when I press F9 to execute a SQL, it shows the SQL as executed i.e. shows something like 0.0134 seconds in the toolbar and no results displayed. In reality, the SQL had some syntax error which were NOT reported. This can be frustrating since now I have to fall back to SQL*Plus or TOAD just for syntax check.
    I like the fact that SQLDev highlights the current SQL but it would be more useful if it just indicated the first line of the current sql instead of highlighting the whole sql.
    Manish

    "In this new release of SQL Dev, when I execute a SQL in the SQL Worksheet and click in the Data Grid in the Results tab and try to navigate within a record using arrow keys, the grid cell enters into edit mode by default and so I cannot use the Left or Right arrow keys to navigate the grid. I am forced to use tab key to navigate. This is counter intuitive in my opinion."
    In the "Results" tab, Click Ctrl & Tab keys (at the same time) or with mouse click on any cell other than the first column (a sequence or rownum), you will be able to navigate using the arrow keys.
    "Another issue that I have come across is with SQL syntax checking. In some cases, when I press F9 to execute a SQL, it shows the SQL as executed i.e. shows something like 0.0134 seconds in the toolbar and no results displayed. In reality, the SQL had some syntax error which were NOT reported. This can be frustrating since now I have to fall back to SQL*Plus or TOAD just for syntax check."
    The 0.0134 seconds could be the result of the most recently executed successful statement. Check the Script Output tab for errors. Use F5 (Run Script option) instead of F9.
    "I like the fact that SQLDev highlights the current SQL but it would be more useful if it just indicated the first line of the current sql instead of highlighting the whole sql."
    On the SQL statement (or code), Right Click -> Format SQL (or press Ctrl & B), proper formatting would help.
    I use version 1.0.0.15.57 and seems to be working allright.
    - Babu Rangasamy

  • Is it possible to return a data grid in sql developer from package?

    Hi, I am in need of some help in returning a datagrid rather than just a list from a package. This is my package:
    CREATE OR REPLACE PACKAGE BODY C_1
    as
    PROCEDURE COUNTING1 (C_YEARFROM IN NUMBER, C_TABLE_NAME IN VARCHAR2) is
    yearCount NUMBER;
    c_sql long;
    BEGIN
    execute immediate 'SELECT COUNT(DISTINCT SPECIES) FROM '||C_TABLE_NAME ||' WHERE year >2007' into yearCount;
    dbms_output.put_line('Distinct species count: ' ||yearCount);
    end counting1;
    end c_1;
    Is it possible to get the results of these in a table or data grid in sql developer, e.g. I would like to sort results etc rather than just a flat list? Something a bit more elegant then dbms_output.put_line?
    Thanks

    yes, I copied the wrong code into the example - what I actually want to display in a grid is the following:
    CREATE OR REPLACE PACKAGE RSET_CURSOR IS
    cursor rs_cursor is select species, location from ot;
    r_c rs_cursor%rowtype;
    end;
    create or replace package rset_cursor2
    is
    procedure printSpecies;
    end rset_cursor2;
    create or replace package body rset_cursor2
    is
    procedure printSpecies is
    begin
    open rset_cursor.rs_cursor;
    loop
    fetch rset_cursor.rs_cursor into rset_cursor.r_c;
    exit when rset_cursor.rs_cursor%notfound;
    dbms_output.put_line(rset_cursor.r_c.species);
    end loop;
    close rset_cursor.rs_cursor;
    end;
    end;
    I have also just noticed the list I am getting is only including one column of data where it should include 2, have I omitted something?
    Thanks

Maybe you are looking for

  • Mac Mini DVi on HDTV - PROBLEM

    hey all, i am using a mac mini (1.42 G4 80gb 512 combo) on a sharp HDTV using a DVI to HDMI cable. everything works but i have a problem that it is slightly blurred, this makes text (especially small fonts) very difficult to read. is there any way to

  • In Credit Memo Net Value is coming 0.

    Dear SD Expert, I have created Credit Memo with Reference Credit memo request. While creating Credit memo (VF01) the Net Value is 0. But the Billed quantity is coming correct in the system. In Credit Memo request(VA01) every thing is ok, Quantity and

  • HT4085 Sound isn't working on iPad

    Sound works with headset on.  But doesn't work with out.

  • Airport Network?

    Hi All Hopefully someone can put me straight and unconfuse me. I am looking to create a wireless network using my G5 1.8 upstairs, linking to my hifi downstairs. I know I will need and extreme card for the mac and an Express Base station with Airtune

  • Configuring with D-Link or Netgear Modem

    Hi, I'm facing unsolvable problem with installing a brand new Aiport Extreme router with my already working D-Link modem. The modem works fine when using it directly, and works fine with an old D-Link router. I gave up on the D-Link modem and bought