<?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: Problem while using Field-Symbols in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274415#M1019789</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mukesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Thanks for the reply. Everything is fine with Field-Catalog.And before looping I am sorting both the tables.But I don't understand why &amp;lt;f_itab1&amp;gt; is getting assigned and it's not happening with &amp;lt;f_itab2&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Aug 2008 11:09:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-13T11:09:42Z</dc:date>
    <item>
      <title>Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274412#M1019786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         I am using Field-Symbols in my report progm. Though I am assigning the table type to the declared field-symbol, my program is going to dump saying tht "GETWA_NOT_ASSIGNED".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        My Code is as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;f_itab1&amp;gt; TYPE vbak,&lt;/P&gt;&lt;P&gt;               &amp;lt;f_itab2&amp;gt; TYPE vbap.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT it_vbak ASSIGNING &amp;lt;f_itab1&amp;gt;.&lt;/P&gt;&lt;P&gt;      READ TABLE it_vbap ASSIGNING &amp;lt;f_itab2&amp;gt;&lt;/P&gt;&lt;P&gt;                         WITH KEY vbeln = &amp;lt;f_itab1&amp;gt;-ww206.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In debugging mode I see &amp;lt;f_itab1&amp;gt; is assigned but &amp;lt;f_itab2&amp;gt; is not being assigned and getting an error msg as "ERROR: Field symbol &amp;lt;f_itab1&amp;gt;is not yet assigned".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me in fixing the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shano&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 10:58:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274412#M1019786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T10:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274413#M1019787</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;U ll be appending fieldnames of the internal table into fieldcatalog table rite....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check if the &lt;STRONG&gt;field names are correct&lt;/STRONG&gt;(as in output internal table), written in caps in both the field catalog tables......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If ur using sort table check dat also..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;reply for give prob. again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:03:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274413#M1019787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274414#M1019788</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-SYMBOLS: &amp;lt;f_itab1&amp;gt; LIKE line of it_vbak,&lt;/P&gt;&lt;P&gt;&amp;lt;f_itab2&amp;gt; LIKE line of it_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will solve the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohaiyuddin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:06:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274414#M1019788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274415#M1019789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mukesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Thanks for the reply. Everything is fine with Field-Catalog.And before looping I am sorting both the tables.But I don't understand why &amp;lt;f_itab1&amp;gt; is getting assigned and it's not happening with &amp;lt;f_itab2&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:09:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274415#M1019789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274416#M1019790</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;Use&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;f_itab1&amp;gt; TYPE any,&lt;/P&gt;&lt;P&gt;                            &amp;lt;f_itab2&amp;gt; TYPE any.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:10:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274416#M1019790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274417#M1019791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohaiyuddin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         I tried in that way also but still it is the same problem. And one more thing I forgot to add is I am using ECC 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:13:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274417#M1019791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274418#M1019792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Syntavtically your program is correct. The way I see it you must have declared the field symbols wrongly . Send your detailed code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:16:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274418#M1019792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274419#M1019793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        It is giving syntax error when I tried as you mentioned. I tried as below also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;f_itab1&amp;gt; TYPE ANY TABLE,&lt;/P&gt;&lt;P&gt;                           &amp;lt;f_itab2&amp;gt; TYPE ANY TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still it &amp;lt;f_itab2&amp;gt; while using READ is getting assigned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shano&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:17:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274419#M1019793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274420#M1019794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have some doubts on this stmt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;vbeln = &amp;lt;f_itab1&amp;gt;-ww206&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell me whats WW206 field ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be ur READ TABLE is failing &amp;amp; so &amp;lt;f_itab2&amp;gt; is not getting assigned. If u try to use this FS, you will get a dump. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Aug 13, 2008 1:21 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:20:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274420#M1019794</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2008-08-13T11:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274421#M1019795</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 checking sy-subrc after READ TABLE ?&lt;/P&gt;&lt;P&gt;If READ TABLE fails and you are trying to access second field symbol &amp;lt;f_itab2&amp;gt;  it will go to dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohaiyuddin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mohaiyuddin Soniwala on Aug 13, 2008 4:51 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:21:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274421#M1019795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274422#M1019796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Shano,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more thing I want to share with you is, You need to UNASSIGN the field symbol after coming out of loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More or less its like a clear or refresh we use for our internal table and variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:25:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274422#M1019796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274423#M1019797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Sorry, it's actually vbeln.  The code is as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;f_itab1&amp;gt; TYPE vbak,&lt;/P&gt;&lt;P&gt;&amp;lt;f_itab2&amp;gt; TYPE vbap.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Select * from vbak into table it_vbak.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;select * from vbap into table it_vbap.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT it_vbak ASSIGNING &amp;lt;f_itab1&amp;gt;.&lt;/P&gt;&lt;P&gt;READ TABLE it_vbap ASSIGNING &amp;lt;f_itab2&amp;gt;&lt;/P&gt;&lt;P&gt;WITH KEY vbeln = &amp;lt;f_itab1&amp;gt;-vbeln.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shano&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274423#M1019797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274424#M1019798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohaiyuddin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Offcourse I am checking Sy-subrc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:27:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274424#M1019798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274425#M1019799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the obvious, but thought worth mentioning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will be good if you can post complete code. (along with definition of IT_VBAK and IT_VBAP)..The segment you are posting seems correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohaiyuddin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:31:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274425#M1019799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T11:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274426#M1019800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide the definition of ITAB1 &amp;amp; ITAB2. I think ur READ TABLE is failing. Did you check SY-SUBRC, is ur READ TABLE OK?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:40:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274426#M1019800</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2008-08-13T11:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using Field-Symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274427#M1019801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shano,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you should try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop....

  read table it_vbap assigning &amp;lt;f_itab2&amp;gt; with key vbeln = &amp;lt;f_itab1&amp;gt;-ww206.
  if &amp;lt;f_itab2&amp;gt; is assigned.
*  do your stuff here
  endif.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;if you want to react on a not present key in it_vbap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop....

  read table it_vbap assigning &amp;lt;f_itab2&amp;gt; with key vbeln = &amp;lt;f_itab1&amp;gt;-ww206.
  check &amp;lt;f_itab2&amp;gt; is assigned.
* do your stuff here
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;if you just want to skip a loop cycle if the key is not present in it_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ah and don't forget to unassign &amp;lt;f_itab2&amp;gt; after doing your stuff. If you had it assigned in the cycle before and in the current it's not possible to assign it to a new line it keeps the old one and you overwrite the fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Benny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Benjamin Matten on Aug 13, 2008 2:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:53:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-field-symbols/m-p/4274427#M1019801</guid>
      <dc:creator>benjamin_matten</dc:creator>
      <dc:date>2008-08-13T11:53:53Z</dc:date>
    </item>
  </channel>
</rss>

