<?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: No read access to field string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-read-access-to-field-string/m-p/2122764#M445144</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;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF addr,
         adrnr TYPE adrc-addrnumber,
       END OF addr.
 
DATA:  i_addr    TYPE addr,
       wa_i_addr TYPE addr.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Apr 2007 15:30:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-16T15:30:46Z</dc:date>
    <item>
      <title>No read access to field string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-read-access-to-field-string/m-p/2122763#M445143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES:  BEGIN OF addr,
        adrnr TYPE adrc-addrnumber,
        END OF addr.

        i_addr               TYPE TABLE OF addr,

        wa_i_addr               TYPE addr,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After executing extended program check I get the following. What does it mean and how do I fix this. &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;No read access to field string WA_I_ADDR&lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 15:21:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-read-access-to-field-string/m-p/2122763#M445143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T15:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: No read access to field string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-read-access-to-field-string/m-p/2122764#M445144</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;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF addr,
         adrnr TYPE adrc-addrnumber,
       END OF addr.
 
DATA:  i_addr    TYPE addr,
       wa_i_addr TYPE addr.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 15:30:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-read-access-to-field-string/m-p/2122764#M445144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T15:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: No read access to field string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-read-access-to-field-string/m-p/2122765#M445145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically what that means (which by the way is just a warning) is that you declared this work area and moving values into it but you are not using that work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you use a statement like below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_addr INTO wa_i_addr.&lt;/P&gt;&lt;P&gt;something = wa_i_addr-somefield.&lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will not see this message in extended program check. If you don't need this work area for any purpose, then you can just ignore this warning message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 15:32:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-read-access-to-field-string/m-p/2122765#M445145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T15:32:38Z</dc:date>
    </item>
  </channel>
</rss>

