<?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: Create datatable record dynamically and insert into table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911569#M1793976</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Josh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have modified your code to dynamically create a table, but I'm still not sure how I can append a new record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the example you populate the table using a SELECT. Instead of this, I'd like to set the fields of the work area, &amp;lt;fs_wa&amp;gt; using something like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;fs_wa&amp;gt;-id&amp;nbsp; = im_id.&lt;/P&gt;&lt;P&gt;&amp;lt;fs_wa&amp;gt;-status = 'Initial'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then append to the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this is not possible because SAP does not know the structure of the field symbol, and so does not recognise the component called ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Dec 2013 11:50:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-12-04T11:50:31Z</dc:date>
    <item>
      <title>Create datatable record dynamically and insert into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911566#M1793973</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 would like to write a method to insert data into a database table. The database table name would not be known until runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table would contain some standard fields. Only these fields should be populated, and the table might contain other fields that should not be populated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to write something like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Create a structure [record] that corresponds to the table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Populate the common fields:&lt;/P&gt;&lt;P&gt;[record]-id = 1.&lt;/P&gt;&lt;P&gt;[record]-status = 'I'.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Insert record into dtable&lt;/P&gt;&lt;P&gt;INSERT INTO (table_name) VALUES [record].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried to do this using field symbols and creating data objects dynamically, but have not managed to get it to work yet. Can anyone suggest how it could be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 09:21:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911566#M1793973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-04T09:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Create datatable record dynamically and insert into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911567#M1793974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi steve,&lt;/P&gt;&lt;P&gt;you could write like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: tablenamme LIKE dd02l-tabname.&lt;/P&gt;&lt;P&gt;DATA: link TYPE REF TO data.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA link TYPE (tablename).&lt;/P&gt;&lt;P&gt;ASSIGN link-&amp;gt;* TO &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"During runtime &amp;lt;fs&amp;gt; will be filled by the structure by the table you enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO (table) VALUES &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sivaganesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 09:33:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911567#M1793974</guid>
      <dc:creator>sivaganesh_krishnan</dc:creator>
      <dc:date>2013-12-04T09:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create datatable record dynamically and insert into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911568#M1793975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial monospaced for SAP';"&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;* Get structure of an SAP table&lt;BR /&gt;*----------------------------------------------------------------------*&lt;BR /&gt;form table_structure.&lt;BR /&gt;&amp;nbsp; data : it_tabdescr type abap_compdescr_tab,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_tabdescr type abap_compdescr.&lt;BR /&gt;&amp;nbsp; data : ref_table_descr type ref to cl_abap_structdescr.&lt;BR /&gt;&lt;BR /&gt;* Return structure of the table.&lt;BR /&gt;&amp;nbsp; ref_table_descr ?= cl_abap_typedescr=&amp;gt;describe_by_name( p_table ).&lt;BR /&gt;&amp;nbsp; it_tabdescr[] = ref_table_descr-&amp;gt;components[].&lt;BR /&gt;&amp;nbsp; loop at it_tabdescr into wa_tabdescr.&lt;BR /&gt;&amp;nbsp; clear wa_fieldcat.&lt;BR /&gt;&amp;nbsp; wa_fieldcat-fieldname = wa_tabdescr-name .&lt;BR /&gt;&amp;nbsp; wa_fieldcat-datatype = wa_tabdescr-type_kind.&lt;BR /&gt;&amp;nbsp; wa_fieldcat-inttype = wa_tabdescr-type_kind.&lt;BR /&gt;&amp;nbsp; wa_fieldcat-intlen = wa_tabdescr-length.&lt;BR /&gt;&amp;nbsp; wa_fieldcat-decimals = wa_tabdescr-decimals.&lt;BR /&gt;&amp;nbsp; append wa_fieldcat to it_fieldcat.&lt;BR /&gt;&amp;nbsp; endloop.&lt;BR /&gt;endform. &lt;BR /&gt;&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;* Create internal table dynamically&lt;BR /&gt;*----------------------------------------------------------------------*&lt;BR /&gt;form create_itab.&lt;BR /&gt;* Create dynamic internal table and assign to Field-Symbol&lt;BR /&gt;&amp;nbsp; call method cl_alv_table_create=&amp;gt;create_dynamic_table&lt;BR /&gt;&amp;nbsp; EXPORTING&lt;BR /&gt;&amp;nbsp; it_fieldcatalog = it_fieldcat&lt;BR /&gt;&amp;nbsp; IMPORTING&lt;BR /&gt;&amp;nbsp; ep_table = dyn_table.&lt;BR /&gt;&amp;nbsp; assign dyn_table-&amp;gt;* to &amp;lt;fs_table&amp;gt;.&lt;BR /&gt;* Create dynamic work area and assign to Field Symbol&lt;BR /&gt;&amp;nbsp; create data dyn_line like line of &amp;lt;fs_table&amp;gt;.&lt;BR /&gt;&amp;nbsp; assign dyn_line-&amp;gt;* to &amp;lt;fs_wa&amp;gt;.&lt;BR /&gt;endform. &lt;BR /&gt;&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;* Populate dynamic itab&lt;BR /&gt;*----------------------------------------------------------------------*&lt;BR /&gt;form fetch_data.&lt;BR /&gt;&amp;nbsp; select * into CORRESPONDING FIELDS OF TABLE &amp;lt;fs_table&amp;gt;&lt;BR /&gt;&amp;nbsp; from (p_table).&lt;BR /&gt;endform.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Arial monospaced for SAP';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial monospaced for SAP';"&gt;Hope this works.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial monospaced for SAP';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial monospaced for SAP';"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial monospaced for SAP';"&gt;Josh&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 10:33:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911568#M1793975</guid>
      <dc:creator>JJosh</dc:creator>
      <dc:date>2013-12-04T10:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create datatable record dynamically and insert into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911569#M1793976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Josh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have modified your code to dynamically create a table, but I'm still not sure how I can append a new record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the example you populate the table using a SELECT. Instead of this, I'd like to set the fields of the work area, &amp;lt;fs_wa&amp;gt; using something like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;fs_wa&amp;gt;-id&amp;nbsp; = im_id.&lt;/P&gt;&lt;P&gt;&amp;lt;fs_wa&amp;gt;-status = 'Initial'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then append to the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this is not possible because SAP does not know the structure of the field symbol, and so does not recognise the component called ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 11:50:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911569#M1793976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-04T11:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create datatable record dynamically and insert into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911570#M1793977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks S&lt;SPAN style="color: #333333; font-size: 12px;"&gt;ivaganesh&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That was the kind of thing I attempted. However I'm stuck between&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;ASSIGN link-&amp;gt;* TO &amp;lt;fs&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;and&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;INSERT INTO (table) VALUES &amp;lt;fs&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;I'd like know how to set &amp;lt;fs&amp;gt; to contain the values I require before inserting into the datatable, i.e.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&amp;lt;fs_wa&amp;gt;-id&amp;nbsp; = im_id.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&amp;lt;fs_wa&amp;gt;-status = 'Initial'.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;I would like to be able to populate the fields in the structure contained in &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;Kind regards&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 11:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911570#M1793977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-04T11:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Create datatable record dynamically and insert into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911571#M1793978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use it_fieldcat in this case. As it contains the structure of your table. You can do a loop at it_fieldcat and then use Assign (lwa_fieldcat-fieldname) of &amp;lt;FS&amp;gt; to &amp;lt;FS1&amp;gt;&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;&amp;lt;FS1&amp;gt; = value.&lt;/P&gt;&lt;P&gt;endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append &amp;lt;FS&amp;gt; to &amp;lt;FT&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 11:59:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911571#M1793978</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2013-12-04T11:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: Create datatable record dynamically and insert into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911572#M1793979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know the field names as id and status?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can do like this.&lt;/P&gt;&lt;P&gt;field-symbols&amp;nbsp; &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign component 'ID' of structure &amp;lt;Fs_wa&amp;gt; to &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;if &amp;lt;fs1&amp;gt; is assigned.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs1&amp;gt; = im_id.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; unassign &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;endif. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign component 'STATUS' of structure &amp;lt;Fs_wa&amp;gt; to &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;if &amp;lt;fs1&amp;gt; is assigned.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs1&amp;gt; = 'Initial'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; unassign &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;endif. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 12:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911572#M1793979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-04T12:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: Create datatable record dynamically and insert into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911573#M1793980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for your help. Susmitha's answer is what I was looking for,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think perhaps I should have asked a question about field symbols rather than dynamic SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 13:01:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911573#M1793980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-04T13:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Create datatable record dynamically and insert into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911574#M1793981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am tryign to do something similar , but I do not know the names of the fields. How can I go about solving that? Please someone reply back. Its an urgent issue for me to solve.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2014 01:05:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911574#M1793981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-12T01:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: Create datatable record dynamically and insert into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911575#M1793982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hello Meghna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get the names of structure components dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are a few examples at the end of this thread:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/thread/731877"&gt;http://scn.sap.com/thread/731877&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2014 06:35:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-datatable-record-dynamically-and-insert-into-table/m-p/9911575#M1793982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-12T06:35:26Z</dc:date>
    </item>
  </channel>
</rss>

