‎2004 Sep 02 2:08 PM
Hi,
Can anyone suggest how to see values of tables whose Display and maintance is not allowed.
For example Transp table: CDATA
Thank you very much..
Regards,
Thomas.
‎2004 Sep 02 2:24 PM
With a Quick&Dirty program:
Code could be like:
REPORT ....
DATA: it_cdata TYPE TABLE OF cdata.
SELECT * FROM cdata INTO TABLE it_cdata.
CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
EXPORTING
i_structure_name = 'CDATA'
TABLES
t_outtab = it_cdata.
If you have more than one such a table, you should make the tablename as parameter.
André
‎2004 Sep 02 3:27 PM
‎2004 Sep 02 4:42 PM