<?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 Extended program check warining in ECC6 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544580#M1752332</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN's ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting a warning 'Do not use fields , field symbols (ITAB) globally'&amp;nbsp;&amp;nbsp; ...i want to clear this warning with out using the Pseudo comments&amp;nbsp; like #EC NEEDED&amp;nbsp;&amp;nbsp; if i use these pseudo comments it will show warning in hidden check........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i declare my ITAB as like....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_final,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end of ty_final.&lt;/P&gt;&lt;P&gt;data: itab type table of ty_final.&amp;nbsp; ( Warning)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i clear this warning with out using pseudo comments .......any one help ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Suba.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Jun 2013 03:45:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-06-12T03:45:25Z</dc:date>
    <item>
      <title>Extended program check warining in ECC6</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544580#M1752332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN's ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting a warning 'Do not use fields , field symbols (ITAB) globally'&amp;nbsp;&amp;nbsp; ...i want to clear this warning with out using the Pseudo comments&amp;nbsp; like #EC NEEDED&amp;nbsp;&amp;nbsp; if i use these pseudo comments it will show warning in hidden check........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i declare my ITAB as like....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_final,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end of ty_final.&lt;/P&gt;&lt;P&gt;data: itab type table of ty_final.&amp;nbsp; ( Warning)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i clear this warning with out using pseudo comments .......any one help ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Suba.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 03:45:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544580#M1752332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-12T03:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Extended program check warining in ECC6</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544581#M1752333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will get this message whenever you use globally defined internal tables or field symbols. Generally, you should have as little globally defined data as possible - only the essentials. To be rid of the message entirely, you need to encapsulate all operations involving the internal table (and ITAB is a really bad name for an internal table - choose something meaningful). You could for example, hand all the processing involving the internal table to a function module, or a global or locally defined class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My executable programs usually only have a few globally defined references to classes. Everything else is handled within the class.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 04:53:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544581#M1752333</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2013-06-12T04:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Extended program check warining in ECC6</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544582#M1752334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suba,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have declare the itab in TOP include or inside the modules you will get such kind of warnings.&lt;/P&gt;&lt;P&gt;Try to declare the ITAB inside form endform so that you can avoid such kind of warnings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Shyja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 04:58:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544582#M1752334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-12T04:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Extended program check warining in ECC6</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544583#M1752335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Analyze first if you really need to define your table ITAB globally? If it is used only inside one form routine, then declare the structure their only, don't define it globally (for example in TOP include).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case you are using it at couple of places and need to define it globally, then you can approach as per Metthew suggestion. Hope it helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 05:30:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544583#M1752335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-12T05:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Extended program check warining in ECC6</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544584#M1752336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matthew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp; for your valuable suggestion..,but in my program i am not using the OOPs (Ex:classes ) i used the general abap code ...i need some variables globaaly so i declared those in starting of the program...in ecc5 those are not shown warnings but when i check in ecc6 these are showing as warnings ........any other way to clear these earnings....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Suba. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 07:07:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544584#M1752336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-12T07:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Extended program check warining in ECC6</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544585#M1752337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No. If in ECC6 you declare an internal table or a field symbol outside of form (or local class) in an executable report, then you will get this warning, and must override it with the #EC comment - and explaining why it's being overridden.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only alternative, if you don't want to use classes, is to put your functionality in function modules in a function group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 07:59:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check-warining-in-ecc6/m-p/9544585#M1752337</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2013-06-12T07:59:53Z</dc:date>
    </item>
  </channel>
</rss>

