<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment/m-p/4516588#M1067958</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;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;wa like line of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbol:&lt;/P&gt;&lt;P&gt;&amp;lt;fs_table&amp;gt; type any table,&lt;/P&gt;&lt;P&gt;&amp;lt;fs_field&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign local copy of initial line of itab to &amp;lt;fs_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;fs_table&amp;gt; into wa.&lt;/P&gt;&lt;P&gt;assign component 'SIGN' of structure wa to &amp;lt;fs_field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;modify your fields here.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Oct 2008 07:32:08 GMT</pubDate>
    <dc:creator>peter_ruiz2</dc:creator>
    <dc:date>2008-10-03T07:32:08Z</dc:date>
    <item>
      <title>Field symbol assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment/m-p/4516587#M1067957</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;I want to assign a range table to a field symbol and at the same time I want to clear the contents of the table and field symbol.&lt;/P&gt;&lt;P&gt;Please let me know how to do this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 07:27:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment/m-p/4516587#M1067957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T07:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment/m-p/4516588#M1067958</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;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;wa like line of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbol:&lt;/P&gt;&lt;P&gt;&amp;lt;fs_table&amp;gt; type any table,&lt;/P&gt;&lt;P&gt;&amp;lt;fs_field&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign local copy of initial line of itab to &amp;lt;fs_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;fs_table&amp;gt; into wa.&lt;/P&gt;&lt;P&gt;assign component 'SIGN' of structure wa to &amp;lt;fs_field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;modify your fields here.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 07:32:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment/m-p/4516588#M1067958</guid>
      <dc:creator>peter_ruiz2</dc:creator>
      <dc:date>2008-10-03T07:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment/m-p/4516589#M1067959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This code may help u...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: range TYPE RANGE OF matnr.

FIELD-SYMBOLS: &amp;lt;range&amp;gt; LIKE range[].

ASSIGN RANGE[] to &amp;lt;range&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sukriti Saha on Oct 3, 2008 9:38 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 07:34:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment/m-p/4516589#M1067959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T07:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment/m-p/4516590#M1067960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If I have an internal table in separate program and how to do assign this field-symbol from that??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 07:38:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment/m-p/4516590#M1067960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T07:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol assignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment/m-p/4516591#M1067961</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;try using this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (program name)itab to &amp;lt;field symbol&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 07:42:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-assignment/m-p/4516591#M1067961</guid>
      <dc:creator>peter_ruiz2</dc:creator>
      <dc:date>2008-10-03T07:42:44Z</dc:date>
    </item>
  </channel>
</rss>

