Issues with Nested Tables and Adobe Designer

Hi,
I have some strange issues when I am trying to create a nested dynamic table with SAP DATA in Adobe Designer.
My Outer Table has article items and in this table I got a nested charges. For instance the table contains this data:
DATA
|->Article1
|--->charge111
|--->charge211
|
|->Article2
|--->charge122
|--->charge222
Now I am trying to display the data in a Adobe Designer table. But if I create a table with a row article and a repeating row charge all charges will be displayed under the first Article.
This is the result:
DATA
|->Article1
|--->charge111
|--->charge211
|--->charge122
|--->charge222
|
|->Article2
How can I solve this issue? I tried to select data binding on charges like article.DATA.charges.DATA[*] but this don't work.
Anyone an idea?

Alex,
Is it print based form or interactvie form.
ABAP
If it is printbased form and if you are designing from SFP, you can use the following solution.
You have to create a nested table in the context as below.
say Table1-> Article ( fields: ARTICLENAME,....other fields) info Table2->cost info(fields:ARTICLENAME,Charge...,other fields).
The 2 tables should contains data as beow.
Table1 data.
1row->Article1  -.....other values.
2row->Article2  -.....other values.
3row->Article3  -.....other values.
Table2 data.
1row->Article1  -Charge11 .....other values.
2row->Article1  -Charge12 .....other values.
3row->Article1  -Charge13 .....other values.
4row->Article2  -Charge21 .....other values.
5row->Article2  -Charge22 .....other values.
6row->Article2  -Charge23 .....other values.
7row->Article3  -Charge31 .....other values.
8row->Article3  -Charge32 .....other values.
9row->Article3  -Charge33 .....other values.
In the context drag table2 into the table1 and define where clause on ARTICLENAME.
In the layout drag nested table in the body page and make alignments.
If your requirement is interactive, may be you can use the similar logic.

