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

Display ITab data on screen

Former Member
0 Likes
836

Hi,

Other than ALV, what other options do i have to display my internal table data on the screen for the user to view. I can't used WRITE statement as I have 150 fields and don't want to individually display them. Is there any way to dump the entire row on the screen in a single shot?

Thanks,

Vartika.

1 ACCEPTED SOLUTION
Read only

0 Likes
799

But with 150 fields, without the ALV you will probably exceed the maximum allowable "line-size" limit

7 REPLIES 7
Read only

Former Member
0 Likes
799

You need not have to individually display the fields. You can just say:

WRITE: itab.

Thanks,

Santosh

Read only

0 Likes
799

When I use

WRITE: ITAB.

it gives me error in syntax check as :

"ITAB" cannot be converted to a character-type field.

> You need not have to individually display the fields.

> You can just say:

>

> WRITE: itab.

>

> Thanks,

> Santosh

Read only

abdul_hakim
Active Contributor
0 Likes
799

hi

whatz ur exact requirement?..Whatz the problm in using ALV??

Cheers,

Hakim

Read only

0 Likes
800

But with 150 fields, without the ALV you will probably exceed the maximum allowable "line-size" limit

Read only

0 Likes
799

Hmm... that is a valid point, Yiannis .... I might run into that problem...

Well, currently I've just downloaded the data to an excel...

Still for interest sake... There has to be a way to display the fields without listing them all out... If someone knows it please let me know...

Thanks.

> But with 150 fields, without the ALV you will

> probably exceed the maximum allowable "line-size"

> limit

Read only

Former Member
0 Likes
799

you can use table control in module pool programming to display data or can use custom control text editor to display data.

regards

shiba dutta

Read only

Former Member
0 Likes
799

You can define a table control and display the data in that.

Sujatha.