<?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: using field symobl in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symobl/m-p/1967297#M397191</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can directly add value to FS,&lt;/P&gt;&lt;P&gt;eg. vit_report-twa = vit_report-twa + &amp;lt;fs01&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT vit_zzcgl1t_twa.&lt;/P&gt;&lt;P&gt;    CLEAR vit_report.&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING vit_zzcgl1t_twa TO vit_report.&lt;/P&gt;&lt;P&gt;    vit_report-twa = vit_zzcgl1t_twa-kslvt.&lt;/P&gt;&lt;P&gt;    DO p_rpmax1 TIMES.&lt;/P&gt;&lt;P&gt;      v_indx = sy-index + 4.&lt;/P&gt;&lt;P&gt;      ASSIGN COMPONENT v_indx OF STRUCTURE vit_zzcgl1t_twa TO &amp;lt;fs01&amp;gt;.&lt;/P&gt;&lt;P&gt;      vit_report-twa = vit_report-twa + &amp;lt;fs01&amp;gt;.&lt;/P&gt;&lt;P&gt;    ENDDO.&lt;/P&gt;&lt;P&gt;    COLLECT vit_report.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Feb 2007 11:09:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-19T11:09:18Z</dc:date>
    <item>
      <title>using field symobl</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symobl/m-p/1967296#M397190</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 a field symbol of type any, and at run time i assign some value x to the&lt;/P&gt;&lt;P&gt;field symbol &amp;lt;fs&amp;gt;. however if i want to add one more value to this field symbol &lt;/P&gt;&lt;P&gt;what should i do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly suggest me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;RAshmi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 11:06:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symobl/m-p/1967296#M397190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-19T11:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: using field symobl</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symobl/m-p/1967297#M397191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can directly add value to FS,&lt;/P&gt;&lt;P&gt;eg. vit_report-twa = vit_report-twa + &amp;lt;fs01&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT vit_zzcgl1t_twa.&lt;/P&gt;&lt;P&gt;    CLEAR vit_report.&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING vit_zzcgl1t_twa TO vit_report.&lt;/P&gt;&lt;P&gt;    vit_report-twa = vit_zzcgl1t_twa-kslvt.&lt;/P&gt;&lt;P&gt;    DO p_rpmax1 TIMES.&lt;/P&gt;&lt;P&gt;      v_indx = sy-index + 4.&lt;/P&gt;&lt;P&gt;      ASSIGN COMPONENT v_indx OF STRUCTURE vit_zzcgl1t_twa TO &amp;lt;fs01&amp;gt;.&lt;/P&gt;&lt;P&gt;      vit_report-twa = vit_report-twa + &amp;lt;fs01&amp;gt;.&lt;/P&gt;&lt;P&gt;    ENDDO.&lt;/P&gt;&lt;P&gt;    COLLECT vit_report.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 11:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symobl/m-p/1967297#M397191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-19T11:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: using field symobl</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symobl/m-p/1967298#M397192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;unassign the field symbol ('UNASSIGN &amp;lt;fs&amp;gt;') and assign it again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Feb 2007 20:40:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symobl/m-p/1967298#M397192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-19T20:40:42Z</dc:date>
    </item>
  </channel>
</rss>

