<?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 Error when using FM REUSE_ALV_GRID in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629255#M1090252</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When I'm trying to display an ALV I am receiving an error as you can see below.&lt;/P&gt;&lt;P&gt;How can I solve the problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal table "\FUNCTION=K_KKB_FIELDCAT_MERGE\DATA=L_ABAP_SOURCE[]" is 72&lt;/P&gt;&lt;P&gt; characters wide. The program line is&lt;/P&gt;&lt;P&gt;73 characters wide.&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;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Oct 2008 12:52:08 GMT</pubDate>
    <dc:creator>stefan_kolev4</dc:creator>
    <dc:date>2008-10-15T12:52:08Z</dc:date>
    <item>
      <title>Error when using FM REUSE_ALV_GRID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629255#M1090252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When I'm trying to display an ALV I am receiving an error as you can see below.&lt;/P&gt;&lt;P&gt;How can I solve the problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal table "\FUNCTION=K_KKB_FIELDCAT_MERGE\DATA=L_ABAP_SOURCE[]" is 72&lt;/P&gt;&lt;P&gt; characters wide. The program line is&lt;/P&gt;&lt;P&gt;73 characters wide.&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;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 12:52:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629255#M1090252</guid>
      <dc:creator>stefan_kolev4</dc:creator>
      <dc:date>2008-10-15T12:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: Error when using FM REUSE_ALV_GRID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629256#M1090253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error is famous one. If you are using the fieldcatalog merge function , you will get the error. if the source code line length exceeds 72 chars you get this error.&lt;/P&gt;&lt;P&gt;you can remove the error by changing the source code, see the code where the line size exceeds more than 72 chars, and reduce it to 72 or less.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:- &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;read table itab with key matnr = itab-matnr posnr = itab-posnr vbeln = itab-vbeln etc....&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;convert that to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;read table itab with key matnr = itab-matnr
                             posnr = itab-posnr 
                             vbeln = itab-vbeln etc....
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 12:56:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629256#M1090253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T12:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error when using FM REUSE_ALV_GRID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629257#M1090254</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;Even I faced the same error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to SE 38, open your program in change mode. Goto Menu UTILITIES&amp;gt;SETTINGS&amp;gt;ABAP EDITOR&amp;gt;EDITOR&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check that you must be having old editor option button seleted. In the bottom of the same tab page you have a check box saying &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Downward-Comp. Line length(72). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just check that checkbox and come back to your code. Compile your program once again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mayank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 12:59:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629257#M1090254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T12:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error when using FM REUSE_ALV_GRID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629258#M1090255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Stefan Kolev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to SE38 inside u r program in the MENU bar u will find UTILITIES under that option u will find setting in the setting click the check box compatible length is 72&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Utilities setting  click the check box.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 13:01:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629258#M1090255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T13:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Error when using FM REUSE_ALV_GRID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629259#M1090256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 13:12:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629259#M1090256</guid>
      <dc:creator>stefan_kolev4</dc:creator>
      <dc:date>2008-10-15T13:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error when using FM REUSE_ALV_GRID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629260#M1090257</link>
      <description>&lt;P&gt;Hi VIjay, Thanks . This solved the issue.&lt;/P&gt;</description>
      <pubDate>Sat, 29 Oct 2022 17:56:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-using-fm-reuse-alv-grid/m-p/4629260#M1090257</guid>
      <dc:creator>former_member683485</dc:creator>
      <dc:date>2022-10-29T17:56:58Z</dc:date>
    </item>
  </channel>
</rss>

