cancel
Showing results for 
Search instead for 
Did you mean: 

i have a doubt in web dynpro

Former Member
0 Kudos

how to move (or) insert a new row in table control

Accepted Solutions (0)

Answers (4)

Answers (4)

0 Kudos

Change the cardinality of node from 1..1 to 0..n.

Thanks

Ananda

Former Member
0 Kudos

tnx for the clarification

and i have another doubt how will u convert structure as an table in webdynpro

veerababu_alladi
Explorer
0 Kudos

Hi,

It is not possible to convert structure as a table ?

we are using structure for table operations only.

i mean in that table inserting a row into table, deleting a row from table,  modifying table from row etc, these operations posible through structure.

Structure is a single row of the table.

Regards,

Veerababu.

veerababu_alladi
Explorer
0 Kudos

Hi santhosh,

MODIFY Query for updating  internal table from work area(structure) .

MODIFY lt_tab FROM ls_row INDEX sy-index.

Is this you are looking for ?

Thanks,

Veerababu

veerababu_alladi
Explorer
0 Kudos

Hi Shanthosh,

Structure holds one complete row.

ls_row is a structure(row).

lt_tab is a table

you can insert structure into table by using INSERT ( or ) APPEND ( or ) MODIFY

INSERT ls_row INTO TABLE lt_tab

APPEND ls_row TO lt_tab.

MODIFY lt_tab FROM ls_row.

Is this you are looking for ?

Thanks,

Veerababu