Hi,
How to get the field name dynamically from an internal table.
For ex:
I need to assign some fields based on some condition, but i dont know which fields meet the condition.
Loop at it_pos.
Loop at it_fieldcat.
if it_fieldcat-no_out = ' '.
Now how to get the field name dynamically
it_display-(it_fieldcat-fieldname) = it_pos-(it_fieldcat-fieldname)*.
this code is giving error, what is the correct syntax for such assignments
Thanks,
Ravi K