<?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: GETWA_NOT_ASSIGNED Error. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315096#M1225358</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the common error which occurs due to field symbols.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Mar 2009 09:01:12 GMT</pubDate>
    <dc:creator>GauthamV</dc:creator>
    <dc:date>2009-03-12T09:01:12Z</dc:date>
    <item>
      <title>GETWA_NOT_ASSIGNED Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315092#M1225354</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;I am trying display the output as ALV with also the checkbox in each rows, which will be the first column in the display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i am geeting an error as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  GETWA_NOT_ASSIGNED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Short text&lt;/P&gt;&lt;P&gt;    Field symbol has not yet been assigned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happened?&lt;/P&gt;&lt;P&gt;    Error in the ABAP Application Program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    The current ABAP program "SAPLSLVC" had to be terminated because&lt;/P&gt;&lt;P&gt;    come across a statement that unfortunately cannot be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error analysis&lt;/P&gt;&lt;P&gt;    You attempted to access an unassigned field symbol&lt;/P&gt;&lt;P&gt;    (data segment 32821).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    This error may occur if&lt;/P&gt;&lt;P&gt;    - You address a typed field symbol before it has been set with&lt;/P&gt;&lt;P&gt;      ASSIGN&lt;/P&gt;&lt;P&gt;    - You address a field symbol that pointed to the line of an&lt;/P&gt;&lt;P&gt;      internal table that was deleted&lt;/P&gt;&lt;P&gt;    - You address a field symbol that was previously reset using&lt;/P&gt;&lt;P&gt;      UNASSIGN or that pointed to a local field that no&lt;/P&gt;&lt;P&gt;      longer exists&lt;/P&gt;&lt;P&gt;    - You address a global function interface, although the&lt;/P&gt;&lt;P&gt;      respective function module is not active - that is, is&lt;/P&gt;&lt;P&gt;      not in the list of active calls. The list of active calls&lt;/P&gt;&lt;P&gt;      can be taken from this short dump.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 08:40:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315092#M1225354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T08:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: GETWA_NOT_ASSIGNED Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315093#M1225355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kindly check the fieldcatalog table in debugging mode.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 08:41:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315093#M1225355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T08:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: GETWA_NOT_ASSIGNED Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315094#M1225356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Poonam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check whether the field symbol you are using has a preceded assign statement. If you use a field symbol without assigning it you will get this run time error. Kindly check it and if the problem persists kindly paste ur code here.&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;Sakkthiss.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 08:45:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315094#M1225356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T08:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: GETWA_NOT_ASSIGNED Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315095#M1225357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check SCN: this is a coomn error and you will find lot of threads on this,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 08:54:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315095#M1225357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T08:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: GETWA_NOT_ASSIGNED Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315096#M1225358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the common error which occurs due to field symbols.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 09:01:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315096#M1225358</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-03-12T09:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: GETWA_NOT_ASSIGNED Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315097#M1225359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, &lt;/P&gt;&lt;P&gt;its working fine if i dont include the checkbox column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as checkbox is not mentioned in the internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 09:10:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315097#M1225359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T09:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: GETWA_NOT_ASSIGNED Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315098#M1225360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its working, so what about closing the thread?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 09:18:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315098#M1225360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T09:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: GETWA_NOT_ASSIGNED Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315099#M1225361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you, or do you NOT need the checkbox column? If you need it and don't know how to do it, have a look at sample program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bcalv_edit_05&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 09:24:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getwa-not-assigned-error/m-p/5315099#M1225361</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-03-12T09:24:09Z</dc:date>
    </item>
  </channel>
</rss>