Similar Messages

  • Does apple have an issue with magic mouse and adobe

    does Apple have a problem with magic mouse and Adobe Photoshop/Indesign/Illustrator, scrolling uncontrollable, pages moving of their own accord etc.
    If so, whats the cure and why does Apple not admit to it?
    Badgolfer4

    it's rare that a mouse would perform in a different manner between different applications
    I would troubleshoot with other apps to see if it was just adobe apps
    and then I would troubleshoot by trying a different mouse
    could be the mouse was defect

  • Object view  with nested table and member functions????????????????

    HI frds:)
    I need some help regarding writeing soem queries..
    I have to use view in retreving data and by useing member functions of object.
    1) i have to create a nested table by useing type object.
    2) i have to create a object wtih member functions inorder to create view of taht nested table,.
    3) by useing this objectt view and by useing methods i have to write soem queries ...
    If any one know or any information regarding this please reply me... as i have searched in net alot but i was unable to figure out..
    Thanks....

    // first createing object
    create type emp_det as object
    (empname varcahr2(20),start_date date,end_date date);
    // creating table of that object
    create table emp_detai_table as table of emp_det;
    // creating nested table
    create table empl (emp_no number,emp_detail emp_detail_table,dep_no number)nested table emp_detail store as s;
    //now i want to create view.. inorder to create view i need to create object. in that object i want to create methods.. these methods should work with date attributes..
    after creating object view i need to select or write some queries by useing member methods..
    This is the tast i have to perform.,. i have no materials ...if u have any link ..forward me..
    i have to do it as soon as possible..
    waiting for your reply...

  • DBMS_SQL.BIND_VARIABLE with nested table and ORA-600

    Hello, I'm experimenting a little with pl/sql and I was trying to do some dynamic SQL using DBMS_SQL, but I'm having a problem when binding a variable that is a neste table(got no problems in the same example if I bind with a varchar2 variable).
    Here is a reduction of the problem:
    DECLARE
         TYPE CENA_TYPE IS TABLE OF VARCHAR2(30);
         CENA CENA_TYPE;
         L_UPDATE_STMT VARCHAR2(2000);
         UPDATE_CURSOR INTEGER:=DBMS_SQL.OPEN_CURSOR;
         RES INTEGER;
    BEGIN
         CENA:=CENA_TYPE('HELLO');
         L_UPDATE_STMT:= 'BEGIN '
                             ||'DBMS_OUTPUT.PUT_LINE(:CENA(1));'
                             ||'END;';
         DBMS_SQL.PARSE(UPDATE_CURSOR, L_UPDATE_STMT ,DBMS_SQL.NATIVE);
         DBMS_SQL.BIND_VARIABLE(UPDATE_CURSOR,':CENA',CENA);
         RES:=DBMS_SQL.EXECUTE(UPDATE_CURSOR);
         DBMS_SQL.CLOSE_CURSOR(UPDATE_CURSOR);
    END;
    /What am I doing wrong??
    Thanks

    Pedro_gloria wrote:
    What am I doing wrong??DBMS_SQL executes in own context. Therefore, even though type CENA_TYPE is declared in calling anonymous block it is not known to anonymous block you execute in DBMS_SQL. Also, you must initialize and extend collection. Use:
    SQL> set serveroutput on
    SQL> DECLARE
      2   L_UPDATE_STMT VARCHAR2(2000);
      3   UPDATE_CURSOR INTEGER:=DBMS_SQL.OPEN_CURSOR;
      4   RES INTEGER;
      5  BEGIN
      6   L_UPDATE_STMT:= 'DECLARE
      7   TYPE CENA_TYPE IS TABLE OF VARCHAR2(30);
      8   CENA CENA_TYPE := CENA_TYPE();
      9          BEGIN '
    10       ||'CENA.extend;'
    11       ||'CENA(1) := :1;'
    12       ||'DBMS_OUTPUT.PUT_LINE(CENA(1));'
    13       ||'END;';
    14   DBMS_SQL.PARSE(UPDATE_CURSOR, L_UPDATE_STMT ,DBMS_SQL.NATIVE);
    15   DBMS_SQL.BIND_VARIABLE(UPDATE_CURSOR,':1','Hello');
    16   RES:=DBMS_SQL.EXECUTE(UPDATE_CURSOR);
    17   DBMS_SQL.CLOSE_CURSOR(UPDATE_CURSOR);
    18  END;
    19  /
    Hello
    PL/SQL procedure successfully completed.
    SQL> SY.

  • Performance issue with XLA tables and GL tables R12

    Hi all,
    I have one SQL that joins all the XLA tables with GL tables to get invoice related encumbrance data.
    My problem is for some reason the SQL is going to GL_LE_LINES first (from explain plane). As
    a result my SQL is taking some 25 min to finish.
    I am pretty sure if I can manage to force the SQL to use XLA table 1st the SQL will finish in couple of
    minutes. I even tried LEADING hint. But, it didn't work.
    Can someone help me?
    SELECT poh.segment1,
                        tmp.closed_code,
                        gcc.segment1,
                        gcc.segment2,
                        gcc.segment3,
                        gcc.segment4,
                        gcc.segment5,
                        gcc.segment6,
                        gcc.segment7,
                        SUM (NVL (gjl.entered_dr, 0) - NVL (gjl.entered_cr, 0))
                   FROM apps.up_po_encumb_relief_tmp_nb TMP,
                        apps.po_headers_all POH,
                        apps.po_distributions_all pod,
                        apps.ap_invoice_distributions_all APID,
                        xla.xla_transaction_entities XTE,
                        xla_events XE,
                        apps.xla_ae_headers XAH,
                        apps.xla_ae_lines XAL,
                        apps.gl_import_references GIR, -- DOUBLE CHECK JOIN CONDITIONS ON THIS TO INCLUDE OTHER COLS
                        apps.gl_je_lines GJL,
                        apps.gl_je_headers GJH,
                        apps.gl_code_combinations GCC
                  WHERE     POH.segment1 = TMP.PO_NUMBER
                        AND POH.PO_HEADER_ID = POD.PO_HEADER_ID
                        AND POD.Po_distribution_id = APID.po_distribution_id
                        AND XTE.APPLICATION_ID = 200                           -- Payables
                        AND XTE.SOURCE_ID_INT_1 = APID.INVOICE_ID       --POH.po_header_id
                        AND XTE.ENTITY_ID = XE.ENTITY_ID
                        AND XTE.APPLICATION_ID = XE.APPLICATION_ID
                        AND XAH.ENTITY_ID = XE.ENTity_ID
                        AND XAH.EVENT_ID = XE.EVENT_ID
                        AND XAH.APPLICATION_ID = XE.APPLICATION_ID
                        AND XAL.AE_HEADER_ID = XAH.AE_HEADER_ID
                        AND XAL.APPLICATION_ID = XAH.APPLICATION_ID
                        AND GIR.gl_sl_link_table = XAL.gl_sl_link_table
                        AND GIR.gl_sl_link_id = XAL.gl_sl_link_id
                        AND GJL.je_header_id = GIR.je_header_id
                        AND GJL.je_line_num = GIR.je_line_num
                        AND GJH.je_header_id = GJL.je_header_id
                        AND GJH.status = 'P'
                        AND POD.code_combination_id = GJL.code_combination_id
                        AND GJL.code_combination_id = GCC.code_combination_id
                        AND GCC.enabled_flag = 'Y'
                        AND GJH.je_source = 'Payables'
                        AND GJH.je_category = 'Purchase Invoices'
                        AND GJH.encumbrance_type_id IN (1001, 1002)
                        AND GJH.actual_flag = 'E'
                        AND GJH.status = 'P'
                        AND (NVL (GJL.entered_dr, 0) != 0 OR NVL (GJL.entered_cr, 0) != 0)
               GROUP BY poh.segment1,
                        tmp.closed_code,
                        gcc.segment1,
                        gcc.segment2,
                        gcc.segment3,
                        gcc.segment4,
                        gcc.segment5,
                        gcc.segment6,
                        gcc.segment7;

    Hi,
    did you
    - check table statistics (have the affected tables been analyzed recently)?
    - check explain plan for full table scans? You are using NVL on gjl.entered_dr
      and gjl.entered_cr which may lead to a full table scan, as far as i know, there
      is no (standard) functional index on both columns.
    Regards

  • Since recent upgrade, I can't see any of my projects in Shutterfly. Their customer support says it may be issue with Java app and Adobe Flash Player

    see above-- are there known issues with these apps?

    Your Java player (if relevant) is not clearly indicated in your plugins list, and your Flash player is several versions behind. If Apple has an update site, you might check that first. Mozilla's site is here: http://www.mozilla.org/plugincheck/

  • Ssi issues with nested table

    Hi ssi newbie question here.
    I wanted to include an ssi section in a embeded table layout,
    have used the ssi include code and inserted it where i want the ssi
    to work etc . So the it works which is nice but when you look at
    the physical page in dreamweaver, what was a nice layout has been
    exploded totally. However when you view it via the browser it is
    fine.
    Why is this? i always view html pages with a split screen and
    find it very unnerving to see my nice pages blown apart. Is there a
    solution for this?
    I use dw 2004 mx .
    Thanks.

    When I say must not, I mean that it's an error to have those
    tags in the
    include file, and will result in the kind of symptoms you
    describle. The
    concept is -
    all the code in the include file, when added to all the code
    in the parent
    file must result in a stand-alone and valid HTML page. Thus,
    the includes
    can only be fragments of code.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "jestersdead" <[email protected]> wrote in
    message
    news:eeug4s$hll$[email protected]..
    > Hi ssi newbie question here.
    >
    > I wanted to include an ssi section in a embeded table
    layout, have used
    > the
    > ssi include code and inserted it where i want the ssi to
    work etc . So the
    > it
    > works which is nice but when you look at the physical
    page in dreamweaver,
    > what
    > was a nice layout has been exploded totally. However
    when you view it via
    > the
    > browser it is fine.
    >
    > Why is this? i always view html pages with a split
    screen and find it very
    > unnerving to see my nice pages blown apart. Is there a
    solution for this?
    >
    > I use dw 2004 mx .
    >
    > Thanks.
    >

  • Issue with P table and X Table of master data ZGN_PROD

    Hi Experts,
    I am facing issue when I carried out existence of values for navigation attributes in characteristic ZGN_PROD in RSRV. Its showing "Characteristic ZGN_PROD : 74 data records were incorrect"
    Please tell me how to correct the error without deleting and reloading the masterdata.
    Thanks in advance for all your help.
    Regards,
    Surya.

    After executing all the elementary corrections on the InfoObject, It's giving me the error message
    " The size check establishes that the newly created X/Y table is not the same size as the P/Q table from which it has been created.
    This is caused by missing SID entries in the navigation attributes."
    Please advice.

  • Spry issue with nested table

    Hello,
    I am working on my first website.
    I have created a page that I would like to use as a template www.readingymca.co.uk (thanks to gramps)
    but get this error
    Line 64 is where I the start of where I have coded the colour of individual buttons for the spry menu. I am wondering if I have put it in the wrong place or need to adjust anything else.
    Thanks in advance
    Mark

    This is the markup for the menubar. I have highlighted the problems
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a href="http://www.readingymca.co.uk/index.html">home</a> </li>
      <li><a href="#" class="MenuBarItemSubmenu">housing</a>
        <ul>
          <li><a href="http://www.readingymca.co.uk/housing.html"<body style="background-color:#DC2683;">Accommodation and support</a></li>
          <li><a href="#"<body style="background-color:yellow;">resident activities</a></li>
        </ul>
      </li>
      <li><a href="#" class="MenuBarItemSubmenu">sports &amp; activities</a>
        <ul>
          <html>
          <li><a href="#"<body style="background-color:purple;">Senior Activities</font></a></li><li><a href="http://www.axkp33.dsl.pipex.com/"
          <body style="background-color:yellow;">Aikido</font></a></li>
          <li>
          <a href="http://www.fwckungfu.com/club/Reading;jsessionid=A7E9907DE62B3C9870730B019876B1DC"<body style="background-color:red;">Kung Fu</a></li>
          <li><a href="http://www.1streadingseascoutgroup.org.uk/"<body style="background-color:green;">Scout movement</a></li>
          <li>
          <a href="http://www.lifespringchurch.co.uk/Groups/56782/LifeSpring_Church_Reading/Church_Life/Missi on_at_Home/Tiggers_Toddlers/Tiggers_Toddlers.aspx"<body  style="background-color:yellow;">Tigger Toddlers</a></li>
          <li><a href="http://www.readingymcafc.co.uk/"<body style="background-color:blue;">Football</a></li>
          <li><a href="#"<body style="background-color:orange;">Table Tennis</a></li>
          <li><a href="http://www.readingcrossroads.org/youngcarers.htm"<body style="background-color:pink;">Crossroads
          Young Carers</a></li>
        </ul>
      </li>
      <li><a href="#" class="MenuBarItemSubmenu">facilities</a>
        <ul>
          <li><a href="http://www.readingymca.co.uk/sports%20hall.html"<body style="background-color:purple;">sports Hall</a></li>
          <li><a href="http://www.readingymca.co.uk/Gym.html"<body style="background-color:yellow;">gym</a></li>
          <li><a href="http://www.readingymca.co.uk/conference%20room.html"<body style="background-color:red;">conference room</a></li>
          <li><a href="http://www.readingymca.co.uk/padworth.html"<body style="background-color:green;">padworth log cabin</a></li>
          <li><a href="http://www.readingymca.co.uk/minibus.html"<body style="background-color:blue;">minibus</a></li>
        </ul>
      </li>
      <li><a href="#" class="MenuBarItemSubmenu">projects</a>
        <ul>
          <li><a href="#"<body style="background-color:purple;">workshop</a></li>
          <li><a href="#"<body style="background-color:yellow;">cafe</a></li>
        </ul>
      </li>
      <li><a href="#">donate</a> </li>
      <li><a href="#" class="MenuBarItemSubmenu">useful info</a>
        <ul>
          <li><a href="#"<body style="background-color:purple;">membership</a></li>
          <li><a href="#"<body style="background-color:yellow;">links</a></li>
        </ul>
      </li>
      <li><a href="#">volunteering</a></li>
      <li><a href="#" class="MenuBarItemSubmenu">about us</a>
        <ul>
        <li><a href="#"<body style="background-color:purple;">RYMCA History</a></li>
        <li><a href="#"<body style="background-color:yellow;">YMCA Movement</a></li>
        <li><a href="#"<body style="background-color:red;">meet the team</a></li>
        </ul>
      </li>
      <li><a href="#">contact us</a></li>
    </ul>
    With the exception of the stray HTML tag, your problem is very consistant. To save my time, I shall correct the last menu item which now reads
    <li><a href="#"<body style="background-color:red;">meet the team</a></li>
    and should read
    <li><a href="#" style="background-color:red;">meet the team</a></li>
    I gave the rest of the document a quick glance and found another little bug as follows
        <script type="text/javascript">
    // BeginOAWidget_Instance_2559022: #slideshow
    slideshowAddCaption=false;
    $(document).ready(function() {
        $('#slideshow').cycle({
            after:            slideshowOnCycleAfter, //the function that is triggered after each transition
            autostop:            false,     // true to end slideshow after X transitions (where X == slide count)
            fx:               'fade,',// name of transition effect
            pause:            true,     // true to enable pause on hover
            randomizeEffects:    true,  // valid when multiple effects are used; true to make the effect sequence random
            speed:            1000,  // speed of the transition (any valid fx speed value)
            sync:            false,     // true if in/out transitions should occur simultaneously
            timeout:        9000,  // milliseconds between slide transitions (0 to disable auto advance)
            fit:            true,
            height:           '200px',
            width:         '200px'   // container width (if the 'fit' option is true, the slides will be set to this width as well)
    function slideshowOnCycleAfter() {
        if (slideshowAddCaption==true){
                $('#slideshow-caption').html(this.title);
    // EndOAWidget_Instance_2559022
        </script>
    This 'fade' has a comma which should not be there
    For the rest it looks great, well done!
    Gramps

  • Nested Tables and Multiple Pages

    Hi,
    I have a problem with nested tables that span multiple pages.
    Lets assume I want to create a list of orders. Each order contains several order items. As long as an order contains less order items than fit to one page the list is rendered correctly. But if an order contain more items all items that can´t be displayed at the first page are cut off.
    I´ve tried so many combinations of subforms with flow content and position content, subform sets and "Allow Page Breaks within Content" as well as Layout Property "Expand to fit" but nothing helped.
    Can someone tell me if and how I can achieve this. In the meantime I do work in Designer directly with a XML datasource. So I could send you the form and example data.
    I´m working with NW04 SP11 and Adobe Designer 6.0
    Best regards
    Helmut

    Hello Helmut,
    There are some limitations and bugs in your requirement.
    Please see the output after copying into notepad.
    1.Eventhough if you give overflow leader , the headers for item table will not repeat.it is a bug.this is not solved in designer 7.1 also.
    2.There are some accessibilty bugs in case of nested table.
    Please follow the below design in the hierachy tab.
    MainTable (subform)
          |---- Header (subform)
          |      |- Header texts for Main table   +
          |      |-     Text for nested table
          |---- DATA_main (subform)     
                 |-Main table fields
              |-ITEMDATA ( Table SUBFORM)  
                     |-Header (Subform)
                     |   |-ItemHeader texts
                     |-DATA_item (subform)
                        |-Item data fields     
    for DATA_main and DATA_item subforms, set repeat count MIN in binding tab.Set all flow content and allow page break with in the content.
    The output will appear in the following manner.
    <b>( Copy the below text into the notepad. )</b>
    <b>Order no.     text                 customer
                    Order items</b>
    =================================================================
    1             Computer             Mr. Smith
       <b>Order item no.     short text          quantity        price</b>  
        10                 PC Tower            1               400.00
        20                 LCD Display         1               200.00
        30                 Keyboard            1                15.00
        40                 Mouse               1                10.00
    2             Notebook             Mrs. Parker
       <b>Order item no.     short text          quantity        price</b>  
        10                 HP Notebook         1               600.00
        20                 Ext. hard drive     1                80.00
    let me know if u didnt get the solution.
    Thanks and Regards,
    Pavan Meda

  • Issues with Office 2010 and Acrobat Pro 8

    Good Day All;
    We are in the middle of upgrading from Windows XP to Windows 7 with Office 2010 and I was wondering if there are any issues with importing Office documents into Acrobat Pro 8. I have found out that there are a couple of issue with Office 201 and LifeCycle Designer.
    Any comments would be helpful
    Regards
    Chomp

    Acrobat 8 is not compatible with Microsoft Office 2010 and the PDFMaker plugins will not install. Only Acrobat X is compatible with Office 2010, and at this time only in 32-bit mode.
    Acrobat 8 is also not officially compatible with Windows 7, again Acrobat X is the first version to carry approval for that OS. It will still install, but Adobe cannot guarantee it will operate perfectly in all cases, and doesn't provide install support for that combination.

  • Have an issue regarding library books. My ereader is validated with Kobo account and Adobe Digital Editions account, but I get an error: 'this document is protected bij DRM and isn't available with your Adobe ID'.

    Have an issue regarding library books. My ereader is validated with Kobo account and Adobe Digital Editions account, but I get an error: 'this document is protected bij DRM and isn't available with your Adobe ID'.

    same problem for me. I am using abe edition 3 as I don't think 4 can be used with kobo. Book has been downloaded to kobo but it can't be read as it is not authorised.Help please

  • Compatibilityy issue with windows XP and windows 8.1 for adobe photoshop elements 4.0

    Compatibility issue with windows XP and windows 8.1 for adobe photoshop elements 4.0?comcom

    You are going to have to contact Adobe on this one. We are other users.
    Sounds like it's not even an Apple question? Not sure.
    But the Adobe program changed, nothing changed in iTunes, right?

  • CAST and MULTISET with nested table

    I am trying to figure out the syntax of using
    MULTISET. I have two queries.
    One very basic where I want to cast the station names
    and ids, retrieved from a regular table into a nested
    table.
    e.g.
    SELECT cast(multiset(stn_id, stn_name) as castTab) FROM station_tab WHERE stn_name like '%xyz%';
    The other retrieve sections of a nested table and cast back as
    nested table type.
    SELECT * FROM CAST(MULTISET(SELECT * FROM
    THE (SELECT tmn_history FROM tmin WHERE tmn_stn_ncdcid = 01063456) NT
    WHERE (EXTRACT(YEAR FROM NT.dta_date) = 1915) AS data_tab ;
    The schema/tables are as follows
    =========================================================================
    CREATE TABLE station_tab
         stn_id     INTEGER PRIMARY KEY,
         stn_name VARCHAR(50)
    CREATE OR REPLACE TYPE data_point AS OBJECT
         dta_date      DATE,
         dta_val NUMBER,
         dta_dtobtnd DATE
    CREATE OR REPLACE TYPE data_tab AS TABLE OF data_point;
    CREATE TABLE tmin
    tmn_stn_id     INTEGER ,
    tmn_history data_tab
    ) NESTED TABLE tmn_history STORE AS tmn_history_tab;
    CREATE OR REPLACE TYPE castObj AS OBJECT
         dta_val NUMBER,
         stn_name VARCHAR(50)
    CREATE OR REPLACE TYPE castTab AS TABLE OF castObj;
    =====================================================================
    Thank you.
    barr

    With trial and error and going thru the examples
    in AskTom and documentation found that the follwing syntax works.
    (Also realized this is the wrong forum);
    SELECT * FROM TABLE (cast(multiset
    (SELECT stn_ncdcid,stn_name FROM station_tab WHERE stn_name LIKE '%WSFO%')
    AS castTab));
    select * FROM TABLE (CAST(MULTISET (SELECT * FROM
    THE (SELECT tmn_history FROM tmin WHERE tmn_stn_ncdcid = 01063456) NT
    WHERE (EXTRACT(YEAR FROM NT.dta_date) = 1915)
    ORDER BY NT.dta_date) as data_tab)) ;

  • Fill datagridview with Nested Table Object Type ???

    Hello everybody, please you help me resolve my problem?
    I follow this example: *(A Sample Application using Object-Relational features)* http://download-west.oracle.com/docs/cd/B14117_01/appdev.101/b10799/adobjxmp.htm
    And this tutorial: *(Using Oracle User-Defined Types with .NET and Visual Studio)* http://www.oracle.com/technology/obe/hol08/dotnet/udt/udt_otn.htm
    Now I have 3 Object Table: Stock, Customer and Purchase Order. With the tutorial it's OK to show the data of Stock and Customer Table [there is no nested table in], but I can't do this with table Purchase Order, the tutorial don't show how to work with Nested Table type [Missing or something ?]
    When I try to display the data of table Purchase Order, I get the error:
    typeName='LINEITEMLIST_NTABTYP'' is not specified or is invalid*
    Follow the tutorial, I generate custom class for this UDT and get another error:
    this.STOCK_REF = ((object)(Oracle.DataAccess.Types.OracleUdt.GetValue(con, pUdt, "STOCK_REF")));*
    Argument Exception Unhandle: Object attribute is not mapped to a custom type member.*
    Can You show me how to do this ? Show the data of the Nested Table in Visual Studio, do I have something wrong ??? Thanks and Best Regards.

    I think you need to go through the tutorial more carefully. I think you are missing steps.
    You are using a REF. Are you creating an object table for the objects to be stored in? Are you dereferencing the REF? This is covered by the Oracle by Example tutorial.
    http://www.oracle.com/technology/obe/hol08/dotnet/udt/udt_otn.htm#t11
    When you receive the nested table, it will be inside a .NET class. You can create this class by using the Create Custom Class menu item on the nested table type in server explorer.
    This class will contain a ToString method and a ToXML method.
    The question is, where are you attempting to display the data from this nested table? In a grid?
    Does it make sense to display a nested table inside one cell of a grid? No. You would need to construct a special UI that will show the
    nested table. Maybe the user clicks on the cell on the grid, which opens a new grid that displays the data. Or maybe there is a second grid on the form that always shows the nested table for the row that the first grid currently has selected.
    I realize I am not providing you the code... but it sounds like you need to design a more sohisticated UI than what the tutorial is using -- one that can handle displaying one additional table per row.

Maybe you are looking for

  • Average of a column in Normal Report

    Hi I am using a simple report. I want to display average of a column on the bottom of the report. I am not able to find any option for it. how to show average of a cloumn on simple report. Please help me. Thanks PK

  • "No longer connected to the Internet" until router restarted

    I've been running a G4 Quicksilver with OSX Tiger on a BT Internet Home Hub router for some time now, years in fact, with no trouble. I also run a Windows PC from the same router using Ethernet connection for both. Yesterday I disconnected the ethern

  • Sync iphone to macbook air

    My macbook air iCalendar does not reflect events I have added on my iPhone5s.  The macbook calendar does show birthdays and events from my facebook acoount, however.  I am signed into iCloud on both devices.  Any suggestions how to resolve this?

  • Aironet 1250 Configuration Help

    Hello to all, I'm an  vmware\linux system administrator with very low skills in networking, I just bought 3 Cisco Aironet 1250 2.4ghz + 5ghz for my testing network and I need help to configure them. Scenario: 1 - I have 3 Cisco Aironet 1250 2 - I wan

  • Will the Gateway NV55C56U Be Available Again Soon?

    Hello, I was looking for a new laptop and found this one.  It looks excellent, but it is sold out online and shipping is not available.  Will it be back in stock anytime soon?  Thanks for all the help! Its SKU is 3556095 if you want to take a look at