‎2013 Oct 11 3:57 PM
Dear Experts
1.If I run a report in foreground and downlaod to excel file, I am able to save it without any issue
2.If i am schecduling the programe in background and saving in spool, then spool gets overlapped which means the number of fields comes to second row
I want to download the spool in excel file without overlapping fields,
I understand that this is happening because of large number of columns i have but is there any way if i can see the spools without overlapping.
I read through similar discussions here where users faced similar problem but i did not find a resolution to it.
Thanks
‎2013 Oct 11 4:24 PM
Did you checked the line size in the report ?
Also check in spad the no. of columns to display in spool.
There should be some oss note too...
Hope it helps
Thanks
Bhanu
‎2013 Oct 11 7:13 PM
Hey,
I had a similar problem with a spool list. For a report I used the function 'REUSE_ALV_GRID_DISPLAY'. In normal program run, the list look fine. But in Backround the spool list fields were overlapping. The reason was, that I declared the fieldcatalog by myself and I used in it the field 'tabname'. But for the list I declare a own internal structure (no ddic structure). So I think in this case the spool program have problems with the declaration of the output list.
CLEAR ls_fieldcat .
ls_fieldcat-fieldname = 'PARTNER'.
ls_fieldcat-tabname = 'BUT000'. <---- This was the problem
ls_fieldcat-outputlen = '20'.
ls_fieldcat-no_out = 'X'.
ls_fieldcat-no_zero = 'X'.
APPEND ls_fieldcat TO gt_fieldcat .
I delete this field in the coding and the spoollist get out without overlapping fields.
HTH
Myriam
‎2022 Apr 14 10:32 AM