Hi,
I have an internal table itab of this type:
types: begin of tdat
fld1(10) type c,
fld2(10) type c,
fld3(10) type c,
end of tdat.
All I want to do is assign the second field of the second record of the internal table to a variable. How do I do so?
thanks!