Output only selected lines columns on a row

Hi all!

This is my second post and I hope that I have the time I post this topic where it should be... :D

I HAV hurt with the release of the rows or columns. I searched the forum, but so far I've not found anything that can help me. (or I found, but not understood that I found... ;)))

Here is a short version of my 'problem '.
Table "transp":
time          assigment          chain          link
01:14:15     1111               Out          A
01:14:25     1111               Out          B
01:14:35     1111               Out          C
01:14:45     1111               Out2          A
01:14:55     1111               Out2          B
01:14:05     2222               Out          A
01:15:05     1111               Out2          C
01:15:15     2222               Out2          A
01:15:15     2222               Out2          B
01:15:15     2222               Out2          C
Desired output:
Assigment     Time when Out+A          Time when Out+B          Time when Out2+C
1111          01:14:15          01:14:25          01:15:05
2222          01:14:05          -               01:15:15
As you can see, I'm not all combinations of published chain stitches. I want to only publish those selected. To resolve I checked if the two conditions are met (1), and if they are (1 + 1 = 2) I take the time to corresponting. (get code below)

This is the code I tried with:
select assigment as "Tr-assigment",
to_char(decode((to_number(decode(substr(chain,1,3), 'Out',1,0)+decode(substr(link,1,1), 'A',1,0),'99')),2,to_char(xuptime,'HH24:MI:SS'),'-')) as "Starting",
to_char(decode((to_number(decode(substr(chain,1,3), 'Out',1,0)+decode(substr(link,1,1), 'B',1,0),'99')),2,to_char(xuptime,'HH24:MI:SS'),'-')) as "On wagon",
to_char(decode((to_number(decode(substr(chain,1,4), 'Out2',1,0)+decode(substr(link,1,1), 'C',1,0),'99')),2,to_char(xuptime,'HH24:MI:SS'),'-')) as "Finished"
FROM transp 
GROUP BY assigment, chain, link, time
ORDER BY assigment
Output current:
Assigment     Time when Out+A          Time when Out+B          Time when Out2+C
1111          01:14:15                         
1111                            01:14:25          
1111               
1111          
1111          
1111                                        01:15:05
2222          01:14:05          
2222                    
2222                    
2222                                        01:15:15          
.....               
Does anyone have an Tips how to solve this problem? I feel stuck and starting to get the feeling that I think quite wrong... (I am quite used to think bad sense, but thit once it starts to get enying.)  ;))

P.S. actually about 400,000 lines in the table and columns about 30.

Thanks in advance!

Best regards / Anders, Sweden

Edited by: blossa 01-sep-2011 22:38

Edited by: blossa 01-Aug-2011 22:47 (try to get a better view of the output-examples)

Edited by: blossa 01-sep-2011 22:49

Edited by: blossa 01-sep-2011 22:50

Try this

select assignment,min(decode(link||substr(chain,1,4),'AOut',time)),min(decode(link||chain,'BOut',time))
,min(decode(link||chain,'COut2',time)) from transp group by assignment

simply using min but anyway hope has, OUT B, C OUT2 are unique for assignment

Published by: Leonard on 1 Sep, 2011 23:10

Tags: Database

