Application Development 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: 

to read table

Former Member
0 Kudos

Hi,

i have to read a table name as a input parameter and print the table in the report.

please suggest me the function module used to get the table name .

thank you

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi

u can use select single * statement for table DD02T where DDLANGUAGE = SY-LANGU.

-srini

4 REPLIES 4

Former Member
0 Kudos

hi gayatri,

u can code your problem..

parameters: x_tab ....

select * from x_tab ....

loop at...

endloop...

regards,

Vamshi

former_member181995
Active Contributor
0 Kudos

use table DD02L

Former Member
0 Kudos

hi,

This FM takes Databse table as input .check it.

CALL FUNCTION 'SE16N_START'

EXPORTING

I_DISPLAY = 'X'.

Also, u can use table DD03L

Regards,

deepthi.

Edited by: deepthi dandibhotla on Sep 29, 2008 1:11 PM

Former Member
0 Kudos

hi

u can use select single * statement for table DD02T where DDLANGUAGE = SY-LANGU.

-srini