‎2005 Dec 08 2:46 PM
hey everyone,
can u please help me out with this...
can i place a internal table in quick table.
(while creating a table using cl_dd_table_area.)
thank you
‎2005 Dec 08 2:53 PM
‎2005 Dec 08 2:51 PM
Hi Chanakya,
Yeah you can do it.
Please refer the dem program :
<b>DD_ADD_TABLE</b>
It will give you more info.
Thanks&Regards,
Siri.
‎2005 Dec 08 2:53 PM
‎2005 Dec 08 3:02 PM
I don't think it is possible...
But Check the Program <b>DD_ADD_TABLE</b>.
vijay
‎2005 Dec 09 5:26 PM
hi everybody,
it has been said that,
dynamic documents are logical successors of traditional
lists, if i cant use internal tables, how can i display the lists.
thanks
chan
‎2005 Dec 10 7:19 AM
look at the sample DD_ADD_TABLE program
once the table (html table) is created using
call method do->add_table
exporting no_of_columns = 3
cell_background_transparent = space
with_heading = 'X'
with_a11y_marks = 'X'
a11y_label = str
importing table = ta1.
set columns
call method ta1->add_column exporting heading = head1
importing column = col11.
you need to loop thru your internal table and place the values in the appropriate columns
call method ta1->add_column exporting heading = head1
importing column = col11.
call method col11->add_text exporting text = text11.
REgards
Raja