<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195623#M1002885</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check your internal table declaration...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you declare the internal table fields using LIKE instead of TYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of it_final occurs 0,
          vbeln like vbak-vbeln,
          matnr like vbap-matnr,  "use LIKE instead of type
                
       end of it_final.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jul 2008 04:41:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-23T04:41:35Z</dc:date>
    <item>
      <title>ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195620#M1002882</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;         I have an alv report in which internal table has 114 entries but when i am using function module REUSE_ALV_FIELDCATALOG_MERGE , only 44 fields are copied into the fieldcatalog....can anyone tell me why this is happening?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 04:08:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195620#M1002882</guid>
      <dc:creator>former_member530652</dc:creator>
      <dc:date>2008-07-23T04:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195621#M1002883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the structure you are passing to REUSE_ALV_FIELDCATALOG_MERGE might be having only 44 fields in it.. check the structure you are passing to the FM REUSE_ALV_FIELDCATALOG_MERGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;114 entries are rows...&lt;/P&gt;&lt;P&gt;and 44 fields(columns) Is valid...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 04:31:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195621#M1002883</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-07-23T04:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195622#M1002884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am passing an internal table that has 114 entries but in fieldcatlog only 44 fields are appearing..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 04:40:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195622#M1002884</guid>
      <dc:creator>former_member530652</dc:creator>
      <dc:date>2008-07-23T04:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195623#M1002885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check your internal table declaration...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you declare the internal table fields using LIKE instead of TYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of it_final occurs 0,
          vbeln like vbak-vbeln,
          matnr like vbap-matnr,  "use LIKE instead of type
                
       end of it_final.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 04:41:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195623#M1002885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T04:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195624#M1002886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;114 entries.. what are those 114 data entries.. (number of rows) or Number of fields in the internal table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the structure should be declared using LIKE..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab,&lt;/P&gt;&lt;P&gt;             vbeln LIKE VBAP-VBELN,&lt;/P&gt;&lt;P&gt;             posnr LIKE VBAP-POSNR....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 04:46:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195624#M1002886</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-07-23T04:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195625#M1002887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just read this:&lt;/P&gt;&lt;P&gt;Supports the creation of the field catalog for the ALV function modules based either on a structure or table defined in the ABAP Data Dictionary, or a program-internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program-internal table must either be in a TOP Include or its Include must be specified explicitly in the interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The variant based on a program-internal table should only be used for rapid prototyping since the following restrictions apply:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Performance is affected since the code of the table definition must always be read and interpreted at runtime.&lt;/P&gt;&lt;P&gt;Dictionary references are only considered if the keywords LIKE or INCLUDE STRUCTURE (not TYPE) are used.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If the field catalog contains more than 90 fields, the first 90 fields are output in the list by default whereas the remaining fields are only available in the field selection.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If the field catalog is passed with values, they are merged with the 'automatically' found information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiva Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 04:48:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195625#M1002887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T04:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195626#M1002888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;        I would suggest to creat your own strucutr to include those fields in the output list &amp;amp; simply pass that structure to the FM: REUSE_ALV_FIELDCATALOG_MERGE.This ensures the complete trnasfer of all the fileds defined in your structure without a single miss on any filed... hope this helps!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regars&lt;/P&gt;&lt;P&gt;Ankur.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 11:12:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/4195626#M1002888</guid>
      <dc:creator>ankurgodre</dc:creator>
      <dc:date>2008-07-23T11:12:42Z</dc:date>
    </item>
  </channel>
</rss>