Similar Questions

  • the selection of column in the row for the duplicate line

    Dear Sir.

    Please help me with a query

    Select the value of the column in the value of line when the line is repeated by the value of Column2 order.

    col1 col2
    Row1 1 d
    row2 1 b
    row3 1 c
    row3 2 c
    row4 2 d
    row5 2A
    my application should choose as below

    col1 col2 col3 col4
    Row1 1 c b d
    row2 2A c and d

    Please help I really need

    Thanks and greetings

    Sanat

    Frank gave you the answer...
    Here's another

    SQL> create table test
      2  as
      3  select 1 col1, 'a' col2 from dual union all
      4  select 1 col1, 'd' col2 from dual union all
      5  select 1 col1, 'e' col2 from dual union all
      6  select 2 col1, 'b' col2 from dual union all
      7  select 2 col1, 'd' col2 from dual union all
      8  select 2 col1, 'e' col2 from dual union all
      9  select 3 col1, 'c' col2 from dual union all
     10  select 3 col1, 'a' col2 from dual union all
     11  select 3 col1, 'd' col2 from dual
     12  ;
    
    Table created.
    
    SQL>
    SQL> select col1
      2       , max (decode (rn, 1, col2)) col2
      3       , max (decode (rn, 2, col2)) col3
      4       , max (decode (rn, 3, col2)) col4
      5    from (
      6  select col1
      7       , col2
      8       , row_number () over (partition by col1
      9                                 order by col2
     10                            ) rn
     11    from test
     12  )
     13   group by col1
     14  /
    
          COL1 C C C
    ---------- - - -
             1 a d e
             2 b d e
             3 a c d
    
  • How to erase only selected elements of the criteria row of the view

    Hello

    I use Jdev 11.1.1.7

    Requirement:

    Step 1 - run VO according to display criteria based on the associated parameters search engine

    Step 2 - on the same search engine, there are a few checkboxes and the link, if users select check box and click the Super accurate, it must set the value of the checkbox enabled in above search criteria, I used the code below, everything works perfectly as expected, but problem It's

    Step 3 - If user different box is checked and click the same link code below is adding once AGAIN value of check box in step 1, step 2 see criteria settings, I don't want to, when user select multiple checkbox and click on the hyper link, I need to delete ONLY to see the parameters of criteria that are set in step 2 and all newly selected value checkbox associated with criteria view... How can we achieve this feature?

    Any help is appreciated

    ViewObjectImpl masterVo = getEmployeeVO();

    MasterVc = ViewCriteria

    masterVo.getViewCriteria ("EmployeeVOCriteria");

    ViewCriteriaRow vcRow = masterVc.createViewCriteriaRow ();

    Add criteria

    vcRow.setConjunction (ViewCriteria.VC_CONJ_AND);

    ViewCriteriaItem rowViewCriteriaItem = vcRow.ensureCriteriaItem("StatusCs");

    rowViewCriteriaItem.setValue (StatusValue);

    masterVc.addRow (vcRow);

    masterVo.applyViewCriteria (masterVc);

    masterVo.executeQuery ();

    As I said earlier, the code in your first post adds only a criterion. It does not remove everything that was added before. To clear bind variables that could have been used before, there is no code at all. I don't see how you decide what criteria to remove or allow to bind variable that you must delete.

    OK, you say that's not relevant. I show a code that allows you to remove all of the selected criteria.

    remove the current criteria

    String [] applyViewCriteriaNames = getApplyViewCriteriaNames();

    If (applyViewCriteriaNames! = null) {}

    for (String cname: applyViewCriteriaNames) {}

    removeApplyViewCriteriaName (cname);

    }

    }

    Claire bind variable with the name bindCity

    ensureVariableManager () .setVariableValue ("bindCity", null);

    You know what criteria to remove and which variable to clear. Then, you can use the above code to do.

    Timo

  • Getting a value from all the selected lines in the method of the AM

    Hi all

    I use JDev 11.1.1.4.0

    I have a table with the selection of several lines. In my module application I want to call a stored procedure with the parameter whose value depends on the selected line in the table.
    For the only selection I can make fallow:
        public void wypiszId() {
            ViewObject vo = findViewObject("ProcsklView1");
            String st = vo.getCurrentRow().getAttribute("IdProcskl").toString();
            System.out.println(st);
    How can I deal with multiple selection?

    Kind regards
    Wojtek.

    Hello

    VO/iterator will hold only selected line at a time. Thus, for multi table enabled selection, the last selected line would be the selected line (vo / Iterator). In order to obtain all the selected lines, you must obtain support bean by linking the Table of the ADF.

    Check out this blog on this goal.

    http://blogs.Oracle.com/aramamoo/2010/12/getting_all_selected_rows_in_adf_table_with_multiple_rows_selection_enabled.html

    Arun-

  • How can I configure only the first row of a DataGrid as the selected line?

    I have a "Go" button on a search form that retrieves data in a grid, already linked to data.  After the data is read, I want to make the first line in the Datagrid control in the selected row, as if the user has clicked on it.  If the result set is empty, I don't want the code down.  (I want only one line can be selected at a time)

    protected function btnGo_clickHandler(event:MouseEvent):void
    {
    getSBJsResult.token = baa_data_svc.getSBJs (cmbSrch.text);

    grdSBJs. //  ?????  What is happening here to select the first line?
    }

    That should do it.

    If this post has answered your question or helped, please mark it as such.

    If (myDataGrid.dataProvider.length > 0) {}

    myDataGrid.selectedIndex = 0;

    }

  • Select line if found, otherwise select between rows

    Oracle 11.2.0.1

    Windows

    create table test (col1 number);

    Insert test values (10957);

    Insert test values (10958);

    Insert test values (10959);

    Insert test values (10960);

    Insert test values (10972);

    Insert test values (10973);

    Insert test values (10980);

    Insert test values (10982);

    SQL > select * from test where myfunct (10960) = true;

    COL1

    ----------

    10960

    If I said value 10962 then output should be these lines that comes between the values.

    SQL > select * from test where myfunct (10962) = true;

    COL1

    ----------

    10960 <-10960 min is closest to 10962

    10972 <-10972 max is the closer of 10692

    even similar;

    SQL > select * from test where myfunct (10981) = true;

    COL1

    ----------

    10980

    10982

    If I select which is out of reach of min/max all the then only I should get any selected lines.

    SQL > select * from test where myfunct (10983) = true;

    or

    SQL > select * from test where myfunct (10956) = true;

    no selected line

    I have no idea how to choose this line if col1 = given, otherwise the lines min/max who comes between the two given the value and no line if the given value is min/max in the col1 values.

    Kindly help me.

    Thank you.

    Always use the SQL because SQL purse always faster than anything. But if you want to get the result by running the function you can create pipelined function.

    SQL > CREATE or REPLACE TYPE obj_testCol1 AS OBJECT (collar number);

    2.

    Creative type

    SQL > CREATE or REPLACE TYPE obj_testCol1_table IS TABLE OF THE obj_testCol1;

    2.

    Creative type

    SQL >

    SQL > CREATE or REPLACE function MyPF (n number)

    2 return obj_testCol1_table

    3 PIPELINED is type t_ref_cursor IS REF CURSOR;

    4

    t_ref_cursor rf_c 5;

    6 r_out_rec obj_testCol1: = obj_testCol1 (null);

    7. start

    8

    9. open rf_c for

    10

    11. Select col1

    12 years of test

    13 where col1 = n

    14 union of all the

    15 select col1

    16 from (select *)

    17 in (select row_number() over (partition by sign (col1 - n) order to decode (sign (col1 - n),-1, abs (col1 - n), col1 - n)) r,)

    18 max (col1) over() mx.

    19 min (col1) over() minutes.,

    20                             col1

    21 test

    22 where does not exist (select 1 test where col1 = n))

    where the 23 mx > = to_number (n)

    24 and mn<=>

    25 where r = 1;

    26

    27 LOOP

    28 rf_c FETCH

    29 IN r_out_rec.col;

    30

    EXIT 31 WHEN rf_c % NOTFOUND;

    PIPE 32 ROW (r_out_rec);

    33 END LOOP;

    34

    35 CLOSE rf_c;

    36 end;

    37.

    Feature created

    SQL > select * from table (MyPF (10960));

    COL

    ----------

    10960

    SQL > select * from table (MyPF (10962));

    COL

    ----------

    10960

    10972

    SQL > select * from table (MyPF (10983));

    COL

    ----------

    SQL >

    ----

    Ramin Hashimzade

  • definition of particular column of all selected lines of Viewobject in MB

    I have two Radio buttons: one is for real and a fake.
    I have the button.
    I Table.I have the ability to select several rows at a time.
    One of the column in the table is only to be set to 'True' or 'False'. This column, I did as false and true containg LOV.

    When the user selects lines (more than one may also able to choose) in the table and select the 'real' radio button and click on the button right now I need to set the value LOV 'true' in all lines.
    If he select the 'false' radio button, this time value LOV should set to false.

    So is my requirement.

    Inside of the Managed bean, how can I set the particular column of all the rows selected in Viewobject.

    If anyone has the code for this please give me.

    Sanchez

    Hi Catherine,

    You can browse the selected table lines, get the key from the line, find the line in the view object using the key of this line and appropriate attribute set to false or true:

            DCBindingContainer dc = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
            DCIteratorBinding iter = dc.findIteratorBinding("");
            ViewObject vo = iter.getViewObject();
            Transaction trans = vo.getApplicationModule().getTransaction();
    
            RowKeySet rks = table1.getSelectedRowKeys();
            Iterator rksIter = rks.iterator();
            while (rksIter.hasNext()) {
                List l = (List) rksIter.next();
                Key key = (Key)l.get(0);
                //System.out.println(key);
               Row row = vo.getRow(Key);
               row.setAttribute("", );
            }
    
            trans.commit();
    

    where af:table is bound to table1 in managed bean

    Kind regards

    Branislav

  • Enter the selected line only an editable af:table ADF

    Hello

    We have an obligation to engage only the selected lines in a table. All lines in the table must be modifiable. There should be a 'Save' button in a column that has to save the selected line when you click it.

    Could you please share your comments/suggestions.

    Environment:

    JDeveloper and ADF 11.1.1.7

    Thank you

    Srikanth

    Maybe you can add the attribute transitional to EO as an indicator whether the line should be validated in db or not, override EOImpl.doDML () and skip super.doDML () If this attribute is not set.

    Dario

  • need to get only one line when you use between (date columns)

    Hi all

    create the table SAMPLE_ITEMS

    (ITEM_NO, varchar2 (10))

    Date DELIVERY_DATE,

    Number of QTY_SUM1

    Number of QTY_SUM2

    Number ITEM_QTY,

    Number ORDER_QTY,

    Number ITEM_AMOUNT,

    Number of SALES_AMOUNT

    );

    insert into SAMPLE_ITEMS values ('AAA', ' 28 / 04/2014 ',-88, 0,475,262,-123.45,-1188);

    insert into SAMPLE_ITEMS values ('AAA', ' 28 / 05/2014 ', 0, - 122, 475, 262, - 10.234,-1647);

    insert into SAMPLE_ITEMS values ('AAA', ' 16 / 06/2014. ', 0, 0,475,262,-80.59,-135);

    insert into SAMPLE_ITEMS values ('AAA', 19 December 2014 ', 0, 0,475,262,-42.29,-67.5);

    Setting out with my own query,

    ITEM_NOTRUNC (DELIVERY_DATE)QTY_SUM1QTY_SUM2ITEM_QTYORDER_QTYITEM_AMOUNTSALES_AMOUNT
    AAA28/04/2014-880475262-123.45-1188
    AAA28/05/20140-122475262-10.234-1647
    AAA16/06/201400475262-80.59-135
    AAA19/12/201400475262-42.29-67.5

    Every time I question as code

    Select * from SAMPLE_ITEMS

    where DELIVERY_DATE between April 28, 2014 ' and 19 December 2014 '-> they must pass as a parameter

    I need to get only one line

    AAA-88-122475262-256.564-3037.5

    Database 11.2.0.1.0

    Note; Please do not use MAX for Date and do not want to display Date columns in the result

    Note 1: I want to choose DELIVERY_DATE in select it also and only get a line like above the expected result

    SELECT item_no

    SUM (qty_sum1),

    SUM (qty_sum2),

    SUM (DISTINCT item_qty),

    SUM (DISTINCT order_qty),

    SUM (item_amount),

    SUM (sales_amount)

    OF SAMPLE_ITEMS

    WHERE the DELIVERY_DATE BETWEEN TO_DATE (28 April 2014 ', "dd/mm/yyyy")

    AND TO_DATE (19 December 2014 ', "dd/mm/yyyy")

    GROUP BY item_no;

    I will get

    ITEM_NO Trunc (DELIVERY_DATE) QTY_SUM1 QTY_SUM2 ITEM_QTY    ORDER_QTY TTEM_AMOUNT SALES_AMOUNT        

    AAA             12/19/2014                         -88                 -122                475                262                       -256.564              -3037.5

    OK fine, I want to choose DELIVERY_DATE as if so I'll have all the lines, but I want to only show one as shown above

    Because I do report discoverer in Oracle Apps, without taking the DELIVERY_DATE of the select query, it is not possible to move the date as a parameter

    Can you please help me how to do this?

    Thank you

    Post edited by: Rajesh123 NOTE added in the body of the Message

    Post edited by: added test Rajesh123 messages

    Maybe you want a single line in all cases

    Select si.item_no,

    start_date min (d.start_date),

    min (d.end_date) end_date,

    min (si.qty_sum1) qty_sum1,

    min (si.qty_sum2) qty_sum2,

    min (si.item_qty) item_qty,

    min (si.order_qty) order_qty,

    Sum (si.item_amount) item_amount,

    Sum (if. Sales_Amount) sales_amount

    of (start_date select to_date(:date_from,'dd-MON-yyyy'))

    to_date(:date_to,'dd-mon-yyyy') end_date

    of the double

    ) d

    left outer join

    TR sample_items

    on the si.delivery_date between d.start_date and d.end_date

    Group of item_no

    ITEM_NO START_DATE END_DATE QTY_SUM1 QTY_SUM2 ITEM_QTY ORDER_QTY ITEM_AMOUNT SALES_AMOUNT
    - 01/01/1900 31/12/2000 - - - - - -

    Concerning

    Etbin

  • I'm opening table row in a popup with the help of change. If I opened a line to edit, and then if I cancel the popup and if I open some row of the table, then instead of the newly selected line diff, previously selected line becomes open question. Help, p

    @Code is:-

    I have a panelCollection which is having an ADFTable (VO) and < f: toolbar > < coomandToolbarbutton > IE change by clicking on modify the selected line of the tbal adf becomes open in edit mode in a popup. Buttong ActionListner change creation popup

    {} public void handleEdit (ActionEvent actionEvent)
    Add the code in the event here...

    Line selectedRow =
    (Row) ADFUtils.evaluateEL ("#{bindings.") BtEsAwardsSchemeSetupVO1Iterator.currentRow}");
    Line selectedRow =
    (Row) ADFUtils.evaluateEL ("#{bindings.") BtEsAwardsSchemeSetupVO1.currentRow}");

    Tips RichPopup.PopupHints = new RichPopup.PopupHints ();

    this.getAddEditpopup () .show (hints);
    }

    Pupup has two buttons for Submit and cancel.
    Click on Cancel button on the popup, it id hide. The question is, suppose that the table is to have 4 lines so if I first select third row and click on change that becomes open editing on a popUp, but if I click on the Cancel button and their selection a few rows of table (Say first line), the previously selected (3rd row) rank only becomes open again in popup instead of the newly selected row.
    Cacel code

    {} public void handleCancelAwards (ActionEvent actionEvent)

    Add the code in the event here...

    ADFUtils.invokeEL ("#{bindings.") Rollback.Execute}");

    this.getAddEditpopup (.cancel ()); [I also tried with hide and seek but not worked]

    }

    Thanks in advance and thanks for your time

    It may be a problem with the combination of: immediate = true, rollback, and af:popup.

    You can try adding af:resetActionListener to the Cancel button.

    BTW, your managed bean is in the package that start with uppercase ("Bean"). (if you should refactor this to "beans" (for example))

    Dario

  • Link from Oracle to MySQL database select only one line

    Hello

    I created a connection to the batabase Oracle 11.2 to a MySQL database via a database link. The following statement shows that 35 lines are in the mySQL table:

    SQL > select count (*) from 'main_pages"@MOREWEB;

    COUNT (*)

    ----------

    35

    But a normal select statement only return 1 row.

    SQL > select 'subject' of 'main_pages"@MOREWEB;

    Object

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

    Übersicht: references

    I use the mysql-connector-odbc driver - 3.51.30 - winx64. One is the newer version be installed because on Windows Server 2008 R2, I get an error with a missing dll file. The DataDirect ODBC driver is not possible, because we like to use the MySQL-database free one only support for DataDirect enterprise edition.

    I have also tried to limit the HS_OPEN_CURSORS or do not limit the HS_FDS_FETCH_ROWS, but there is no difference in the result. I always get only one line.

    HS Init.ora

    # This is an example of initialization file of the agent that contains the HS settings

    # necessary for the database to ODBC gateway

    #

    # HS init parameters

    #

    HS_FDS_CONNECT_INFO = moreweb

    HS_FDS_TRACE_LEVEL = WE

    HS_FDS_FETCH_ROWS = 1

    #

    # Required for the non-Oracle system environment variables

    #

    #set < varenv > = < value >

    HS trace file

    Oracle Corporation - MITTWOCH 5 November 2014 13:56:22.066

    Heterogeneous Agent release

    11.2.0.1.0

    Oracle Corporation - MITTWOCH 5 November 2014 13:56:22.066

    Version 11.2.0.1.0

    HOSGIP to 'HS_FDS_TRACE_LEVEL' returned 'ON '.

    HOSGIP to 'HS_OPEN_CURSORS' returned '50 '.

    HOSGIP to 'HS_FDS_FETCH_ROWS' returned '1 '.

    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536".

    HOSGIP to 'HS_NLS_NUMERIC_CHARACTER' returned '. "

    HOSGIP to 'HS_KEEP_REMOTE_COLUMN_SIZE' returned 'OFF '.

    HOSGIP for "HS_FDS_DELAYED_OPEN" returns 'TRUE '.

    HOSGIP to 'HS_FDS_WORKAROUNDS' returned '0 '.

    HOSGIP to 'HS_FDS_MBCS_TO_GRAPHIC' returned 'FALSE '.

    HOSGIP to 'HS_FDS_GRAPHIC_TO_MBCS' returned 'FALSE '.

    HOSGIP to 'HS_FDS_RECOVERY_ACCOUNT' returned 'RECOVER '.

    HOSGIP for "HS_FDS_TRANSACTION_LOG" returns "HS_TRANSACTION_LOG".

    HOSGIP to 'HS_FDS_TIMESTAMP_MAPPING' returned 'DATE '.

    HOSGIP to 'HS_FDS_DATE_MAPPING' returned 'DATE '.

    HOSGIP to 'HS_FDS_CHARACTER_SEMANTICS' returned 'FALSE '.

    HOSGIP for "HS_FDS_MAP_NCHAR" returns 'TRUE '.

    HOSGIP to 'HS_FDS_RESULTSET_SUPPORT' returned 'FALSE '.

    HOSGIP to 'HS_FDS_RSET_RETURN_ROWCOUNT' returned 'FALSE '.

    HOSGIP to 'HS_FDS_PROC_IS_FUNC' returned 'FALSE '.

    HOSGIP to 'HS_FDS_REPORT_REAL_AS_DOUBLE' returned 'FALSE '.

    using mpgw as the default value to "HS_FDS_DEFAULT_OWNER".

    HOSGIP to 'HS_SQL_HANDLE_STMT_REUSE' returned 'FALSE '.

    SQL text of hgopars, id = 1, len = 36...

    45 00: 53454 C 43542043 4F554E54 282 HAS 2920 [COUNT (*) SELECT]

    10: 46524F4D 20606D 61 696E5F70 61676573 [FROM ' main_pages]

    20: 60204131 [' A1]

    Delayed open until the first fetch.

    Deferred execution open.

    SQL text of hgopars, id = 1, len = 40...

    45 00: 53454 C 43542041 312E6073 75626 has 65 [SELECT A1.' subje(1)]

    10: 63746020 46524F4D 20606D 61 696E5F70 [ct' FROM ' main_p]

    20: 61676573 60204131 [ages A1]

    Delayed open until the first fetch.

    Deferred execution open.

    Please can someone help me.

    Thank you.

    Bianca

    Bianca,

    Everything I've read on this point to a need to install/reinstall the Microsoft Visual C++ Redistributable Package for windows OS 2008.

    You will need to download the appropriate version for your microsoft form system.  There is a lot of information on this topic.  Just

    search on the web, and it should help you in the right direction.

    Thank you!
    Matt

  • Some columns of the values of the selected line returns NULL in the table of the adf.

    Hello..

    My version of jdev 11.1.1.5.0

    I have a vision with some columns. This view is mapped to a table of adf with some of the displayed columns. My task is to get the column values selected line (including the values of the column not displayed).
    But I'm certain values such as null, although there are values present when I run the query from the view.
    My code:
    DCIteratorBinding tableVO = ADFUtils.findIterator ("myVO");
    ViewObject voTableData = tableVO.getViewObject ();
    Line rowSelected = voTableData.getCurrentRow ();


    + / / codeto display column and the values +.
    int x = 0;
    * for (the names of the objects: rowSelected.getAttributeNames ()) {*}

    * for (int i = x; i < rowSelected.getAttributeValues () .length; i ++) {*}
    * System.out.println (x + "." + name + "=" + rowSelected.getAttribute (i)); *
    break;
    *}*
    x ++ ;
    continue;
    *}*


    MY table:
    * < af:table value = "#{bindings.myVO.collectionModel}" *.
    * var = "row" rows = "#{bindings.myVO.rangeSize}" *.
    * EmptyText = "#{Bindings.myVO.Viewable?" "{'No data to display.': 'Access Denied.'}". *
    * fetchSize = "#{Bindings.myVO.rangeSize}" *.
    * rowBandingInterval = "0."
    * filterModel = "#{Bindings.myVO.queryDescriptor}" *.
    * queryListener = "#{Bindings.myVO.processQuery}" *.
    * filterVisible = "true" varStatus = "vs."
    * selectionListener = "#{myBean.method_onRowSelect}" *.
    * rowSelection = "single" id = "t1" styleClass = "AFStretchWidth."
    "* partialTriggers =": sbcClose: sbcOpen: socWarehouse. "
    * inlineStyle = "height: 217px;" / > *.


    Thank you

    Question: the attributes are not null in the DB?
    The attributes are part of the past of the query select?
    And they are part of the binding of the tree?

    Timo

  • Is there a way to select lines or separate columns in the tables?

    This seems to be something very simple, but does not seem to Indesign (I currently use CS4) to facilitate the selection of rows or columns that are not side by side.

    Usually, something like this is done with a modifier key, for example now control and selecting each desired line/column/cell is selected.

    Even if there is a script or command or something which selects every second row/column, that would be enough.

    Most of these things are too specific to be included as a feature (in fact, I would include alternating fills row/column to this as well), but are easily scriptable.

    This fast javascript seems to do what you want:

    firstRowToChange = 1;
    table = app.selection[0];
    if (table.hasOwnProperty("baseline"))
     table = table.parent;
    if (table instanceof Cell)
     table = table.parent;
    if (table instanceof Column)
     table = table.parent;
    if (table instanceof Row)
     table = table.parent;
    if (table instanceof Table)
    {
     for (a=firstRowToChange; a		   
  • Export only select rows in a table in excel sheet

    Hello


    I have a listener to export a table. Is there a way to export only the selected lines in the table rather than all the lines?

    for the exportCollectionListener the exportedRows the value = "selected".

    
                    
                
    

    check
    http://download.Oracle.com/docs/CD/E12839_01/apirefs.1111/e12419/tagdoc/af_exportCollectionActionListener.html

  • ADF Table - View column value of the selected line, need help

    Hi all

    I am newbee in ADF and needed to get the value of the column in the selected line in ADF inputTest.
    (I tried to navigate link without success)

    Pls tell me is it possible without coding, that is to say using partialTrigger etc.

    Please indicate the steps to follow.


    Thank you
    Amit

    Hello

    I'm not clear on your condition, where is your inputtext, is it inside the table or just outside the table?

    From my understanding, I realized that you have a table and a text entry next to the table where you want to display the value of a particular column of a selected line. That's what you're looking for (in which case above suggested solution works) or something different?

    Jean Lou

Maybe you are looking for

  • Output HDMI 2016 MacBook flicker

    I have two MacBook 2015 and 2016 MacBook, and I bought the original USB - C adapter AV digital Apple Multiport. I loaded the two MacBook with authentic versions of Windows 10 Pro with bootcamp partition split in half between Mac OS and Windows 10. Th

  • How can I get a French for Firefox 7.0

    How can I get a French for Firefox 7.0

  • Cannot configure biometric after re - install system

    I had to reinstall the whole system of the image. All goes well and works fine now BUT... I can not configure the utility of scann of finger with my fingerprints. Whenever I try, I am able to scan and I see that it works. But the tool then ask you to

  • OficeJet 6600

    Jet 6600 Office application opens not the desktop icon. The only way to print is the HP print and Scan Doctor 4.3.  Complete software package does not install correctly

  • Where to download all versions of windows 7

    I wonder if low than any version of Windows 7, as all links available on the internet are redirect to the page not found (404 error) or file not found. Windows 7 Professional x 64 (64-bit) English: http://msft-dnl.digitalrivercontent.net/msvista/pub/