<?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: Reading data from Spool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-data-from-spool/m-p/5920304#M1331376</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Sarath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The row_pos col_pos properties in fieldcat can be used for this. u can set the row_pos as 1 for first 15 columns and 2 for the rest.&lt;/P&gt;&lt;P&gt;In spool u see the list in two lines for each line.. that shud fit in the constrained size of 255 also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U may give it a try and it shall work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jul 2009 13:45:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-17T13:45:40Z</dc:date>
    <item>
      <title>Reading data from Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-data-from-spool/m-p/5920301#M1331373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to read data from spool. I have used few function modules but those function modules do not return the complete data in the spool. The number of fields in the output is 44 but I receive only 30 fields from the spool. in SP01 if I choose the (Display in Maximum Width) I can download the full data. But is there any FM that can help me....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sarath.C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 06:11:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-data-from-spool/m-p/5920301#M1331373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T06:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Reading data from Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-data-from-spool/m-p/5920302#M1331374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think You can read data only upto 255 charecters..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 06:28:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-data-from-spool/m-p/5920302#M1331374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T06:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Reading data from Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-data-from-spool/m-p/5920303#M1331375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sarath in addition to that u can do this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lets say  ur report is ALV and it contains 44 fields.. u said only 30 are visible &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;out of the 44 fields say 14 fields are primary keys..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now save two layouts one layout containing 14 primary keys and 15 non primary keys..  other layout containing 14 primary fields and the remaining 15 non primary fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now. if you run report with layput 1 you can see the o/p with 29 fields out of which 14 are primary and 15 are non primary...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if you run report with layput 2 you can see the o/p with 29 fields out of which 14 are primary and 15 remaining  non primaryfields &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can schedule bo  the reports in background..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read both the spools ..  now both spools have primary keys in common...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now.. read 2nd internal table with primary kesy of 1st internal table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 10:24:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-data-from-spool/m-p/5920303#M1331375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T10:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Reading data from Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-data-from-spool/m-p/5920304#M1331376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Sarath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The row_pos col_pos properties in fieldcat can be used for this. u can set the row_pos as 1 for first 15 columns and 2 for the rest.&lt;/P&gt;&lt;P&gt;In spool u see the list in two lines for each line.. that shud fit in the constrained size of 255 also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U may give it a try and it shall work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 13:45:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-data-from-spool/m-p/5920304#M1331376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T13:45:40Z</dc:date>
    </item>
  </channel>
</rss>

