Hi all,
i have a internal table i declared it sth like this:
types: Begin of itab1,
fieldname(40) type C,
end of itab1.
this table is to stored those dynamic fieldname choosen by user. but we found out one problem
if a user select those field which is type dats, dec, curr other than type C, it gave us error saying error in module rsql of the database interface.
anyone know how can i cater to this dynamic field type problem instead of just declaring the fieldname in my internal table as type C?