Display data in tabular form

Hi,
i want to display data from data base in a tabular form, that is dynamic (the rows in UI is based on no.of records in data base) and one of data item is hyper link like
sno sname class
here sname is hyper link.
Thanx for ur help

Hi..
Actually I dont get you clearly..
I can give you some answer based on my understanding of your question..
When you get the data from the database you can convert the each row of data into DTO's.. Finally you can get list of DTO's.
Then in the JSF page you can use <h:dataTable> tag to render the table format of the DTO info..
If I didnt clear your doubt, please explain your question clearly..
Regards,
Joe

Similar Messages

  • Want to display data in receipt form in Smartforms

    Hi friends,
        I want to display data in receipt form in smartforms....Format is given below:
        Name : [fieldname1]
      number : [fieldname2]        country code : [fieldname3]
    n so on....It should display 1 record on one page and so on.......how can i go about it....
    Regards,
    Vijaya

    Hi Vijaya,
    First, you need to design the lay-out for your pages.
    Say for example in your case you take a window XYZ (variable type) to print:-
    Name : fieldname1
    number : fieldname2 country code : fieldname3
    Now you have some amount of data for this detail.
    Say you print this data in a table.
    After the last node for printing data, insert a command line under the last node (in main area of the table control).
    And on the next page use the same MAIN window (or use next page of PAGE1 as PAGE1).
    In other way, if you are printing a single record on a page.
    Then this can be done by simply taking a loop statement in the main window of the page followed by text-fields (from internal_table into work_area).
    Under the loop statement, in these text-fields you can simply print your data (using the work area) :-
    Detail 1 : &wa-field_name&
    and so on....
    After the last detail (node), insert a command line and write 'NEW-PAGE'.
    This will break your control on to next page and eventually one records will be printed on a single page.
    Hope this solves your problem.
    Thanks & Regards.
    Tarun Gambhir.

  • Conditional display in a tabular form

    Hello,
    I've a tabular form with fields Cert Id, Cert Name, Cert Total & Comments. In this only 'Comments' is editable and all others are display only items. This form has 50 rows
    In this 'Cert Total', should either be a link or a normal text based on some conditions (Say, 'Cert Id' in (3,6,9) ).
    For 'Cert ID' 3,6 & 9, 'Cert Total' will be a link and for others it will not be.
    Similarly, 'Comments' should either be read-only or editable based on some conditions (Say, 'Cert Id' in (3,6,9) ).
    For, 'Cert Id' 3,6 & 9, 'Comments' will be editable and for other rows it will not be.
    When i include conditions for 'Read-Only', it gets applied to all rows and not really conditional. How to resolve this issue?.
    Thanks and Regards,
    Siva

    You could try to do it using javascript. It's a dirty approach, but worth a shot.
    Use Firebug to determine the IDs of Cert Id and Comments. Then loop through the tabular form, check the values of Cert Id in each row, and based on that, change the attribute of Comments, from read only to editable, and vice versa.
    For instance, lets say the ID of Cert Id is f03_x, and ID of Comments is f04_x.
    You need to do something like this:
    var tab = document.getElementsByName('f03');
    for (var i = 0; i < tab.length; i++) {
      var vRow = tab[i].id.substring(4, 8);
      var CertId=$('#f03_'+vRow).val();
      if (CertId=="3"){
      $('#f04_' + vRow).attr( 'disabled',false);
      else{
      $('#f04_' + vRow).attr( 'disabled',true);
    Hope this helps,
    Ana

  • Display data in the form of subgrouping  of a table.

    hi,
        i need to display data in the table in the below format
    1  1000  header1  quantity  amount
                   item1      100           200
                                  50             500
    2  1001  header2   chairs      5000
                   item2         50            100
                                   100           1000
    plz help me how to do this

    Hi Praveen,
    Please check 'Grouping' view in component WDR_TEST_TABLE .
    It will give you some idea.
    Regards,
    Sumit

  • I want to display data from 1st form to 2nd form...

    Hi
    I'm having 2 Forms.In the 1st form i'm having Master & Detail Blocks.
    By clicking button i'm trying to call another form.
    In that form i what to see the Master Block Data should be displayed on the form.
    So wht is the type of Canvas can i use or is there any other alternative way for this issue.
    Try to help me in this
    Regards
    Siva

    Go through this
    1 form data display 2 form

  • To display data in smart form

    hi experts ,
    I want to know how to display the data from a database table into a smart form .
    thanks in advance .

    Hi,
    Have a lok at the below link, you will get all the details about the smart forms
    http://sap.ionelburlacu.ro/sap0/sapsf001.htm
    http://www.erpgenie.com/abap/smartforms.htm
    http://www.erpgenie.com/abap/smartforms_detail.htm
    Regards
    Sudheer

  • Displaying Data in a Form field

    Hi,
    We have a requirement, where we have to display the value in one of the field as "Header_number.Line_number" where as the backend value will have only the Line_number. We have Header_number in a Materialized View. I am going to fetch line_number into an existing datablock and is based on a VIEW.
    Could anyone help me, how to do this, i'm working on forms 10g, and i'm a fresher in forms. Please suggest me, how we will achieve.
    Thanks in advance,
    Pavan Kumar

    Do you have datablock in your form that is based on the Materialize View (Header)? If so, this will save you a trip to the database to fetch the Header_Number. You simply need to add code to display the Header_Number and Line_Number in a non-base table item. I will guess that as you want this combined number to change as your users change Line records. That being the case, I would add a When-New-Record-Instance (WNRI) trigger on the LINE block to concatenate the two numbers in to a non-base table item. For example, create a Control Block and add a Character Item called disp_header_line and try the following:
    /* Sample WNRI trigger */
    /* This sample code assumes you have a block named HEADER and LINE. */
    /* Make sure you change the block names to match your form. */
    BEGIN
       :CONTROL.disp_header_line := :HEADER.Header_number||'.'||:LINE.Line_Number;
    END;Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Displaying all the records in a tabular form on a single page

    Hello,
    After setting up a data entry page, I have hit an unexpected problem.
    The logic in my page requires that all the records in my tabular form should be displayed .
    The tabular form is based on a collection, and the user selects rows through a checkbox.
    Any reload of the page due to pagination will break the logic, as some calculation and display events occur during page load,
    based on the previous page.
    I need to display about 25 rows.
    I have changed the report attribute to display 50 rows, but it displays rows only up to the bottom of the screen,
    i.e. 11 rows.
    Unfortunately I only just added some new rows and saw this behaviour else I would not have gone that way,
    as I expected APEX to display all rows if required.
    Some help will be much appreciated.
    Regards
    Leckraj

    leckj wrote:
    Hello,
    After setting up a data entry page, I have hit an unexpected problem.
    The logic in my page requires that all the records in my tabular form should be displayed .
    The tabular form is based on a collection, and the user selects rows through a checkbox.
    Any reload of the page due to pagination will break the logic, as some calculation and display events occur during page load,
    based on the previous page.
    I need to display about 25 rows.
    I have changed the report attribute to display 50 rows, but it displays rows only up to the bottom of the screen,
    i.e. 11 rows.
    Unfortunately I only just added some new rows and saw this behaviour else I would not have gone that way,
    as I expected APEX to display all rows if required.Pagination settings are cached for the duration of the session. For this change to be instantly visible, either log out, restart the brower, and log in again, or manually re-request the page from the browser address bar, adding 'RP' in the ClearCache position in the URL.

  • LifeCycle Form Server :- My form is rendering as pdf in the browser  without displaying data sometim

    LifeCycle Form Server :- My form is rendering as pdf in the browser without displaying data sometimes within data fields, and at other times it will display data. The form consistently displays data when rendered in HTML.
    We display the forms in a browser either HTML or PDF format based on the user selection. But the behavior of PDF format is not consistent. Sometimes it renders properly and sometimes the form renders without data.
    Dose any one experienced this issue?
    Any help would be greatly appreciated.
    Thanks in advance,
    RK

    I have been seeing the same issue, but haven't been able to find a fix for it yet. So any info would be appreciated here too.
    Thanks

  • Problems Displaying data from RFC on Adobe Forms

    Hi,
    I have some Problems with creating an Adobe Form and hope, someone can help me or give me some hinds to some tutorials, which can help me.
    I'm developing an webdynpro-application which get data from a R/3 via RFC-Call.
    Context-Binding and so on is done and works. I created also an interactive form and can display some datas on it.
    Here my questions:
    I have an field 'unit' which shoulb be displayed on several positions onto the form. My problem is, i can display it only once. If i copy the field, there is no output in it. What can i do, to solve the problem?
    From the RFC i get a table with several rows of data, i want to display on the form.
    With drag&drop i can place the fields onto the form but they are displayed only once. I want one line for every row from the table.
    What do i have to do? Are there tutorials which show the steps?
    When I am not using a form, i can display the data from RFC in a table with no problems (i create a table ui and choose create binding from context menue). Are the nescessary steps for displaying the data on an interactive form the same.
    I read something about creating a dynamic form design. Do i have to create it? What are the steps i have to do.
    Many questions, but i hope that someone can give me some helpful hints.
    Many thanks
    Mathias Lange

    Hi Mathias,
    If I caught you correctly, you want to display data in Adobe forms in form of tabel, right?
    So, follow the steps:
    1. Insert one sub form on your adobe form.
    2. Set its type as "flow content" in object->subform property.
    3. Set flow direction as "Table".
    4. Insert another subform inside this subform.
    5. set its type as "flow content" and flow direction as "Table row".
    6. Now, choose binding tab, and there check "repeat subform for each Data item check box" and specify min. count for your rows.
    7. Now, insert your column fields inside this sub form once.
    8. Format its look and feel as you want.
    When you run this application, it will show you multiple data as table on Adobe form.
    Regards,
    Bhavik

  • Tabular form condition type value of item / column in expression 1

    Hi
    Question 1
    I was wondering if anyone can help with the necessary syntax so that I can set a Condition Type for a column in a Tabular Form.
    What I'm trying to do is show or hide a column based on the contents of another column in the same row for instance show column DETAIL or DETAIL_READ_ONLY if column READ_ONLY is set to 'Y'
    Value of item / column in expression 1 = #READ_ONLY# or READ_ONLY (alas neither works)
    Expression 2 = Y
    I can set all the DETAIL or DETAIL_READ_ONLY columns to either hide or show at the same time by
    Value of item / column in expression 1 = P100_READ_ONLY (works well but lacks granularity)
    Expression 2 = Y
    Question 2
    Are Tabular Forms such that all fuctionality has to be global, what effects one column must be the same for all
    I know that Oracle prefers that developers don't use tabular forms but they are usefull for data visability when setting up related data in the same table.
    e.g. surveys, questionnaires etc apps the web was made for
    Thanks
    Derek

    Hi Sandro
    Thanks for replying
    The problem I have is Tabular Forms
    Detail Text Detail Read Only Read only
    Event 1a Event 1b Y
    Event 2a Event 2b N
    Event 3a Event 3b Y
    What I want it to look like is
    Detail Text Detail Read Only Read only
    ___________Event 1b__________ Y
    Event 2a_____________________ N
    ___________Event 3b__________ Y
    This would mean that the Text Field containing Event 2 could be updated but the Display Only fields containing Event 1 and Event 3 cannot be changed.
    The trick is to be able to mix and match data types for the same data because Tabular Forms columns don't have a conditional read only choice.
    Sorry about the rudimentary diagram, but its the old 80 / 20 rule =>20 percent functional
    Edited by: derekf on 4/02/2013 17:50

  • Display Data

    hi every body,
    i want to display data inside my forms when the form open direct, no need to prss Excute query, How ?????
    thanks.....

    When dealing with forms a lot of what your do is writing PL/SQl-code, enhanced with the forms-builtin-functions. So you should make yourself familiar with the concepts of PL/SQL in general and forms buit-in's.
    Write your code in the WHEN-NEW-FORMS-INSTANCE-trigger as already suggested. And whenever you get an error, provide the full information of the error.

  • Tabular Form Not Updating

    I have an existing tabular form that has been working fine. I created a new column for and "edit" button to allow a user to edit an entry that is listed in a tabular form row. I did this so I could validate a delete action after I read that validate from a tabular form is not too reliable. I noticed after I created the edit button (which is a link to another page) that the "ApplyMRU" process isn't working. I press the "Add Row" button which gives me a new row to work with. I then press the "Submit" button. The page is submitted but when it is rendered the tabular form region is empty. I query the table but the row that I tried to insert is not there. When I created the "Edit" button (link) as a new column in the tabular for could I have broken something in the tabular form process(es)?

    You are saying that you created a new colum as well. What kind of display does this Tabular Form Element has? What content are Reference Table Owner, Reference Table Name and Reference Column Name showing?
    Denes Kubicek

  • Unable to delete row(s) from tabular form

    Hi!
    I created report with row selector, when I select one row I get tabular form regarding to the selected row from report. I can insert and update data from tabular form, but I have problem with deleting them. Error I get is ORA-01403: no data found (Row 207589)My tabular form is created by wizard and primary key is managed by database rowid, I use apex 4.1 an 10g database.
    Do you know for any solution for my problem?
    Regards,
    drama9346
    Add:
    For creating report and tabular form I use code and suggestion from this thread: {thread:id=2490862}
    Edited by: drama9346 on 28.1.2013 1:51

    Hi,
    I tried everything I know and I didn't solve my problem.
    Can anyone give me some clue?
    Regards,
    drama9346
    Add:
    I solve my problem.
    Edited by: drama9346 on 29.1.2013 1:52

  • How to display  dates dynamically in tabular form title

    Hi,
    I have a requirement of displaying dates of the week as title of each column heading in the tabular form dynamically (or) Is there a way to display the dates for each week as the titles for each column dynamically?Could anyone suggest me on this requirement?
    Thanks & Regards,
    Balaji.P.K.

    Hi Balaji,
    if you want to be very generic than create a report based on a "PL/SQL Function returning SQL Query" and set the Report Column Headers to "PL/SQL" and specifiy a function returning the Header Titles.
    brgds,
    Peter
    get Syntax Highlighting for the Application Builder: http://apex.oracle.com/pls/apex/f?p=APEX_DEVELOPER_ADDON:ABOUT:0:::::
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at and http://www.wirsindapex.at

Maybe you are looking for

  • How to take data from HTML Template into BSP Variable?

    hi all,             can we take the data from the input field of HTML Template and collect into BSP variable? i have the shown the HTML Template into BSP page by passing the url in <IFRAME> tag now i have to take the data form the into field of HTML

  • Downloading songs from iPhone 4 to second PC

    So a virus killed my computer and everything's gone. Only some of it was backed up - my huge bad. I've downloaded a number of songs from iTunes directly to my iPhone 4 and then downloaded those songs onto the computer that is now dead. My iTunes was

  • Artist name does not appear in artist list but album name is in album list - Ipod Classic 160gb

    For an album I have imported onto my iPod from iTunes, the album name is in the Album list but the Artist name is not on the Artist list.  I have tried deleting the album from the iPod and re-adding from ITunes but the same result.  It is a single ar

  • Hi i need the explanation for the code below.

    public class RMIClient_CipherKey public RMIClient_CipherKey() public boolean changeKey(String s) int ai[] = new int[s.length()]; for(int i = 0; i < ai.length; i++) switch(s.charAt(i)) case 65: // 'A' ai[i] = 1; break; case 66: // 'B' ai[i] = 2; break

  • Best way to handle tcMultipleMatchFoundException

    Can any one tell me what is the best way to handle tcMultipleMatchFoundException during Reconciliaiton. One way which i know is to manually correct the data. Apart form is there any way..? Thanks, Venkatesh.