Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

View Table values

Former Member
0 Likes
1,517

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.

3 REPLIES 3
Read only

Former Member
0 Likes
583

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é

Read only

olivergrande
Associate
Associate
0 Likes
583

Hi,

have you tried transaction SE16N?

Regads,

Oliver

Read only

0 Likes
583

Ok, this also works, but this is to easy I think