<?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: Source Code Longer Than Table --Dump. Wht to do? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/source-code-longer-than-table-dump-wht-to-do/m-p/2097310#M436798</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;in order to be sure, open the abap editor and click Utilities-&amp;gt;Settings and check Downward-Compat. Line Length (72). Then go to SAPMZMM_PRINT and do a pretty print or  just activate it. This should be ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kostas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Apr 2007 07:44:32 GMT</pubDate>
    <dc:creator>kostas_tsioubris</dc:creator>
    <dc:date>2007-04-11T07:44:32Z</dc:date>
    <item>
      <title>Source Code Longer Than Table --Dump. Wht to do?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/source-code-longer-than-table-dump-wht-to-do/m-p/2097308#M436796</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 created a Z-subrouitne pool and coded print program with Entry rountines for smartforms in it. When I tried to maintian the output control, stating the name of program and entry rountine of it, it is throwing dump while saving.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is saying: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The ABAP source code lines are longer than the width of the internal&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;The detail is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; An exception occurred. This exception is dealt with in more detail below        &lt;/P&gt;&lt;P&gt; . The exception, which is assigned to the class 'CX_SY_READ_SRC_LINE_TOO_LONG', &lt;/P&gt;&lt;P&gt;  was neither                                                                    &lt;/P&gt;&lt;P&gt; caught nor passed along using a RAISING clause, in the procedure                &lt;/P&gt;&lt;P&gt;  "NAST_FORM_EXISTENCE_CHECK" "(FUNCTION)"                                       &lt;/P&gt;&lt;P&gt; .                                                                                &lt;/P&gt;&lt;P&gt;Since the caller of the procedure could not have expected this exception        &lt;/P&gt;&lt;P&gt;  to occur, the running program was terminated.                                  &lt;/P&gt;&lt;P&gt; The reason for the exception is:                                                &lt;/P&gt;&lt;P&gt; You tried to read the program "SAPMZMM_PRINT" from the database. The READ       &lt;/P&gt;&lt;P&gt;  REPORT                                                                         &lt;/P&gt;&lt;P&gt; statement allows you to copy a program's source code into an internal           &lt;/P&gt;&lt;P&gt; table. The lines of source code must not be longer than the width of the        &lt;/P&gt;&lt;P&gt;  internal table. &amp;lt;b&amp;gt;The internal table is 72 characters wide. The source           &lt;/P&gt;&lt;P&gt; code line is 87 wide.    &amp;lt;/b&amp;gt;                                                       &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I kept all the line (and re adjusted the longer one) within 72 char. the why am I  facing this error? please suggest how to correct it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards point guranteed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anid.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 07:33:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/source-code-longer-than-table-dump-wht-to-do/m-p/2097308#M436796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T07:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Source Code Longer Than Table --Dump. Wht to do?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/source-code-longer-than-table-dump-wht-to-do/m-p/2097309#M436797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you adjust the Comment lines Also? If not do that and execute the program. Comment lines are also treated as a part of the source, eventhough they are not executable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 07:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/source-code-longer-than-table-dump-wht-to-do/m-p/2097309#M436797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T07:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Source Code Longer Than Table --Dump. Wht to do?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/source-code-longer-than-table-dump-wht-to-do/m-p/2097310#M436798</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;in order to be sure, open the abap editor and click Utilities-&amp;gt;Settings and check Downward-Compat. Line Length (72). Then go to SAPMZMM_PRINT and do a pretty print or  just activate it. This should be ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kostas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 07:44:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/source-code-longer-than-table-dump-wht-to-do/m-p/2097310#M436798</guid>
      <dc:creator>kostas_tsioubris</dc:creator>
      <dc:date>2007-04-11T07:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Source Code Longer Than Table --Dump. Wht to do?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/source-code-longer-than-table-dump-wht-to-do/m-p/2097311#M436799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx for your suggestion. It worked perfectly. Points Rewarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 09:01:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/source-code-longer-than-table-dump-wht-to-do/m-p/2097311#M436799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T09:01:45Z</dc:date>
    </item>
  </channel>
</rss>

