How to access the values in column fron a report (region)

Hello

In the region of report footer section, I want to access the value of a column (e.g. name col = COL01) for first place. I know that I can access total number of rows using #TOTAL_ROWS #. Is it possible to do this?

Thanks in advance,
Paresh

Hello

I did not have a v2 to try this out, but try this:

1. in your report, add the following in the header of the region:

<div id="TheReport">

2 - in the foot of the region:

</div>
<script type="text/javascript">
var t = document.getElementById("TheReport");
var r = t.getElementsByTagName("TABLE")[1];
var rows = r.rows;
var tds = rows[0].cells;
var k;
if (tds)
{
 for (k = 0; k < tds.length; k++)
 {
  if (tds[k].id == 'ENAME')
  {
    alert(rows[1].cells[k].innerHTML);
  }
 }
}
</script>

Remove your old javascript code and replace line alert() with all you need to do with the value of .cells [k] .innerHTML lines [1].

This includes in your report in a div tag The JavaScript find it and gets the second table (the table report is a table of the area which is now within the DIV tag). As older versions of the Summit has not used the attribute "headers" on cells, we check the ID values for the column headings in row [0] - once we found the right column, we retrieve the corresponding value according to the data in row of lines [1].

Andy

Tags: Database

Similar Questions

  • How to access the value of the point of application in javascript

    How to access the value of the point of application in javascript?

    Hello

    A way

    var myVariable = '&MY_APP_ITEM.';
    

    BR, Jari

  • Multiple column trees: how to access the data in columns? There is a bug?

    Hello

    I have a strange problem. I use tree column multi like this:

    In this case, I have the tree column and two other custom columns.

    Now, how to access the data in the SECOND column?

    We can write all the data in a row thanks the EditElementTree:AddElement:ChildText, because it is an array of strings.

    However, when I want to read the data, I use ActiveCelltring, meaning that a SINGLE string and not a string table oO (so I only have the value of the first column and never others.

    So, I can do what I want? Is this a bug?

    Thank you very much

    R0b1n

    OK, I have the solution.

    We play with the ActiveColumnNumber attribute, to read the values of different...

    I left the message, it may be useful for later someboby

    R0b1n

  • How to access the values of the object View Other or objects entities

    HelloW.
    I need help, I have the validation of the IUCN IUCN impl methods, I need to access the values of other objects in view o entities to validate.
    How do I?
    Help, please

    Go you to other entities via binding accessors when entities you will access are related by an association. Otherwise to access other objects in the view definition of your needs through accessors from view in the connected user reviews section.

    http://download.Oracle.com/docs/CD/E17904_01/Web.1111/b31974/bcentities.htm#insertedID12

  • How to access the value of a group of radio in javascript

    Definition of radio as a group below:
    STATIC2:mango; 1: 5; 3, grapes, Apple; 4, pineapple; 2, orange

    We need to access the value of a group of radio in javascript. Please let us know how to reach?

    Hello

    You can use the API javascript Apex as $v

    var l_my_value = $v('Px_MY_RADIO');
    

    http://download.Oracle.com/docs/CD/E14373_01/apirefs.32/e13369/javascript_api.htm#CHDEJEIG

    BR, Jari

  • How to access the values of the properties file

    Hello

    I use Jdeveloper 11.1.2.2

    I need to get some of the values of the properties file to use in a java class.

    How can I access the .properties file and the values in them.

    Thank you
    Nigel.

    Nigel,
    If you are using FileReader, you must specify the actual path where the file is located. In your sample, the file must be in "/ foundation/model/am/view/Test.propeties". I guess that you don't have this access path on your system as it look like the path to your source folder.

    I use the ResourceAsStream like this:
    Create a file de.hahn.testproxy.backingbeans.test.properties with the following content:

    Test=hallo
    Test2=world
    

    the path is relative my source in the test project path.

    Then, I implemented a listener like:

        private static ADFLogger _logger =
            ADFLogger.createADFLogger(XxyyzzBean.class);
        public void propertiesTestListner(ActionEvent actionEvent) {
            // instead of using the de.hahn.testproxy.backingbeans.test.properties you have to use de/hahn/testproxy/backingbeans/test.properties
            InputStream asStream =
                this.getClass().getClassLoader().getResourceAsStream("de/hahn/testproxy/backingbeans/test.properties");
            if (asStream == null) {
                // file not found
                _logger.info("file not found");
                return;
            }
            Properties p = new Properties();
            try {
                p.load(asStream);
            } catch (IOException e) {
                e.printStackTrace();
            }
            if (!p.isEmpty()) {
                _logger.info("Properties: " + p.toString());
            }
        }
    

    and get the result if I bind the listener to a button in the user interface:

    Properties: {Test = hallo, Test2 = world}

    And make sure that the Test.properties file is copied to the output directory.

    Timo

  • How to extract the values of column aliases based on different column values?

    Hello gurus,

    I have a table with the following struture-
    "drop table T;
    create table T(Name, Symbol, Amount,dep) as select
    'Anderia', 'AA', 1050000,'HR' from dual union all select
    'Michael', 'ML',150000,'Sales' from DUAL union all select
    'Bill', 'BL', 1050000,'Finance' from dual union all select
    'Nancy', 'NY', 4000,'HR' from DUAL union all select
    'Anderia', 'AA',3000,'HR' from dual union all select
    'Michael', 'ML',1050000,'Sales' from DUAL union all select
    'Bill', 'BL', 1200000,'Finance' from DUAL union all select
    'Anderia', 'AA', 1200000,'HR' from DUAL union all select
    'Vish', 'VH', 1200000,'Marketing' from DUAL;"
    And try to find the values of the column as
    Name, symbol, dep, amount, % Total, Total $Cumm, rank but some additional as-columns

    Amount HR, % HRTotal, $HR Cumm Total,
    Finance amount, FinanceTotal %, $Finance Cumm Total
    Sales amount, a percentage of Total sales, $Sales Cumm Total.
    Amount marketing, MarketingTotal %, $Marketing Cumm Total

    then I use the following query to retrieve the name, the symbol, the dep, amount, % Total, Total $Cumm, rank columns.
    select name
         , decode(grouping(symbol), 0, symbol, 'Total') symbol
         , dep
         , sum(amount) amount
         , sum(per_total) "% Total"
         , decode(grouping(symbol), 0, max(Cum_per_total), null) "% Cumm Total"
         , decode(grouping(symbol), 0, max(rank), null) rank
      from (
              select name
                   , symbol
                , dep
                   , amount
                   , per_total 
                   , sum(per_total) over(order by rk) cum_per_total
                   , rank
                   , rk
                from (     
                        select name
                             , symbol
                    , dep
                             , sum(amount) amount
                             , round((sum(amount)/max(total_amount)) * 100,2) per_total
                             , dense_rank () over (order by sum(amount) desc) as rank
                             , row_number() over(order by sum(amount) desc) as rk
                          from (
                                 select name
                                      , symbol
                                      , amount
                          , dep
                                      , sum(amount) over() total_amount 
                                      , sum(amount) over () 
                                   from t
                               )
                         group 
                            by name, symbol, dep
                    )
            )
      group         
         by grouping sets((name, symbol, dep), ())
      order by rank, max(rk) nulls last
    But I want to extract the following columns so... How can I do?

    Amount HR, % HRTotal, $HR Cumm Total,
    Finance amount, FinanceTotal %, $Finance Cumm Total
    Sales amount, a percentage of Total sales, $Sales Cumm Total.
    Amount marketing, MarketingTotal %, $Marketing Cumm Total


    as I want that all records, then will the dep..do-specific I need to use the case here?
    Thanks for all your time and effort in advance

    If I understand your needs, you need pivot: SQL and PL/SQL FAQ

  • How to access the value of the 'createTime', or any other property root?

    I would like to focus on the value of the property Root 'createTime' in a custom property so that when I load and edit the file, I can still see when the original file was created. I'm sure there is a simple solution, but I can't make it work.

    My code of the use is so far along the lines of:

    Test_Date var: Test_Date =?  (In other posts I've seen code ith "RootElements ("createTime")" and a mention of "Value.VariantDate", but I don't know how to operate).

    Call Root.Properties.Add ("Test_Date", Test_Date)

    Thanks for any help.

    Kevin


  • How to access the value of form element in Database Trigger

    Hello
    Is it possible to access value of form element in triggering the database?
    I have the form that at the table base another element called P14_Insert_to_waiting_list, I want to check the value of this question in the trigger Before Insert deletion of update of TABLE1 and take measures to insert, update, delete record in TABLE2.

    Thanks in advance
    Aali

    Hello

    You can do it with the v function.

    v('P14_Insert_to_waiting_list')
    

    I think the name of the element is case sensitive, in order to verify that

    Edit
    You can also use APEX_UTIL. GET_SESSION_STATE
    http://download.Oracle.com/docs/CD/E14373_01/apirefs.32/e13369/apex_util.htm#CHDEJEJE
    V is just smaller

    You can also use the shortcut function V, instead of APEX_UTIL. GET_SESSION_STATE.

    BR, Jari

    Published by: jarola on October 27, 2009 11:03

  • How to access the value of component

    Hi I wan to show/hide a panelBox according to the value in a box (a database in a table field).
    I want to render... or something like that to #{expression that gets the current value of the line of the field chechbox}
    It was simply: BLOCDONNEES. On the GROUND... but here I am naïve how to get

    Thank you kquizak

    Hello

    in forms, it gave you the current data of the selected line. Do the same thing in ADF (always keep in mind that it is a web application and either a thick client)

    -Assuming you're on JDeveloper 10.1.3 (because you do not explicitly), set to the tableSingleSelect component autosubmit = true
    -on the table, define a ValueChange listener that you create in a managed bean. Ideally this managed bean has the pair Set/getter accessor that
    is used by the panelBox
    -define a PartialTrigger on the panelBox to reference the id of the table
    -In the valueChange relaxation, retrieve the data of table cell you want to use for the evaluation

        public void onRowChange(SelectionEvent selectionEvent) {
    
           // keep the default functionality
           FacesContext fctx = FacesContext.getCurrentInstance();
           MethodBinding mb = fctx.getApplication().createMethodBinding("#{bindings.DepartmentsView1.collectionModel.makeCurrent}",new Class[]{SelectionEvent.class});
           mb.invoke(fctx,new Object[]{selectionEvent});   
    
           //add your functionality
    
            JUCtrlValueBindingRef wrappedRowData = (JUCtrlValueBindingRef)((CoreTable)selectionEvent.getComponent()).getSelectedRowData();
            Row rw = wrappedRowData.getRow();
    
            ... = rw.getAttribute("name_of_attribute");
    
            //set the variable to the cell value
            ...
    
        }
    

    -set the managed bean variable that is referenced by the panelBox to true/false

    Frank

    PS. : JDeveloper 11 is almost similar: there is no such thing as the tableSelectOne component and the EL changed ;-)

  • How to upgrade the value of line in a report by using the line selector (check box)

    Hello

    I have a requirement where I need to make PLSQL update process on a specific line in my report.
    Based on the line selector (marked) the plsql process update on the values of the selected line.

    I have to update status of the employee selected as 3.
    But regardless of the choice of line selector, juice processing SRM application in a sequence that is., this is row selected, application takes the first line and updates the status.

    My update process from looks like this:

    BEGIN

    BECAUSE me in 1... apex_application.g_f01. COUNTY - checkbox
    LOOP
    If apex_application.g_f01 (i) only IS NOT NULL then - box marked
    insert into values TEMP_T (apex_application.g_f03 (i), V ('APP_USER')); -f03:Deptno
    update status set Table_x = 3 where deptno in (select deptno from TEMP_T where rtrim (lower (apex_user)) = rtrim (lower (V ('APP_USER')));
    delete from TEMP_T where rtrim (lower (apex_user)) = rtrim (lower (V ('APP_USER')));
    end if;
    END LOOP;
    END;

    Once the user selects the line selector, application needs to update the status of this particular emp 3 in Table_X.
    Currently, if I select a line, using the line selection box, my update process changes the status of the first record line. If I select three rows, then my first three rows updated.
    So I have to update the particular line or selected using the selector (checkbox) row lines

    If you could help me solve this question would be really appreciated.

    Thank you
    Vijay

    This example shows how to use checkboxes in tabular form:

    http://HTMLDB.Oracle.com/pls/OTN/f?p=31517:95

    Denes Kubicek
    ------------------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    ------------------------------------------------------------------------------

  • How to get the value of column d/e with combinations of 3 columns?

    Hi all

    create the table dup_tab

    as

    Select 'AB100' donnees_1, data_2 ' 100 ', 'NN' data_3 data_4 ' 12345' double

    Union of all the

    Select 'AB100' donnees_1, data_2 ' 100 ', 'NN' data_3 data_4 ' 12346' double

    Union of all the

    Select 'AB100' donnees_1, data_2 ' 100 ', 'NN' data_3 data_4 ' 12347' double

    Union of all the

    Select 'AB200' donnees_1, data_2 ' 200 ', 'BB' data_3 data_4 ' 11111' double

    Union of all the

    Select donnees_1 'AB101', '101' data_2, data_3 'NB', '1234' double data_4

    Union of all the

    Select '1235' data_4, data_3 'NB', data_2 '101', 'AB101' donnees_1 double;

    I suspect the data as below, donnees_1,data_2,data_3 (a values) but d/f data_4 , I need to get these lines only please help me how to write a query on this

    DONNEES_1DATA_2DATA_3DATA_4
    AB100100NN12345
    AB100100NN12346
    AB100100NN12347
    AB200200BB11111
    AB101101NB.1234
    AB101101NB.1235

    In my table, I have to find with data of above combinations

    Given expected o/p

    DONNEES_1DATA_2DATA_3DATA_4
    AB100100NN12345
    AB100100NN12346
    AB100100NN12347

    Thank you

    Post edited by: Rajesh123 added extra test cases

    Hello

    Well, looking at the labels that you created for your question you have "Duplicate record".

    ...

    I suspect the data as below, donnees_1, data_2, data_3 (has the same values), but d/f data_4 , I need to get these lines only please help me how to write a query on this

    DONNEES_1 DATA_2 DATA_3 DATA_4
    AB100 100 NN 12345
    AB100 100 NN 12.4 K
    AB100 100 NN 12347
    AB200 200 BB 11111
    AB101 101 NB. 1234
    AB101 101 NB. 1235

    If you want to show the duplicated records, try the following:

    WITH t AS
      ( SELECT 'AB100' data_1, '100' data_2, 'NN' data_3 ,'12345' data_4 FROM dual
      UNION ALL
      SELECT 'AB100' data_1, '100' data_2, 'NN' data_3 ,'12346' data_4 FROM dual
      UNION ALL
      SELECT 'AB100' data_1, '100' data_2, 'NN' data_3 ,'12347' data_4 FROM dual
      UNION ALL
      SELECT 'AB200' data_1, '200' data_2, 'BB' data_3 ,'11111' data_4 FROM dual
      UNION ALL
      SELECT 'AB101' data_1, '101' data_2, 'NB' data_3 ,'1234' data_4 FROM dual
      UNION ALL
      SELECT 'AB101' data_1, '101' data_2, 'NB' data_3 ,'1235' data_4 FROM dual
      )
    SELECT *
    FROM
      (SELECT data_1,
        data_2,
        data_3,
        COUNT(*) over (partition BY data_1,data_2,data_3) cnt
      FROM t
      )
    WHERE cnt > 1
    
  • How to remove the names of columns in SQL-report

    What I want is only data, without no column name.

    COLUMN LDATE
    SELECT SYSDATE LDATE
    FROM DUAL;

    LDATE
    --------
    07.11.11

    This example does not work. There are still LDATE above column. Any idea?

    It's all in the SQL * more manual...

    SQL> set heading off
    SQL> select * from emp;
    
          7369 SMITH      CLERK           7902 17-DEC-1980 00:00:00        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-1981 00:00:00       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-1981 00:00:00       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-1981 00:00:00       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-1981 00:00:00       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-1981 00:00:00       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-1981 00:00:00       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-1987 00:00:00       3000                    20
          7839 KING       PRESIDENT            17-NOV-1981 00:00:00       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-1981 00:00:00       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-1987 00:00:00       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-1981 00:00:00        950                    30
          7902 FORD       ANALYST         7566 03-DEC-1981 00:00:00       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-1982 00:00:00       1300                    10
    
    14 rows selected.
    
  • How to get the value of the user interface component in managed Bean

    Hi people,

    How to access the value of a component managed bean?
    <af:inputText value="#{bindings.Name.inputValue}"
                            label="#{bindings..Name.hints.label}"
                            required="#{bindings..Name.hints.mandatory}"
                            columns="#{bindings.Name.hints.displayWidth}"
                            maximumLength="#{bindings..Name.hints.precision}"
                            shortDesc="#{bindings.Name.hints.tooltip}"
                            id="Name"
                            partialTriggers="Type">
                <f:validator binding="#{bindings.Name.validator}"/>
              </af:inputText>
    I want the input value of the component name.

    thnks

    You can use this in your managed bean

    ...
    // get the binding container
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    
    // get an ADF attributevalue from the ADF page definitions
    AttributeBinding attr = (AttributeBinding)bindings.getControlBinding("Name");
    String val = attr.getInputValue();
    
    ...
    

    Timo

  • Could not access the value of the component off ValueChangeListener

    In many cases, I need to use the value of some UIComponent during execution in many places in the application. But the problem is that I could not access the value of the component outside the ValueChangeListener of this component. I tried to store this value in a temporary local variable, I also tried to use the opportunity to link , but it did not work.

    This thread changes made on the ValueChangeListener can't think where else

    said I should go ahead everything in the ValueChangeListener but is not useful in my case and it's really limit my choice later.

    So question is: How to access the value of the element external ValueChangeListener?

    I use Jdeveloper with ADF 11.1.2.3 technology

    Hello

    You can create a bean (depending on the application, choose the scope), add a variable with accessors and then use it in the 'value' property of the component.

    Arun-

Maybe you are looking for

  • Clipboard.AutoCopy = false in topic: config,-no effect. selection of text always copy to the Clipboard

    I have a custom firefox extension that captures data on the Clipboard, as well as a selected text in the document in firefox. It is, whenever I select the text, it replaces the data in the Clipboard with the data of selected text. The Clipboard is al

  • Re: Satellite C660-2R3 CPU limitation to 978 Mhz?

    Hi all 5 days ago, I bought a Toshiba Satellite C660 2R3. The laptop has core i5 2.4 GHz and 6 GB of DDR3 memory.However, I am very disappointed by its performance. I run CPU ID/CPU-Z and it turns out that the laptop is limitation up to 978 MHz Core

  • HP 6300 Pro SFF stops unexpectedly

    I have a question involving a HP 6300 Pro SFF that has been repeatedly and intermittently closing, although several major components were replaced and the PC has been reimagee.  I wonder what I missed and am looking for advice on what to try next.  T

  • Load pull to the output corresponding to network design

    Hello I tried to design the entrance and exit of the matching networks for a power amplifier using the traction load script and the elements of HBTUNER2. According to the contours of traction load, the optimal point impedance is 15.37 - j21.99 (I cho

  • HP laptop - 15-ac091tu: software and driver Page

    Dear hp, After buying my new lappy I visit the official website of hp, but I can't find any product image or my material relating to software Web site. I am very wrroried on this subject, if I need this driver then where in passing these. my laptop h