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

Spools Overlapping

0 Likes
1,001

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

3 REPLIES 3
Read only

Former Member
0 Likes
711

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

Read only

myriam_bail
Explorer
0 Likes
711

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

Read only

0 Likes
711

Hello, Thank you for your solution. It is working for me.