<?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 Filling a Dynamic Structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/filling-a-dynamic-structure/m-p/6493508#M1420649</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 have generated a dynamic structure.  The field names of the structure are related to the values I have generated from a table which can also be dynamic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was wondering if there was a way to move a value to a work area of this dynamic table using the field name?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jan 2010 15:55:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-05T15:55:08Z</dc:date>
    <item>
      <title>Filling a Dynamic Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filling-a-dynamic-structure/m-p/6493508#M1420649</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 have generated a dynamic structure.  The field names of the structure are related to the values I have generated from a table which can also be dynamic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was wondering if there was a way to move a value to a work area of this dynamic table using the field name?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 15:55:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filling-a-dynamic-structure/m-p/6493508#M1420649</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T15:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Filling a Dynamic Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filling-a-dynamic-structure/m-p/6493509#M1420650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. You should be able to do it easily using field symbols and assign. There are lots of posts on here about this, but something simple like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS:&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_data&amp;gt;             TYPE (structure name),&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 (structure name) to &amp;lt;fs_data&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT (component name) OF STRUCTURE &amp;lt;fs_data&amp;gt; TO &amp;lt;fs_field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just replace the data in brackets with your structure and field names. (component name) can be any variable you have selected in from anywhere. &amp;lt;fs_field&amp;gt; will contain your data from your structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dave.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 16:01:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filling-a-dynamic-structure/m-p/6493509#M1420650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T16:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Filling a Dynamic Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filling-a-dynamic-structure/m-p/6493510#M1420651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jamie , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can achieve this by using field symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the link for details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3860358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3860358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Press F1 on Field-symbols and assigning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can search SDN , there are many related threads.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 16:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filling-a-dynamic-structure/m-p/6493510#M1420651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T16:56:02Z</dc:date>
    </item>
  </channel>
</rss>

