Forms Developer 10 Nested Tables

I have table for customers with a nested table for addresses. I want to use a form to show the details of both the table and the nested table. Any ideas? Thanks,

<p>See particularly the section 2.3.3</p>
Francois

Similar Messages

  • How to use nested tables in adobe form

    Hi All,
    I have to use nested tables in adobe form for table display. I have used Subforms for displaying table data. I have changed accessibility of the subforms. Currently i am able to print print the table correctly if there is single material record in table 1 and single corresponding record in table 2. But the requirement is that i will have multiple lines in table 1 for single material and only one record in table 2.
    EX: form is for Sales order. in line items if the order is for 100 units then we if we have delivered material as 80, 10, 10, then table 1 will have 3 lines for this. Table 2 will always have only 1 corresponding record.
    item--materialdescription-ordered qty--delivered qty--delivery date-price  
    xxx--xxxxxxx-xxxxxxxxx-10080xxxxxxxxxx-xxxx
    10----
    xxxxxxxxxx
    10----
    xxxxxxxxxx
    yyyyyyyyyyyyyyyyyyy------yyyyyyyyyyyyyyyyyyyyy 
    xxxxxx is table 1 and will have multiple lines
    yyyyyy is table 2 and will have only 1 entry for item xxx
    and this group will be repeate as per no of items. table 1 can have any no of lines per item.
    I am currently able to display 1 line for table 1 and 1 line for table 2.
    But how to show multiple lines for table 1 and 1 line for table 2.

    HI,
          Set the body page as flowed and set the tables also flowed.
    go to bodypage>object->subform-->select flowed option.
    I thihnk this will work..if u are getting all the records properly into the tables 1 and 2.
    Thanks,
    Mahdukar

  • Nested Table: How to display formatted text in the form ?

    Hi,
    Scenario:
    I have a nested table, say TAB1, containing another table TAB2 which holds the formatted text.
    Sample data
    Entries in TAB1:
    Column1       Column2(TAB2)
    Text1         Data_from_tab2
    Text2         Data_from_tab2
    Text3         Data_from_tab2
    Requirement:
    The requirement is to display the data in TAB1 as it is maintained.
    Trials:
    I am aware of the fact that we can transfer the content of the nested table (in this scenario, TAB2) in another table(of type TLINE) defined as a global variable in the interface of the form. Then in the context area, we can define a 'TEXT' node and bind it to the table and choose the 'Dynamic text' for the 'text type' attribute and maintain the other atrributes.
    But this approach cannot solve the issue as it is a nested table.
    Kindly suggest how can I resolve this issue.
    Regards
    s@k

    Hi,
    if its like colum1, column2 (tab2).
    you can represent column2 as a nested table in the form. and put these tables structure intoa subform of type flowed.
    then you can have the required format.
    the same can also be acheived using nested subforms instead of tables.
    example of such scenario is PO & line items.
    po number1 , items 1
                          item 2
                          item 3
    po number2 , items 1
                          item 2
                          item 3
    hope this helps you.
    Cheers,
    Sai

  • Nested Tables, Forms and Portal

    I am trying to implement a form in Portal that accesses a nested table. I can access normal tables but not my nested table. The nested table within the master table are object tables.
    When trying to access from the designer page I get an error indicating that table does not exist even though it was displayed in the pick list.
    Has anyone had success with this and can it be done.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by chetan.kashyap ([email protected]):
    Actually nested tables are not supported by portal till now.<HR></BLOCKQUOTE>
    Chetan, can you be a bit more specific. What do you mea by 'till now'. Does this mean the next release can do it, or the current release shipped with Oracle 9i Application Server 1.0.2.0.0 for linux that I received.

  • Apex, Tabular forms and Nested Tables := Headache

    Hi All,
    I'm constructing an Apex aplication for Performance Reviewing staff and I have need of nested tables within each line item for ongoing comments during the year, the headings of which are drawn from another table, based on a template for which ones are to be used at any given time.
    I'd like to be able to use a tabular form to draw out the history of comments at any given time and modify them however I'm at a complete loss as to how to get this working with a tabular form in Apex. If anyone could point me at some good documentation on the subject or even suggest a better method to get this done I'd be very grateful.
    Thanks!

    Hi,
    Take a look at this article:
    http://www.oracle-base.com/articles/misc/ObjectViewsAndNestedTables.php
    First, create a view as described on your nested and other table(s), with 'Instead Of' triggers handling the DML. Next create the tabular form based on the view. You'll find many posts in the forum regarding building a tablular form based on a view.
    Paul Brookes.

  • Using nested tables and varrays in Forms/Reports6i

    Hi! Could anybody give practical examples of applications based on nested tables and varrays in Forms/Reports6i.
    The possible schema of building user interface and so on.
    Thank you.
    [email protected]

    Hi,
    Varrays and nested tables are not supported within Forms6i and Reports6i. This means tare is no way to use it.
    Frank

  • Nested Tables and Forms 9i-please help

    Hi
    i have the folowing example of a nested table:
    CREATE TYPE CourseList AS TABLE OF VARCHAR2(10) -- define TABLE type
    CREATE TYPE Student AS OBJECT ( -- create object
    id_num INTEGER(4),
    name VARCHAR2(25),
    address VARCHAR2(35),
    status CHAR(2),
    courses CourseList) -- declare nested table as attribute
    CREATE TYPE Course AS OBJECT (
    course_no NUMBER(4),
    title VARCHAR2(35),
    credits NUMBER(1));
    CREATE TYPE CourseList AS TABLE OF Course;
    CREATE TABLE department (name VARCHAR2(20),
    director VARCHAR2(20),
    office VARCHAR2(20),
    courses CourseList)
    NESTED TABLE courses STORE AS courses_tab;
    In Forms i have created a data block based on table department and for managing the nested table courses_tab i found out that i should use a stored procedure:
    PROCEDURE procedure_nest (c_c out courses_tab%rowtype) IS
    c_c courselist;
    BEGIN
    select c.name, c.director,office into :department.name, :department.director,
    :department.office from department c , table
    (select n.courses from department n where c.name =n.name and rownum<=1);
    END;
    compil error:
    error 999 at line 1, column 35
    implemntation restriction (may be temporary) ADT or schema level
    collection not supported at client side with non-OCI mode.
    i really would like to know what shall i do to use and manage the nested table in forms.
    Thank you very much

    Hi Francois. Thank you very much for your reply, but it seems that i still get errors. So let me tell what i have done.
    As you suggested me: i have done a block based on a sub-query for the nested-table:
    'select courses from department where name= :department.name'.
    In the master block(department) i have the when-new-record-instance trigger:
    Declare
    LC$Req varchar2(256);
    Begin
    LC$Req := '(select ns.courses from table
    ( select courses from department where name = ''' || :DEPARTMENT.name || ''' ) ns )';
    Go_block('block11');
    Clear_Block ;
    Set_Block_Property( 'block11', QUERY_DATA_SOURCE_NAME, LC$Req ) ;
    Execute_query ;
    End ;
    Now the errors i receive, this time in the runtime mode are:
    - FRM-41380: Cannot set the blocks query data source
    -FRM-41003: This function cannot be performed here.
    Since it seems that you know how to work with the nested table i would really appreaciate your help. I am new in the nested table and if you could give an ex with my tables it would be great.
    Thank you in advance.

  • Multi block validation in a form using nested tables

    Hi,
    I have a tables that contains 3 nested tables plus some other varchar2 columns.
    I have created a form with 4 blocks, three of them based on views on the 3 nested tables, the forth containing the other columns from the table.
    I have created relationships between the 4th block and each of the first three.
    The records in the nested tables (multi record blocks) depend on some values outside them (from the 4th block) and viceversa.
    How can I perform the validation?
    Thanks,
    Leontin

    I always use child tables rather than nested tables so this might not be applicable, but I like to use a constraint on a materialzed view when I have to validate multiple records or complicated relationships between blocks.
    This example is for inserting ranges on separate records and ensuring the start and end values match up:
    Re: need some help

  • Create database table using Forms Developer 6/6i without using SQL*Plus

    hello there,
    I need help in creating tables in Oracle using Forms Developer 6/6i without using SQL*Plus interface.
    your help is appreciated
    email: [email protected]

    please use Forms_ddl package to create a table dynamically
    from the Developer6/6i.
    you can check the success or failure by using the
    form_success builtin.
    if u want to avoid using the Forms_ddl package
    use stored procedure or create a sql querry record group.
    regards
    sriram.

  • Use of base table concept in form developer

    can i get any white paper on use of base table concept in form developer.

    have a look at the quick tours in the online help they will show you how to do it.

  • How to use nested tables object in oracle form

    Hello forum
    How all r u ..
    i need ur help guys, pls help me out...
    i m using an object oriented approach to design my database by using nested tables and
    varrays. it is quite done successfully.
    but the problem is when i m trying to use that object of nested table into the datablock of the form it is not been added to item list of that block.
    so what is the proper way to use these type of objects to the form.
    all ideas are welcomed and vry much required.
    pls give example if possible so easy to understand or have any demo form related to above case then pls post me to my id i.e [email protected]
    thank u all and expecting some expert solutions

    Hello Francois Degrelle...
    How r u doing ... i have searched the forum abt the above mentioned topic then i found that u have some demo form which will help out to explain the functionality of the nested table in forms ..
    will u pls me that form to my i.e [email protected] pls mail all the detail u have regarding using nested tables to forms and reports
    lots of thanks to u n advance.

  • How can i use the nested table in form 6i

    how can i use the nested table in the form 6i
    ( i.e i want to insert record into the nestred table field ).
    bye siddharth singh

    Nested tables are not supported in Forms 6i, only simple object tables.

  • Adobe form nested tables layout

    Hi,
    I have an xml input described by a schema including 3 level nested table like this:
    Table1
    __col1 col2 col3
    __Table2
    ____col1 col2 col3
    ____Table3
    ______col1 col2 col3
    In Adobe LC I have no problem to link the tables using Subforms but the PDF layout I get is very width because the subforms are lined up horizontal one after the other and some columns contains long strings.
    I would like to place Subforms vertical with some indent, and get a layout more like this:
    Table1 columns (first occurrence)
    __Table2 columns (rows related to table1 first occurrence)
    ____Table3 columns (rows related to table2 first occurrence)
    Table1 columns (second occurrence)
    __Table2 columns (rows related to table1 second occurrence)
    ____Table3 columns (rows related to table2 second occurrence)
    And so on.
    When I try to move a Subform one under the other I get warnings about lost reference.
    Please give me a hint how to do this.
    /K-E

    Thomas:
    My context is as follows.
    <CHANGING>
      <REQUISITION_ITEMS>
        <ELEMENT..1>
        <ELEMENT..2>
        <ELEMENT..3>
    The cardinality of <CHANGING> node is 1..1 and the cardinality of  <Requisition_items> is 1..n.
    Thanks
    Vijai

  • Adobe forms nested table layout

    Hi,
    I have an xml input described by a schema including 3 level nested table like this:
    Table1
    __col1 col2 col3
    __Table2
    ____col1 col2 col3
    ____Table3
    ______col1 col2 col3
    In Adobe LC I have no problem to link the tables using Subforms but the PDF layout I get is very width because the subforms are lined up horizontal one after the other and some columns contains long strings.
    I would like to place Subforms vertical with some indent, and get a layout more like this:
    Table1 columns (first occurrence)
    __Table2 columns (rows related to table1 first occurrence)
    ____Table3 columns (rows related to table2 first occurrence)
    Table1 columns (second occurrence)
    __Table2 columns (rows related to table1 second occurrence)
    ____Table3 columns (rows related to table2 second occurrence)
    And so on.
    When I try to move a Subform one under the other I get warnings about lost reference.
    Please give me a hint how to do this.
    /K-E

    Hi Prakash,
    Thanks for your reply.
    I tried it..... but nothing came out...
    Is there any alternative for this...
    My Hirearchy is like this...
    Main Table (SubformA - MainSubform) set as flowed, repeat for each data item     
        Maintable-field1 Maintable-field2 (Subform) set as positioned
    Inner table (table subform) set as flowed
      Innertable-field1 Innertable-field2 (subform) set as positioned
    I linked the Maintable and the Innertable in the context in the 'Where Conditions' tab
    Kindly review the above hirearchy and reply...
    Guys please help me.... I am in an urgent state and need to complete this ASAP.
    I will give full points for all of u guys...
    Please.... please... please....
    Thanks in advance.
    Jaffer Ali.S

  • 10g Form Developer Quits on compiling Forms connected to Sybase tables.

    Dear Experts,
    We have configured the connectivity for Sybase database with our oracle 9i database. using Hetero Geneous Service i.e using System_dsn ..etc.
    On this Sybase connectivity 6i Forms are compiling and running successfully But with 10g Forms while compling it just close the 10g form developer.
    For example....!
    In 6i forms On Button Press trigger below insert command works perfectly.
    But In 10g forms it say nothing and Just Quit.
    begin     
    insert into *"sybase_table"@SYBASE_DSN_DBLINK*
    ("colum1","colum2")
    values
    ('value1','value2');                         
    commit;
    end;
    Please help to resolve this problem.
    Thanks
    Eidy

    Hello,
    1.) does it with with the forms compiler (frmcmp)?
    2.) did you try creating a synonym for your object:
    create synonym my_syn for sybase_table@SYBASE_DSN_DBLINK;and use this synonym?
    3.) Did you try it with the latest patchsets if you didn't apply them (10.1.2.3 for forms)?
    4.) Did you try it with another database version (9i reached sustaining support btw. so you might try it with e.g. 10.2)?
    5.) If everything fails you can put your logic in a database procedure and use that?
    cheers

Maybe you are looking for

  • Windows migration assistant created 2 accounts on my Mac

    Windows migration assistant created 2 accounts on my daughters new Mac, In a hurry to set up my daughters New Macbook Air we downloaded the Windows Migration Assistant when migrating we unticked music and videos intending to migrate them at a later d

  • Firefox will not maximize

    firefox will not maximize, stays on toolbar

  • Access Reporting on NAC Guest (NGS) 2.0.4

    I am trying to set up access reporting on a NAC Guest server, I have enabled access logging in the admin area and also allowed the Sponsor profile to view access reports. But when actually trying to have a look at these reports I am getting nothing.

  • Pipelined function in package example 11g

    Hi all, could you please show me example of using pipelined function in package with my sample data? My need is to return the following data using pipelined function in package: select 1 as t, 2 as y, 'u' as j, trunc(sysdate-1) as k from dual union a

  • ITunes .dll error.  I can't use, uninstall, install iTunes - NEED HELP!

    I can't even start up iTunes anymore. I get "iTunes has encountered a problem and needs to close. We are sorry for the inconvenience." I can get details on the error but it's all Greek to me. Any insights/thoughts? Your help would be most appreciated