Skip to Content
0
Former Member
Dec 26, 2007 at 05:39 AM

How to get values from dynamically populated field symbol

26 Views

Hi all,

I am having a field symbol <fs_table> type standard table, which is getting populated dynamically.

CALL METHOD cl_alv_table_create=>create_dynamic_table

EXPORTING

it_fieldcatalog = i_fieldcat[]

IMPORTING

ep_table = is_eptab.

ASSIGN is_eptab->* TO <fs_table> .

After the ALV display i am making some changes in the ALV and getting a new internal table <fst_table>,which is having changed values.

Now the problem is that i am not able to get the changed values from <fst_table> as it is not of any structure type and cant associate it with any field like we do in normal internal table and work areas like, wa-fieldname.

All the fields are dynamic.

Regards,

Anant