<?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: How to correct errors in EPC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-correct-errors-in-epc/m-p/3594531#M865513</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;Field L_CHAR is not referenced statically in the program &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This mean that l_char is not used in the program.  You have to remove it from the declarations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No read access to table T_MAKT[] &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This mean that You are not processing t_makt table.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No read access to field string WA_PROD_ORD &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are not processing the string wa_prod_ord.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No read access to field T_BDTER &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are not using the field t_bdter in the processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No read access to field L_DATUB &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED)&lt;/P&gt;&lt;P&gt;you are not using the field l_datub in the processing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To remove all these EPC errors by removing their declarations in the program. or can be hidden by using #EC NEEDED at the declaraction of each of field or table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 22 Mar 2008 08:46:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-22T08:46:58Z</dc:date>
    <item>
      <title>How to correct errors in EPC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-correct-errors-in-epc/m-p/3594530#M865512</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; &lt;/P&gt;&lt;P&gt;when i run EPC i am placing errors as below can any one help me regarding this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Messages for Field Attributes(Warnings)                                                                                &lt;/P&gt;&lt;P&gt;Program:  ZCA0R_ORDER_COMPONENTS  Row:   1819                             &lt;/P&gt;&lt;P&gt;Field L_CHAR is not referenced statically in the program                        &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED)                                                                                &lt;/P&gt;&lt;P&gt;The program line is as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     FORM f4_on_chara_vals  USING    p_fld TYPE any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          DATA: l_t_ret_tab   LIKE ddshretval OCCURS 0 WITH HEADER LINE ,&lt;/P&gt;&lt;P&gt;                      l_class       LIKE klah-class                           ,&lt;/P&gt;&lt;P&gt;  line 1819        l_char LIKE cabnt-atbez.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Program:  ZCA0R_ORDER_COMPONENTS  Row:    251                             &lt;/P&gt;&lt;P&gt;No read access to table T_MAKT[]                                                &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED)                                    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program line is as below&lt;/P&gt;&lt;P&gt;                                                                                line no 251:   t_makt LIKE STANDARD TABLE OF wa_makt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Program:  ZCA0R_ORDER_COMPONENTS  Row:    292                             &lt;/P&gt;&lt;P&gt;No read access to field string WA_PROD_ORD                                      &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED)                                                                                &lt;/P&gt;&lt;P&gt;line no 292 :  wa_prod_ord LIKE LINE OF t_prod_ord,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Program:  ZCA0R_ORDER_COMPONENTS  Row:    354                             &lt;/P&gt;&lt;P&gt;No read access to field T_BDTER                                                 &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED)                                    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      t_bdter TYPE scal-date,&lt;/P&gt;&lt;P&gt;                                                                                Program:  ZCA0R_ORDER_COMPONENTS  Row:   1162                             &lt;/P&gt;&lt;P&gt;No read access to field L_DATUB                                                 &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Mar 2008 08:33:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-correct-errors-in-epc/m-p/3594530#M865512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-22T08:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to correct errors in EPC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-correct-errors-in-epc/m-p/3594531#M865513</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;Field L_CHAR is not referenced statically in the program &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This mean that l_char is not used in the program.  You have to remove it from the declarations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No read access to table T_MAKT[] &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This mean that You are not processing t_makt table.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No read access to field string WA_PROD_ORD &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are not processing the string wa_prod_ord.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No read access to field T_BDTER &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are not using the field t_bdter in the processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No read access to field L_DATUB &lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC NEEDED)&lt;/P&gt;&lt;P&gt;you are not using the field l_datub in the processing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To remove all these EPC errors by removing their declarations in the program. or can be hidden by using #EC NEEDED at the declaraction of each of field or table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Mar 2008 08:46:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-correct-errors-in-epc/m-p/3594531#M865513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-22T08:46:58Z</dc:date>
    </item>
  </channel>
</rss>

