Hello everybody!
I have this internal table:
DATA: BEGIN OF t_spfli OCCURS 0,
carrid TYPE spfli-carrid,
connid TYPE spfli-connid,
airpto TYPE spfli-airpto,
END OF t_spfli.
I would like to get information about each field of my internal table, like table (SPFLI), field name (CARRID, CONNID, AIRPTO), field description, data element, etc...
How can i do that?