<?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 Run time error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3855399#M926778</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;I am getting a run time error like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You attempted to access an unassigned field symbol&lt;/P&gt;&lt;P&gt;(data segment 93).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This error may occur for any of the following reasons:&lt;/P&gt;&lt;P&gt;- You address a typed field symbol before it is set using ASSIGN&lt;/P&gt;&lt;P&gt;- You address a field symbol that points to a line in an internal table&lt;/P&gt;&lt;P&gt;  that has been deleted&lt;/P&gt;&lt;P&gt;- You address a field symbol that had previously been reset using&lt;/P&gt;&lt;P&gt;  UNASSIGN, or that pointed to a local field that no longer exists&lt;/P&gt;&lt;P&gt;- You address a global function interface parameter, even&lt;/P&gt;&lt;P&gt;  though the relevant function module is not active,&lt;/P&gt;&lt;P&gt;  that is it is not in the list of active calls. You can get the list&lt;/P&gt;&lt;P&gt;  of active calls from the this short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think its coming the following are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM data_retrieve USING lt_vendor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT lt_vendor INTO wa_vendor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wa_output-name1 = wa_vendor-name1.&lt;/P&gt;&lt;P&gt;    wa_output-duedate = wa_vendor-zfbdt + wa_vendor-zterm.&lt;/P&gt;&lt;P&gt;    delay = wa_output-duedate - p_audat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF delay LE 30.&lt;/P&gt;&lt;P&gt;      wa_output-days30 = wa_vendor-dmbtr + wa_vendor-mwsts.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF  delay GE 31 AND delay LE 60.&lt;/P&gt;&lt;P&gt;      wa_output-days60 = wa_vendor-dmbtr + wa_vendor-mwsts.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF delay GE 61 AND delay LE 90.&lt;/P&gt;&lt;P&gt;      wa_output-days90 = wa_vendor-dmbtr + wa_vendor-mwsts.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF delay GE 91 AND delay LE 180.&lt;/P&gt;&lt;P&gt;      wa_output-days180 = wa_vendor-dmbtr + wa_vendor-mwsts.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF delay GE 180.&lt;/P&gt;&lt;P&gt;      wa_output-days = wa_vendor-dmbtr + wa_vendor-mwsts.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND wa_output TO lt_output.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the debugger i can see data is coming into all the tables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 May 2008 21:22:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-14T21:22:19Z</dc:date>
    <item>
      <title>Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3855399#M926778</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;I am getting a run time error like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You attempted to access an unassigned field symbol&lt;/P&gt;&lt;P&gt;(data segment 93).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This error may occur for any of the following reasons:&lt;/P&gt;&lt;P&gt;- You address a typed field symbol before it is set using ASSIGN&lt;/P&gt;&lt;P&gt;- You address a field symbol that points to a line in an internal table&lt;/P&gt;&lt;P&gt;  that has been deleted&lt;/P&gt;&lt;P&gt;- You address a field symbol that had previously been reset using&lt;/P&gt;&lt;P&gt;  UNASSIGN, or that pointed to a local field that no longer exists&lt;/P&gt;&lt;P&gt;- You address a global function interface parameter, even&lt;/P&gt;&lt;P&gt;  though the relevant function module is not active,&lt;/P&gt;&lt;P&gt;  that is it is not in the list of active calls. You can get the list&lt;/P&gt;&lt;P&gt;  of active calls from the this short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think its coming the following are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM data_retrieve USING lt_vendor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT lt_vendor INTO wa_vendor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wa_output-name1 = wa_vendor-name1.&lt;/P&gt;&lt;P&gt;    wa_output-duedate = wa_vendor-zfbdt + wa_vendor-zterm.&lt;/P&gt;&lt;P&gt;    delay = wa_output-duedate - p_audat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF delay LE 30.&lt;/P&gt;&lt;P&gt;      wa_output-days30 = wa_vendor-dmbtr + wa_vendor-mwsts.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF  delay GE 31 AND delay LE 60.&lt;/P&gt;&lt;P&gt;      wa_output-days60 = wa_vendor-dmbtr + wa_vendor-mwsts.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF delay GE 61 AND delay LE 90.&lt;/P&gt;&lt;P&gt;      wa_output-days90 = wa_vendor-dmbtr + wa_vendor-mwsts.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF delay GE 91 AND delay LE 180.&lt;/P&gt;&lt;P&gt;      wa_output-days180 = wa_vendor-dmbtr + wa_vendor-mwsts.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF delay GE 180.&lt;/P&gt;&lt;P&gt;      wa_output-days = wa_vendor-dmbtr + wa_vendor-mwsts.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND wa_output TO lt_output.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the debugger i can see data is coming into all the tables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 21:22:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3855399#M926778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T21:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3855400#M926779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;somewhere in your coding you are accessing a field symbols which has not yet been assigned!! can't see it in the coding your are giving, but that would be the problem!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 21:28:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3855400#M926779</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-14T21:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3855401#M926780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Search for all of Fileds symbols and before use them, make the follow check:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If &amp;lt;&amp;gt; is assigned.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;your code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;skip this code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alexandre&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 21:41:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3855401#M926780</guid>
      <dc:creator>alexandre_docarmorocha</dc:creator>
      <dc:date>2008-05-14T21:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3855402#M926781</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; Are you using REUSE_ALV_GRID_DISPALY?If so,then check the field catalog internale is having a proper field names.If the field name is mistyped in field catelog,then this kind of unassigend fieldsymbol dump will come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vigneswaran S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 22:06:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3855402#M926781</guid>
      <dc:creator>former_member491305</dc:creator>
      <dc:date>2008-05-14T22:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3855403#M926782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There you go vigneswaran. You are correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the fieldcatalog I have given field name in small letters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Vigneswaran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 23:25:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3855403#M926782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T23:25:44Z</dc:date>
    </item>
  </channel>
</rss>

