<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Spools Overlapping in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/spools-overlapping/m-p/9816915#M1782046</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you checked the line size in the report ?&lt;/P&gt;&lt;P&gt;Also check in spad the no. of columns to display in spool.&lt;/P&gt;&lt;P&gt;There should be some oss note too...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bhanu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Oct 2013 15:24:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-10-11T15:24:53Z</dc:date>
    <item>
      <title>Spools Overlapping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spools-overlapping/m-p/9816914#M1782045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts&lt;/P&gt;&lt;P&gt; &lt;BR /&gt; &lt;BR /&gt;1.If I run a report in foreground and downlaod to excel file, I am able to save it without any issue&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;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&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;I want to download the spool in excel file without overlapping fields, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I read through similar discussions here where users faced similar problem but i did not find a resolution to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 14:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spools-overlapping/m-p/9816914#M1782045</guid>
      <dc:creator>former_member862163</dc:creator>
      <dc:date>2013-10-11T14:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Spools Overlapping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spools-overlapping/m-p/9816915#M1782046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you checked the line size in the report ?&lt;/P&gt;&lt;P&gt;Also check in spad the no. of columns to display in spool.&lt;/P&gt;&lt;P&gt;There should be some oss note too...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bhanu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 15:24:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spools-overlapping/m-p/9816915#M1782046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-10-11T15:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Spools Overlapping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spools-overlapping/m-p/9816916#M1782047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt; CLEAR ls_fieldcat .&lt;/P&gt;&lt;P&gt; ls_fieldcat-fieldname&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'PARTNER'.&lt;/P&gt;&lt;P&gt; ls_fieldcat-tabname&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'BUT000'. &amp;lt;---- This was the problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ls_fieldcat-outputlen&amp;nbsp;&amp;nbsp;&amp;nbsp; = '20'.&lt;/P&gt;&lt;P&gt;&amp;nbsp; ls_fieldcat-no_out&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'X'.&lt;/P&gt;&lt;P&gt;&amp;nbsp; ls_fieldcat-no_zero&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'X'.&lt;/P&gt;&lt;P&gt; APPEND ls_fieldcat TO gt_fieldcat .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I delete this field in the coding and the spoollist get out without overlapping fields.&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Myriam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 18:13:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spools-overlapping/m-p/9816916#M1782047</guid>
      <dc:creator>myriam_bail</dc:creator>
      <dc:date>2013-10-11T18:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Spools Overlapping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spools-overlapping/m-p/9816917#M1782048</link>
      <description>&lt;P&gt;Hello, Thank you for your solution. It is working for me.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 09:32:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spools-overlapping/m-p/9816917#M1782048</guid>
      <dc:creator>former_member1231453</dc:creator>
      <dc:date>2022-04-14T09:32:06Z</dc:date>
    </item>
  </channel>
</rss>

