<?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 To create a deep structure for dynamic internal table. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-deep-structure-for-dynamic-internal-table/m-p/4989913#M1162375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Hello&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;My ALV has fields which are defined dynamically during execution.&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;so, i did it in the following way,&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Declared Field symbolds, DREF and fieldcatalog as,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;t_dyntable&amp;gt; TYPE STANDARD TABLE,&lt;/P&gt;&lt;P&gt;              &amp;lt;fs_dyntable&amp;gt;.&lt;/P&gt;&lt;P&gt;DATA:   dref_dyntab    TYPE REF TO data,&lt;/P&gt;&lt;P&gt;        dref_dynwa     TYPE REF TO data.&lt;/P&gt;&lt;P&gt;DATA: ts_fieldcatalog TYPE lvc_t_fcat.&lt;/P&gt;&lt;P&gt;DATA: wa_fieldcatalog TYPE lvc_s_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Updated Fieldcatalog dynamically as,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;*function module to read segment structure&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'SEGMENT_READ'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        segmenttyp           = v_segment_name&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        segmentstructure     = ts_seg_structure&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        no_authority         = 1&lt;/P&gt;&lt;P&gt;        segment_not_existing = 2&lt;/P&gt;&lt;P&gt;        OTHERS               = 3.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      CASE sy-subrc.&lt;/P&gt;&lt;P&gt;        WHEN '1'.&lt;/P&gt;&lt;P&gt;          MESSAGE e024.&lt;/P&gt;&lt;P&gt;          STOP.&lt;/P&gt;&lt;P&gt;        WHEN '2'.&lt;/P&gt;&lt;P&gt;          MESSAGE e025 WITH v_segment_name.&lt;/P&gt;&lt;P&gt;          STOP.&lt;/P&gt;&lt;P&gt;        WHEN OTHERS.&lt;/P&gt;&lt;P&gt;          MESSAGE e023.&lt;/P&gt;&lt;P&gt;      ENDCASE.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*FETCH FIELDS FROM STRUCTURE OF SEGMENT AND CREATE FIELDCATALOG FOR&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EACH FIELD OF SEGMENT (DYNAMIC FIELD CATALOG)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    LOOP AT ts_seg_structure INTO wa_seg_structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ADD 1 TO v_counter.&lt;/P&gt;&lt;P&gt;      wa_fieldcatalog-fieldname = wa_seg_structure-fieldname.&lt;/P&gt;&lt;P&gt;      wa_fieldcatalog-col_pos   = v_counter.&lt;/P&gt;&lt;P&gt;      wa_fieldcatalog-ref_table = wa_seg_structure-segtyp.&lt;/P&gt;&lt;P&gt;      APPEND wa_fieldcatalog TO ts_fieldcatalog.&lt;/P&gt;&lt;P&gt;      CLEAR wa_fieldcatalog.&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;&lt;STRONG&gt;and generated dynamic internal table using fieldcatalog as,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;*--Method to get the structure of table using fieldcatalog.&lt;/P&gt;&lt;P&gt;  CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      it_fieldcatalog = ts_fieldcatalog&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;*--Variable of type REF TO DATA.&lt;/P&gt;&lt;P&gt;      ep_table        = dref_dyntab.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE e023.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Dynamic internal tables required when show segments selected&lt;/P&gt;&lt;P&gt;  IF p_selseg IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    ASSIGN dref_dyntab-&amp;gt;* TO &amp;lt;t_dyntable&amp;gt;.&lt;/P&gt;&lt;P&gt;*--Create dynamic work area and assign to FS&lt;/P&gt;&lt;P&gt;  CREATE DATA dref_dynwa LIKE LINE OF &amp;lt;t_dyntable&amp;gt;.&lt;/P&gt;&lt;P&gt;    ASSIGN dref_dynwa-&amp;gt;* TO &amp;lt;fs_dyntable&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And then i populated this &amp;lt;t_dyntable&amp;gt; which is being passed as data-table to method&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CL_GUI_ALV_GRID =&amp;gt; SET_TABLE_FOR_FIRST_DISPLAY&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;for ALV grid Display along with above used filedcatalog ts_fieldcatalog.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Things are fine till here, but now i have the requirement to edit &lt;U&gt;selected rows&lt;/U&gt; of the ALV display..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;As you might be aware, we need a field&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;TS_STYLEROW  TYPE lvc_t_styl,&lt;/STRONG&gt; (i.e, a field of type 'h' and we can say as an internal table inside an internal table or else as a deep structure)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;in the output internal table &amp;lt;t_dyntable&amp;gt; to meet our requirement.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My issue is about declaring one such field of type 'h' in this dynamically created internal table ''&amp;lt;t_dyntable&amp;gt;".&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I tried in the following way by adding one such field to fieldcatalog :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;*Field for Styling&lt;/P&gt;&lt;P&gt;  ADD 1 TO v_counter.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-fieldname   = 'TS_STYLEROW'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-tabname     = 'TS_STYLE'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = v_counter.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-no_out      = 'X'.&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;wa_fieldcatalog-inttype     = 'h'.&lt;/STRONG&gt;      " I even mentioned this&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO ts_fieldcatalog.&lt;/P&gt;&lt;P&gt;  CLEAR  wa_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But this is creating a field of type 'C' in the table &amp;lt;t_dyntable&amp;gt; instead of what i was expecting&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;Guyz and respected,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;Please advice me with the solution or ur ideas....&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;U&gt;Note : The overall requirement is create a deep structure for dynamically generated internal table.&lt;/U&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Your help is highly appreciated and unforgettable&lt;/STRONG&gt;..!!!!!!!&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 10 Jan 2009 19:24:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-10T19:24:41Z</dc:date>
    <item>
      <title>To create a deep structure for dynamic internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-deep-structure-for-dynamic-internal-table/m-p/4989913#M1162375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Hello&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;My ALV has fields which are defined dynamically during execution.&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;so, i did it in the following way,&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Declared Field symbolds, DREF and fieldcatalog as,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;t_dyntable&amp;gt; TYPE STANDARD TABLE,&lt;/P&gt;&lt;P&gt;              &amp;lt;fs_dyntable&amp;gt;.&lt;/P&gt;&lt;P&gt;DATA:   dref_dyntab    TYPE REF TO data,&lt;/P&gt;&lt;P&gt;        dref_dynwa     TYPE REF TO data.&lt;/P&gt;&lt;P&gt;DATA: ts_fieldcatalog TYPE lvc_t_fcat.&lt;/P&gt;&lt;P&gt;DATA: wa_fieldcatalog TYPE lvc_s_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Updated Fieldcatalog dynamically as,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;*function module to read segment structure&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'SEGMENT_READ'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        segmenttyp           = v_segment_name&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        segmentstructure     = ts_seg_structure&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        no_authority         = 1&lt;/P&gt;&lt;P&gt;        segment_not_existing = 2&lt;/P&gt;&lt;P&gt;        OTHERS               = 3.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      CASE sy-subrc.&lt;/P&gt;&lt;P&gt;        WHEN '1'.&lt;/P&gt;&lt;P&gt;          MESSAGE e024.&lt;/P&gt;&lt;P&gt;          STOP.&lt;/P&gt;&lt;P&gt;        WHEN '2'.&lt;/P&gt;&lt;P&gt;          MESSAGE e025 WITH v_segment_name.&lt;/P&gt;&lt;P&gt;          STOP.&lt;/P&gt;&lt;P&gt;        WHEN OTHERS.&lt;/P&gt;&lt;P&gt;          MESSAGE e023.&lt;/P&gt;&lt;P&gt;      ENDCASE.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*FETCH FIELDS FROM STRUCTURE OF SEGMENT AND CREATE FIELDCATALOG FOR&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EACH FIELD OF SEGMENT (DYNAMIC FIELD CATALOG)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    LOOP AT ts_seg_structure INTO wa_seg_structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ADD 1 TO v_counter.&lt;/P&gt;&lt;P&gt;      wa_fieldcatalog-fieldname = wa_seg_structure-fieldname.&lt;/P&gt;&lt;P&gt;      wa_fieldcatalog-col_pos   = v_counter.&lt;/P&gt;&lt;P&gt;      wa_fieldcatalog-ref_table = wa_seg_structure-segtyp.&lt;/P&gt;&lt;P&gt;      APPEND wa_fieldcatalog TO ts_fieldcatalog.&lt;/P&gt;&lt;P&gt;      CLEAR wa_fieldcatalog.&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;&lt;STRONG&gt;and generated dynamic internal table using fieldcatalog as,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;*--Method to get the structure of table using fieldcatalog.&lt;/P&gt;&lt;P&gt;  CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      it_fieldcatalog = ts_fieldcatalog&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;*--Variable of type REF TO DATA.&lt;/P&gt;&lt;P&gt;      ep_table        = dref_dyntab.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE e023.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Dynamic internal tables required when show segments selected&lt;/P&gt;&lt;P&gt;  IF p_selseg IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    ASSIGN dref_dyntab-&amp;gt;* TO &amp;lt;t_dyntable&amp;gt;.&lt;/P&gt;&lt;P&gt;*--Create dynamic work area and assign to FS&lt;/P&gt;&lt;P&gt;  CREATE DATA dref_dynwa LIKE LINE OF &amp;lt;t_dyntable&amp;gt;.&lt;/P&gt;&lt;P&gt;    ASSIGN dref_dynwa-&amp;gt;* TO &amp;lt;fs_dyntable&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And then i populated this &amp;lt;t_dyntable&amp;gt; which is being passed as data-table to method&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CL_GUI_ALV_GRID =&amp;gt; SET_TABLE_FOR_FIRST_DISPLAY&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;for ALV grid Display along with above used filedcatalog ts_fieldcatalog.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Things are fine till here, but now i have the requirement to edit &lt;U&gt;selected rows&lt;/U&gt; of the ALV display..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;As you might be aware, we need a field&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;TS_STYLEROW  TYPE lvc_t_styl,&lt;/STRONG&gt; (i.e, a field of type 'h' and we can say as an internal table inside an internal table or else as a deep structure)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;in the output internal table &amp;lt;t_dyntable&amp;gt; to meet our requirement.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My issue is about declaring one such field of type 'h' in this dynamically created internal table ''&amp;lt;t_dyntable&amp;gt;".&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I tried in the following way by adding one such field to fieldcatalog :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;*Field for Styling&lt;/P&gt;&lt;P&gt;  ADD 1 TO v_counter.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-fieldname   = 'TS_STYLEROW'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-tabname     = 'TS_STYLE'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = v_counter.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-no_out      = 'X'.&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;wa_fieldcatalog-inttype     = 'h'.&lt;/STRONG&gt;      " I even mentioned this&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO ts_fieldcatalog.&lt;/P&gt;&lt;P&gt;  CLEAR  wa_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But this is creating a field of type 'C' in the table &amp;lt;t_dyntable&amp;gt; instead of what i was expecting&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;Guyz and respected,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;Please advice me with the solution or ur ideas....&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;U&gt;Note : The overall requirement is create a deep structure for dynamically generated internal table.&lt;/U&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Your help is highly appreciated and unforgettable&lt;/STRONG&gt;..!!!!!!!&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2009 19:24:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-deep-structure-for-dynamic-internal-table/m-p/4989913#M1162375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-10T19:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: To create a deep structure for dynamic internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-deep-structure-for-dynamic-internal-table/m-p/4989914#M1162376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;Guyz and respected,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;Please advice me with the solution or ur ideas....&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;STRONG&gt;&lt;EM&gt;&lt;U&gt;Note : The overall requirement is create a deep structure for dynamically generated internal table.&lt;/U&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;EM&gt;&lt;STRONG&gt;Your help is highly appreciated and unforgettable&lt;/STRONG&gt;..!!!!!!!&lt;/EM&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did u try on search on forum,&lt;/P&gt;&lt;P&gt;I found these in the very first search result so do use the search option next time onwards.&lt;/P&gt;&lt;P&gt;check this blog on adding deep structure to dynamic internal table&lt;/P&gt;&lt;P&gt;/people/subramanian.venkateswaran2/blog/2004/11/19/dynamic-internal-table&lt;/P&gt;&lt;P&gt;also see this thread,&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1090253"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2009 19:45:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-deep-structure-for-dynamic-internal-table/m-p/4989914#M1162376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-10T19:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: To create a deep structure for dynamic internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-deep-structure-for-dynamic-internal-table/m-p/4989915#M1162377</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;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="606915"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="586153"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="586151"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="558837"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="628131"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2009 20:00:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-deep-structure-for-dynamic-internal-table/m-p/4989915#M1162377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-10T20:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: To create a deep structure for dynamic internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-deep-structure-for-dynamic-internal-table/m-p/4989916#M1162378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Raja&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may have a look at my Wiki posting&lt;/P&gt;&lt;P&gt;[Creating Flat and Complex Internal Tables Dynamically using RTTI|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/creating%2bflat%2band%2bcomplex%2binternal%2btables%2bdynamically%2busing%2brtti]&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;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2009 21:31:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-deep-structure-for-dynamic-internal-table/m-p/4989916#M1162378</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2009-01-10T21:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: To create a deep structure for dynamic internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-deep-structure-for-dynamic-internal-table/m-p/4989917#M1162379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Long time passed. &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/599/images/emoticons/happy.gif"&gt;, you must are already a expert now.&lt;BR /&gt;I have the same issue like you, how do you resolve your problem? please shared with me.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can`t convert 'h' to a standard table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks very much. &lt;/P&gt;&lt;P&gt;Former Member, if you know, guide me, thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Archer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 13:29:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-deep-structure-for-dynamic-internal-table/m-p/4989917#M1162379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-05T13:29:11Z</dc:date>
    </item>
  </channel>
</rss>

