‎2007 Jan 30 9:54 PM
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.
‎2007 Jan 30 10:50 PM
But with 150 fields, without the ALV you will probably exceed the maximum allowable "line-size" limit
‎2007 Jan 30 10:07 PM
You need not have to individually display the fields. You can just say:
WRITE: itab.
Thanks,
Santosh
‎2007 Jan 31 1:05 AM
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
‎2007 Jan 30 10:21 PM
hi
whatz ur exact requirement?..Whatz the problm in using ALV??
Cheers,
Hakim
‎2007 Jan 30 10:50 PM
But with 150 fields, without the ALV you will probably exceed the maximum allowable "line-size" limit
‎2007 Jan 31 1:11 AM
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
‎2007 Jan 31 4:09 AM
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
‎2007 Jan 31 4:13 AM
You can define a table control and display the data in that.
Sujatha.