Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

dynamic documents

Former Member
0 Likes
650

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
601

Hi chanakya,

I fear that u cannot do this.

Regards,

Nagarajan.

5 REPLIES 5
Read only

Former Member
0 Likes
601

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.

Read only

Former Member
0 Likes
602

Hi chanakya,

I fear that u cannot do this.

Regards,

Nagarajan.

Read only

Former Member
0 Likes
601

I don't think it is possible...

But Check the Program <b>DD_ADD_TABLE</b>.

vijay

Read only

Former Member
0 Likes
601

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

Read only

0 Likes
601

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