<?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: Field symbol assignment problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632971#M282356</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually i need to create dynamic table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so even fieldcatalog is dynamic in nature.&lt;/P&gt;&lt;P&gt;when I gave&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;create DATA dref type fieldcat.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;it's giving error&lt;/P&gt;&lt;P&gt;as fieldcatalog is declared as shown below....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: fieldcat         TYPE slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      fieldcat_ln      LIKE LINE OF fieldcat,          "Field catalog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I was coding in ABAP Objects I moved the dynamic field catalog table as shown below....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        it_fieldcatalog = gt_fieldcatalog_tot&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        ep_table = ref&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        generate_subpool_dir_full = 1&lt;/P&gt;&lt;P&gt;        OTHERS = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ASSIGN ref-&amp;gt;* TO &amp;lt;tabx&amp;gt;.&lt;/P&gt;&lt;P&gt;  CREATE DATA dref LIKE LINE OF &amp;lt;tabx&amp;gt; .&lt;/P&gt;&lt;P&gt;  ASSIGN dref-&amp;gt;* TO &amp;lt;fs3&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But If objects are not used how to create&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;create DATA dref type fieldcat.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Oct 2006 09:09:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-11T09:09:30Z</dc:date>
    <item>
      <title>Field symbol assignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632966#M282351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FIELD-SYMBOLS:&amp;lt;fs1&amp;gt; TYPE ANY,&lt;/P&gt;&lt;P&gt;              &amp;lt;fs3&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  fieldcat_ln-fieldname = 'SOD_ID'.&lt;/P&gt;&lt;P&gt;  fieldcat_ln-tabname   = 'IT_DASHBOARD'.&lt;/P&gt;&lt;P&gt;  fieldcat_ln-datatype  = 'CHAR'.&lt;/P&gt;&lt;P&gt;  APPEND fieldcat_ln TO fieldcat.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; APPEND wa_fieldcatalog TO gt_fieldcatalog_tot.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR fieldcat_ln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  fieldcat_ln-fieldname = 'BUSAREA'.&lt;/P&gt;&lt;P&gt;  fieldcat_ln-tabname   = 'IT_JRM'.&lt;/P&gt;&lt;P&gt;  fieldcat_ln-datatype  = 'CHAR'.&lt;/P&gt;&lt;P&gt;  APPEND fieldcat_ln TO fieldcat.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; APPEND wa_fieldcatalog TO gt_fieldcatalog_tot.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR fieldcat_ln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT gt_jrm.&lt;/P&gt;&lt;P&gt;    AT NEW busarea.&lt;/P&gt;&lt;P&gt;      CLEAR lv_field.&lt;/P&gt;&lt;P&gt;      CONCATENATE 'BUSAREA-' gt_jrm-busarea INTO lv_field .&lt;/P&gt;&lt;P&gt;      fieldcat_ln-fieldname = lv_field.&lt;/P&gt;&lt;P&gt;      fieldcat_ln-tabname   = 'IT_DASHBOARD'.&lt;/P&gt;&lt;P&gt;      fieldcat_ln-datatype  = 'CHAR'.&lt;/P&gt;&lt;P&gt;      fieldcat_ln-outputlen = 5.&lt;/P&gt;&lt;P&gt;      APPEND fieldcat_ln TO fieldcat.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     APPEND wa_fieldcatalog TO gt_fieldcatalog_tot.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      CLEAR fieldcat_ln.&lt;/P&gt;&lt;P&gt;    ENDAT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  ASSIGN fieldcat TO &amp;lt;fs3&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ASSIGN COMPONENT 'SOD_ID' OF STRUCTURE &amp;lt;fs3&amp;gt; TO &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  &amp;lt;fs1&amp;gt; = 'ZZZZZZ'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Getting the dump at the the line high-lighted above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. tell me what's the problem here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sreedevi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 08:03:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632966#M282351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T08:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol assignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632967#M282352</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;The FIELDCATALOG hasn't the field SOD_ID, so the statament  ASSIGN COMPONENT 'SOD_ID' OF STRUCTURE &amp;lt;fs3&amp;gt; TO &amp;lt;fs1&amp;gt; fails, and you'll have a dump when u insert a value in &amp;lt;fs1&amp;gt; because it isn't assigned yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should write:&lt;/P&gt;&lt;P&gt;ASSIGN IT_DASHBOARD TO &amp;lt;FS3&amp;gt;.&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT 'SOD_ID' OF STRUCTURE &amp;lt;fs3&amp;gt; TO &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&amp;lt;FS1&amp;gt; = 'ZZZZ'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 08:07:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632967#M282352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T08:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol assignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632968#M282353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the fieldcatalog is having SOD_ID as shown in the below code that I gave &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  fieldcat_ln-fieldname = 'SOD_ID'.&lt;/P&gt;&lt;P&gt;  fieldcat_ln-tabname   = 'IT_DASHBOARD'.&lt;/P&gt;&lt;P&gt;  fieldcat_ln-datatype  = 'CHAR'.&lt;/P&gt;&lt;P&gt;  APPEND fieldcat_ln TO fieldcat.&lt;/P&gt;&lt;P&gt;  CLEAR fieldcat_ln.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 08:10:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632968#M282353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T08:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol assignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632969#M282354</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;No! The table IT_DASHBOARD has field SOD_ID not FIELDCAT, fieldcat has only a record where the field FIELDNAME = 'SOD_ID':&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN IT_DASHBOARD TO &amp;lt;FS3&amp;gt;.&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT 'SOD_ID' OF STRUCTURE &amp;lt;fs3&amp;gt; TO &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&amp;lt;FS1&amp;gt; = 'ZZZZ'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you write:&lt;/P&gt;&lt;P&gt;fieldname = 'IT_DASHBOARD-SOD_ID'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (FIELDNAME) TO &amp;lt;FS1&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;FS1&amp;gt; = 'ZZZZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 08:11:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632969#M282354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T08:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol assignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632970#M282355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) u cant assign structure&lt;/P&gt;&lt;P&gt;assign fieldcat to &amp;lt;fs3&amp;gt; directly like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can do like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:dref type ref to data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create DATA dref type fieldcat.&lt;/P&gt;&lt;P&gt;assign dref-&amp;gt;* to &amp;lt;fs3&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;fs1&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign component 'SOD_ID' of structure &amp;lt;fs3&amp;gt; to &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;fs1&amp;gt; = 'zzzz'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 08:19:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632970#M282355</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-10-11T08:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol assignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632971#M282356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually i need to create dynamic table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so even fieldcatalog is dynamic in nature.&lt;/P&gt;&lt;P&gt;when I gave&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;create DATA dref type fieldcat.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;it's giving error&lt;/P&gt;&lt;P&gt;as fieldcatalog is declared as shown below....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: fieldcat         TYPE slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      fieldcat_ln      LIKE LINE OF fieldcat,          "Field catalog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I was coding in ABAP Objects I moved the dynamic field catalog table as shown below....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        it_fieldcatalog = gt_fieldcatalog_tot&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        ep_table = ref&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        generate_subpool_dir_full = 1&lt;/P&gt;&lt;P&gt;        OTHERS = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ASSIGN ref-&amp;gt;* TO &amp;lt;tabx&amp;gt;.&lt;/P&gt;&lt;P&gt;  CREATE DATA dref LIKE LINE OF &amp;lt;tabx&amp;gt; .&lt;/P&gt;&lt;P&gt;  ASSIGN dref-&amp;gt;* TO &amp;lt;fs3&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But If objects are not used how to create&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;create DATA dref type fieldcat.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 09:09:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632971#M282356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T09:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol assignment problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632972#M282357</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 can't understand you want to do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;create DATA dref type fieldcat.&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U shouldn't need it, but only:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: MY_TABLE TYPE REF TO DATA,&lt;/P&gt;&lt;P&gt;      WA       TYPE REF TO DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;TAB&amp;gt; TYPE TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS:&amp;lt;fs1&amp;gt; TYPE ANY,&lt;/P&gt;&lt;P&gt;              &amp;lt;fs3&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat_ln-fieldname = 'SOD_ID'.&lt;/P&gt;&lt;P&gt;fieldcat_ln-datatype = 'CHAR'.&lt;/P&gt;&lt;P&gt;APPEND fieldcat_ln TO fieldcat.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;APPEND wa_fieldcatalog TO gt_fieldcatalog_tot.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CLEAR fieldcat_ln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldcat_ln-fieldname = 'BUSAREA'.&lt;/P&gt;&lt;P&gt;fieldcat_ln-datatype = 'CHAR'.&lt;/P&gt;&lt;P&gt;APPEND fieldcat_ln TO fieldcat.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;APPEND wa_fieldcatalog TO gt_fieldcatalog_tot.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CLEAR fieldcat_ln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT gt_jrm.&lt;/P&gt;&lt;P&gt;AT NEW busarea.&lt;/P&gt;&lt;P&gt;CLEAR lv_field.&lt;/P&gt;&lt;P&gt;CONCATENATE 'BUSAREA-' gt_jrm-busarea INTO lv_field .&lt;/P&gt;&lt;P&gt;fieldcat_ln-fieldname = lv_field.&lt;/P&gt;&lt;P&gt;fieldcat_ln-tabname = 'IT_DASHBOARD'.&lt;/P&gt;&lt;P&gt;fieldcat_ln-datatype = 'CHAR'.&lt;/P&gt;&lt;P&gt;fieldcat_ln-outputlen = 5.&lt;/P&gt;&lt;P&gt;APPEND fieldcat_ln TO fieldcat.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;APPEND wa_fieldcatalog TO gt_fieldcatalog_tot.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CLEAR fieldcat_ln.&lt;/P&gt;&lt;P&gt;ENDAT.&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;CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;it_fieldcatalog = fieldcat&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;ep_table = MY_TABLE&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;generate_subpool_dir_full = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN MY_TABLE-&amp;gt;* TO &amp;lt;tab&amp;gt;.&lt;/P&gt;&lt;P&gt;CREATE DATA WA LIKE LINE OF &amp;lt;TAB&amp;gt; .&lt;/P&gt;&lt;P&gt;ASSIGN WA-&amp;gt;* TO &amp;lt;fs3&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT 'SOD_ID' OF STRUCTURE &amp;lt;FS3&amp;gt; TO &amp;lt;FS1&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;fs1&amp;gt; = 'ZZZZZZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 09:22:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment-problem/m-p/1632972#M282357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T09:22:52Z</dc:date>
    </item>
  </channel>
</rss>

