<?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: ALV Doubt in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158053#M456195</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The only difference is that one is field catalog internal table and other one is structure of the field catalog.&lt;/P&gt;&lt;P&gt;SLIS_T_FIELDCAT_ALV --&amp;gt; field catalog internal table&lt;/P&gt;&lt;P&gt;SLIS_FIELDCAT_ALV --&amp;gt; structure of field catlog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Apr 2007 12:52:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-23T12:52:59Z</dc:date>
    <item>
      <title>ALV Doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158049#M456191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what d/w SLIS_FIELDCAT_ALV , SLIS_T_FIELDCAT_ALV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 12:45:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158049#M456191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T12:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158050#M456192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First one is a Structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second one is a TABLE.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 12:52:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158050#M456192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T12:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158051#M456193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In SLIS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of slis_fieldcat_alv.&lt;/P&gt;&lt;P&gt;          include type slis_fieldcat_main.&lt;/P&gt;&lt;P&gt;          include type slis_fieldcat_alv_spec.&lt;/P&gt;&lt;P&gt;types: end of slis_fieldcat_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;types: slis_t_fieldcat_alv type slis_fieldcat_alv occurs 1.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 12:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158051#M456193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T12:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158052#M456194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is an internal table :  &amp;lt;b&amp;gt;SLIS_T_FIELDCAT_ALV&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is not an internal table : &amp;lt;b&amp;gt;SLIS_FIELDCAT_ALV&amp;lt;/b&amp;gt; (with out header line)&lt;/P&gt;&lt;P&gt;Field catalog containing descriptions of the list output fields (usually a subset of the internal output table fields).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;A field catalog is required for every ALV list output.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field catalog for the output table is built-up in the caller's coding. The build-up can be completely or partially automated by calling the REUSE_ALV_FIELDCATALOG_MERGE module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &amp;lt;b&amp;gt;slis_fieldcat_alv&amp;lt;/b&amp;gt;.contains...check in ABAP program&lt;/P&gt;&lt;P&gt;types: begin of slis_fieldcat_alv.&lt;/P&gt;&lt;P&gt;include type slis_fieldcat_main.&lt;/P&gt;&lt;P&gt;include type slis_fieldcat_alv_spec.&lt;/P&gt;&lt;P&gt;types: end of slis_fieldcat_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: slis_t_fieldcat_alv type slis_fieldcat_alv occurs 1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if it helps u &lt;/P&gt;&lt;P&gt;Vijay Pawar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 12:52:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158052#M456194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T12:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158053#M456195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The only difference is that one is field catalog internal table and other one is structure of the field catalog.&lt;/P&gt;&lt;P&gt;SLIS_T_FIELDCAT_ALV --&amp;gt; field catalog internal table&lt;/P&gt;&lt;P&gt;SLIS_FIELDCAT_ALV --&amp;gt; structure of field catlog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 12:52:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158053#M456195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T12:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158054#M456196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SLIS_FIELDCAT_ALV , SLIS_T_FIELDCAT_ALV..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the first one the structure of fieldcat gets assigned to the internal table n in the second one the table is getting assigned...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u feel u have got ur answer dont forget to reward with points. regards,&lt;/P&gt;&lt;P&gt;madhuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2007 03:43:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-doubt/m-p/2158054#M456196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-24T03:43:56Z</dc:date>
    </item>
  </channel>
</rss>

