‎2008 Dec 05 4:35 AM
Hi ,
i have a reuirement where in I have an ALV Report which will display 38 columns whose length is more than 255 characters.
But the program as it is being executed in background it gets displayed in LIST FORMAT
which is showing only 12 columns in SPOOL .
My requirement is i need to display all the 38 columns.
Is there any setting i need to change where in i can get all the columns.
‎2008 Dec 05 4:50 AM
goto---spad t.code
goto page format----create the page format as per ur need width(more then 255)
and assign that page format to ur output device that ur using (ex.lp01).......
‎2008 Dec 05 5:01 AM
Hi
Have you given line size in you report? if not, please give the same and check
Thanks
Shiva
‎2008 Dec 05 5:09 AM
use the following FM
CALL FUNCTION 'RSPO_RETURN_SPOOLJOB'
EXPORTING
rqident = spoolid
first_line = 1
last_line = 0
desired_type = ' '
IMPORTING
real_type = real_type
sp_lang = sp_lang
TABLES
buffer = so_table
EXCEPTIONS
no_such_job = 1
job_contains_no_data = 2
selection_empty = 3
no_permission = 4
can_not_access = 5
read_error = 6
type_no_match = 7
OTHERS = 8.