<?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: dynamic data objects in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924793#M383883</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi George,&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: numref     TYPE REF TO DATA, &lt;/P&gt;&lt;P&gt;      number     TYPE I VALUE 123. &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;GET REFERENCE OF number INTO numref. &lt;/P&gt;&lt;P&gt;ASSIGN numref-&amp;gt;* TO &amp;lt;fs&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find this if you do a F1 help on the "Data" keyword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;George.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;plz reward points to helpful tips&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Mar 2007 07:46:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-05T07:46:29Z</dc:date>
    <item>
      <title>dynamic data objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924789#M383879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a table with one field, n records. For each record of the table I have to dynamically create a data object of type table-field. How can I do that?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2007 13:19:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924789#M383879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-01T13:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic data objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924790#M383880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can do it using field symbol.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2007 13:23:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924790#M383880</guid>
      <dc:creator>alex_m</dc:creator>
      <dc:date>2007-03-01T13:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic data objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924791#M383881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are two ways as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 .For WAS 6.2 above &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report yes_tjung_sflight_test.&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;Data Declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: sflighttype type ref to cl_abap_structdescr,&lt;/P&gt;&lt;P&gt;      tabletype   type ref to cl_abap_tabledescr,&lt;/P&gt;&lt;P&gt;      comp_tab    type cl_abap_structdescr=&amp;gt;component_table,&lt;/P&gt;&lt;P&gt;      new_comp_tab like comp_tab,&lt;/P&gt;&lt;P&gt;      linetype type ref to cl_abap_structdescr,&lt;/P&gt;&lt;P&gt;      dref type ref to data.&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;Field Symbols&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;wa_comp&amp;gt; like line of comp_tab.&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;table&amp;gt; type any table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sflighttype ?= cl_abap_typedescr=&amp;gt;describe_by_name('SFLIGHT').&lt;/P&gt;&lt;P&gt;comp_tab = sflighttype-&amp;gt;get_components( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at comp_tab assigning &amp;lt;wa_comp&amp;gt;.&lt;/P&gt;&lt;P&gt;case &amp;lt;wa_comp&amp;gt;-name.&lt;/P&gt;&lt;P&gt;when 'CARRID' or 'CONNID' or 'FLDATE' or 'PRICE' or 'CURRENCY'.&lt;/P&gt;&lt;P&gt;append &amp;lt;wa_comp&amp;gt; to new_comp_tab.&lt;/P&gt;&lt;P&gt;endcase.&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;linetype = cl_abap_structdescr=&amp;gt;create( new_comp_tab ).&lt;/P&gt;&lt;P&gt;tabletype = cl_abap_tabledescr=&amp;gt;create(&lt;/P&gt;&lt;P&gt;p_line_type = linetype&lt;/P&gt;&lt;P&gt;p_table_kind = cl_abap_tabledescr=&amp;gt;tablekind_std ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create data dref type handle tabletype.&lt;/P&gt;&lt;P&gt;assign dref-&amp;gt;* to &amp;lt;table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from sflight into corresponding fields of table &amp;lt;table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;wa_data&amp;gt; type any.&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;wa_field&amp;gt; type any.&lt;/P&gt;&lt;P&gt;loop at &amp;lt;table&amp;gt; assigning &amp;lt;wa_data&amp;gt;.&lt;/P&gt;&lt;P&gt;write: /.&lt;/P&gt;&lt;P&gt;loop at new_comp_tab assigning &amp;lt;wa_comp&amp;gt;.&lt;/P&gt;&lt;P&gt;assign component sy-tabix of structure &amp;lt;wa_data&amp;gt; to &amp;lt;wa_field&amp;gt;.&lt;/P&gt;&lt;P&gt;write: &amp;lt;wa_field&amp;gt;.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 .For WAS 6.2&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Tables&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;DATA: LT_DATA type ref to DATA.&lt;/P&gt;&lt;P&gt;DATA: LT_FIELDCATALOG type LVC_T_FCAT.&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;Structure&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;DATA: LS_FIELDCATALOG type LVC_S_FCAT.&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;Data References&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;DATA: NEW_LINE type ref to data.&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;Field Symbols&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;FS_DATA&amp;gt; type ref to DATA,&lt;/P&gt;&lt;P&gt;               &amp;lt;FS_1&amp;gt; type any table,&lt;/P&gt;&lt;P&gt;               &amp;lt;FS_2&amp;gt;,&lt;/P&gt;&lt;P&gt;               &amp;lt;FS_3&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-FIELDNAME = 'MANDT'. &lt;/P&gt;&lt;P&gt;append LS_FIELDCATALOG to LT_FIELDCATALOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-FIELDNAME = 'CARRID'. "Fieldname&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-INTTYPE = 'C'. "Internal Type C-&amp;gt; Character&lt;/P&gt;&lt;P&gt;append LS_FIELDCATALOG to LT_FIELDCATALOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-FIELDNAME = 'CONNID'.&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-INTTYPE = 'N'.&lt;/P&gt;&lt;P&gt;append LS_FIELDCATALOG to LT_FIELDCATALOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-FIELDNAME = 'FLDATE'.&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-INTTYPE = 'D'.&lt;/P&gt;&lt;P&gt;append LS_FIELDCATALOG to LT_FIELDCATALOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-FIELDNAME = 'PRICE'.&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-INTTYPE = 'P'.&lt;/P&gt;&lt;P&gt;append LS_FIELDCATALOG to LT_FIELDCATALOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-FIELDNAME = 'CURRENCY'.&lt;/P&gt;&lt;P&gt;LS_FIELDCATALOG-INTTYPE = 'C'.&lt;/P&gt;&lt;P&gt;append LS_FIELDCATALOG to LT_FIELDCATALOG.&lt;/P&gt;&lt;P&gt;assign LT_DATA to &amp;lt;FS_DATA&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call method cl_alv_table_create=create_dynamic_table&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;       it_fieldcatalog = LT_FIELDCATALOG&lt;/P&gt;&lt;P&gt;     importing&lt;/P&gt;&lt;P&gt;       ep_table = FS_DATA&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;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&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;So &amp;lt;FS_1&amp;gt; now points to our dynamic internal table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign &amp;lt;FS_DATA&amp;gt;-&amp;gt;* to &amp;lt;FS_1&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;Next step is to create a work area for our dynamic internal table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create data NEW_LINE like line of &amp;lt;FS_1&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;A field-symbol to access that work area&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;assign NEW_LINE-&amp;gt;*  to &amp;lt;FS_2&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;And to put the data in the internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;select MANDT CARRID CONNID FLDATE PRICE CURRENCY&lt;/P&gt;&lt;P&gt;  from SFLIGHT&lt;/P&gt;&lt;P&gt;  into corresponding fields of table &amp;lt;FS_1&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;Access contents of internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;loop at &amp;lt;FS_1&amp;gt; assigning &amp;lt;FS_2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign component 1 of structure &amp;lt;FS_2&amp;gt; to &amp;lt;FS_3&amp;gt;.&lt;/P&gt;&lt;P&gt;write: / &amp;lt;FS_3&amp;gt;.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: lv_tablename type string value 'SFLIGHT'.&lt;/P&gt;&lt;P&gt;data: lv_dref type ref to DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA lv_dref type table of (lv_tablename).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;FS&amp;gt; TYPE STANDARD TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN lv_dref-&amp;gt;* TO &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;  from sflight&lt;/P&gt;&lt;P&gt;  into table &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2007 13:24:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924791#M383881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-01T13:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic data objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924792#M383882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cannot use field symbols.&lt;/P&gt;&lt;P&gt;I need dynamic data objects because I am calling a FM with dynamic parameters (enqueue/dequeue). So, I have to use the parameter-table option of the call function statement. Filling the parameters table looks like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: p_lt_enq_para type abap_func_parmbind_tab,&lt;/P&gt;&lt;P&gt;        lwa_enq LIKE LINE OF p_lt_enq_para&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; lwa_enq-name = lmode.&lt;/P&gt;&lt;P&gt;  lwa_enq-kind = abap_func_exporting.&lt;/P&gt;&lt;P&gt;  GET REFERENCE OF &amp;lt;b&amp;gt;"needed_variable"&amp;lt;/b&amp;gt; INTO lwa_enq-value .&lt;/P&gt;&lt;P&gt;  INSERT lwa_enq INTO table p_lt_enq_para.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, for every line of the parameters table, I need a data object to insert the desired value. Any ideea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 07:31:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924792#M383882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T07:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic data objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924793#M383883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi George,&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: numref     TYPE REF TO DATA, &lt;/P&gt;&lt;P&gt;      number     TYPE I VALUE 123. &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;GET REFERENCE OF number INTO numref. &lt;/P&gt;&lt;P&gt;ASSIGN numref-&amp;gt;* TO &amp;lt;fs&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find this if you do a F1 help on the "Data" keyword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;George.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;plz reward points to helpful tips&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 07:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924793#M383883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T07:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic data objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924794#M383884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the problem, I cannot expicitly declare a data object (like  numref or number), because I don't know what I need. I have this information in an internal table. &lt;/P&gt;&lt;P&gt;So, I have to call a FM for locking/unlocking table records. For every table that will be locked/unlocked, two FM are generated ( enqueue_... and dequeue_...). These FMs have different parameters from one table to another, because the key fields of every table are used as parameters for these function modules. So, I have the key fields in one internal table, and I have to fill in the parameters table, creatind data objects at runtime for every key field from my internal table.&lt;/P&gt;&lt;P&gt;How can I do that ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to use 'CREATE DATA ...' statement without having a reference variable statically declared in the source code? Or how can I dynamically declare a reference variable, because I don't know how many I need at run time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        George Popescu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 08:10:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-data-objects/m-p/1924794#M383884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T08:10:28Z</dc:date>
    </item>
  </channel>
</rss>

