<?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 Dynamic Tables!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505228#M1558940</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;?? What SAP release are you working with? These classes have been enhanced a couple of times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOAD_CLASS
CLASS_CONSTRUCTOR
GET_COMPONENT_TYPE
GET_DDIC_FIELD_LIST
CREATE
GET_COMPONENTS
GET_INCLUDED_VIEW
GET_SYMBOLS
CREATE_STRUCTDESCR_OBJECT
XTYP_TO_STRUC_DESC
CREATE_XTYP_FROM_STRUC_DESC&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in ECC600, ABA_701.&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Nov 2010 11:57:32 GMT</pubDate>
    <dc:creator>Clemenss</dc:creator>
    <dc:date>2010-11-17T11:57:32Z</dc:date>
    <item>
      <title>Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505220#M1558932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i will create dynamic a table but there is a Problem with the type "ABAP_COMPONENT_TAB", he said that it is not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: abap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: obj_table1 TYPE REF TO cl_abap_tabledescr,&lt;/P&gt;&lt;P&gt;      obj_table2 TYPE REF TO cl_abap_tabledescr.&lt;/P&gt;&lt;P&gt;DATA: obj_struc1 TYPE REF TO cl_abap_structdescr,&lt;/P&gt;&lt;P&gt;      obj_struc2 TYPE REF TO cl_abap_structdescr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lt_component TYPE &lt;STRONG&gt;abap_component_tab&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;      wa_component TYPE abap_componentdescr.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;DATA: obj_data1 TYPE REF TO data,&lt;/P&gt;&lt;P&gt;      obj_data2 TYPE REF TO data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;table1&amp;gt; TYPE ANY TABLE,&lt;/P&gt;&lt;P&gt;               &amp;lt;table2&amp;gt; TYPE ANY TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR wa_component.&lt;/P&gt;&lt;P&gt;wa_component-name = 'STREET'.&lt;/P&gt;&lt;P&gt;wa_component-type ?= cl_abap_typedescr=&amp;gt;describe_by_name( 'STRING' ).&lt;/P&gt;&lt;P&gt;INSERT wa_component INTO TABLE lt_component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR wa_component.&lt;/P&gt;&lt;P&gt;wa_component-name = 'POST_CODE'.&lt;/P&gt;&lt;P&gt;wa_component-type ?= cl_abap_typedescr=&amp;gt;describe_by_name( 'STRING' ).&lt;/P&gt;&lt;P&gt;INSERT wa_component INTO TABLE lt_component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR wa_component.&lt;/P&gt;&lt;P&gt;wa_component-name = 'CITY1'.&lt;/P&gt;&lt;P&gt;wa_component-type ?= cl_abap_typedescr=&amp;gt;describe_by_name( 'STRING' ).&lt;/P&gt;&lt;P&gt;INSERT wa_component INTO TABLE lt_component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;obj_struc1 = cl_abap_structdescr=&amp;gt;create( lt_component ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*TRY.&lt;/P&gt;&lt;P&gt;CALL METHOD cl_abap_tabledescr=&amp;gt;create&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    p_line_type  = obj_struc1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_table_kind = TABLEKIND_STD&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_unique     = ABAP_FALSE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_key        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_key_kind   = KEYDEFKIND_DEFAULT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  RECEIVING&lt;/P&gt;&lt;P&gt;    p_result     = obj_table1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CATCH cx_sy_table_creation .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH: lt_component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA obj_data1 TYPE HANDLE obj_table1.&lt;/P&gt;&lt;P&gt;ASSIGN obj_data1-&amp;gt;* TO &amp;lt;table1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR wa_component.&lt;/P&gt;&lt;P&gt;wa_component-name = 'PARTNER'.&lt;/P&gt;&lt;P&gt;wa_component-type ?= cl_abap_typedescr=&amp;gt;describe_by_name( 'STRING' ).&lt;/P&gt;&lt;P&gt;INSERT wa_component INTO TABLE lt_component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR wa_component.&lt;/P&gt;&lt;P&gt;wa_component-name = 'NAME_ORG1'.&lt;/P&gt;&lt;P&gt;wa_component-type ?= cl_abap_typedescr=&amp;gt;describe_by_name( 'STRING' ).&lt;/P&gt;&lt;P&gt;INSERT wa_component INTO TABLE lt_component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR wa_component.&lt;/P&gt;&lt;P&gt;wa_component-name = 'NAME_ORG2'.&lt;/P&gt;&lt;P&gt;wa_component-type ?= cl_abap_typedescr=&amp;gt;describe_by_name( 'STRING' ).&lt;/P&gt;&lt;P&gt;INSERT wa_component INTO TABLE lt_component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR wa_component.&lt;/P&gt;&lt;P&gt;wa_component-name = 'ADDR_TABLE'.&lt;/P&gt;&lt;P&gt;wa_component-type ?= cl_abap_typedescr=&amp;gt;describe_by_data( &amp;lt;table1&amp;gt; ).&lt;/P&gt;&lt;P&gt;INSERT wa_component INTO TABLE lt_component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;obj_struc2 = cl_abap_structdescr=&amp;gt;create( lt_component ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*TRY.&lt;/P&gt;&lt;P&gt;CALL METHOD cl_abap_tabledescr=&amp;gt;create&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    p_line_type  = obj_struc2&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_table_kind = TABLEKIND_STD&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_unique     = ABAP_FALSE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_key        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_key_kind   = KEYDEFKIND_DEFAULT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  RECEIVING&lt;/P&gt;&lt;P&gt;    p_result     = obj_table2.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CATCH cx_sy_table_creation .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH: lt_component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA obj_data2 TYPE HANDLE obj_table2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN obj_data2-&amp;gt;* TO &amp;lt;table2&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 10:47:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505220#M1558932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T10:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505221#M1558933</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;    Check if abap_component_tab exists in TYPE-POOLS: abap.&lt;/P&gt;&lt;P&gt;    This did not give any errors for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 11:01:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505221#M1558933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T11:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505222#M1558934</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;PRE&gt;&lt;CODE&gt;
i will create dynamic a table but there is a Problem with the type "ABAP_COMPONENT_TAB", he said that it is not exist.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Who said ? If you are getting the syntax then try to see the Types -Pools ABAP where you have table defined there or not with name ABAP_COMPONENT_TAB. If not then declare the component table using the structure "abap_componentdescr".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if this works for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SRinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 11:02:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505222#M1558934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T11:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505223#M1558935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks i have checked and have corrected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But now there is another Error, the Methode Create is not common .&lt;/P&gt;&lt;P&gt;I think the name is maybe different??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD cl_abap_tabledescr=&amp;gt;create&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    p_line_type  = obj_struc1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_table_kind = TABLEKIND_STD&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_unique     = ABAP_FALSE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_key        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   p_key_kind   = KEYDEFKIND_DEFAULT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  RECEIVING&lt;/P&gt;&lt;P&gt;   p_result     = obj_table1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 11:19:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505223#M1558935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T11:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505224#M1558936</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;There are several techniques for creating dynamic tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Always you can choose different method ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table
     EXPORTING
            it_fieldcatalog           = lt_fieldcat
     IMPORTING
            ep_table                  = lt_dyn_table
     EXCEPTIONS
            generate_subpool_dir_full = 1
            OTHERS                    = 2.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 11:23:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505224#M1558936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T11:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505225#M1558937</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;the Method (CL_ABAP_STRUCTDESCR=&amp;gt;create) is Static and Protected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With wich Method can I get a structure of my internal Table "database"???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 11:41:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505225#M1558937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T11:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505226#M1558938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;... but &lt;STRONG&gt;never&lt;/STRONG&gt; use cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;because this method will do an unwanted database COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this, roughly:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;METHOD create_data.
    DATA:
      lo_structdescr         TYPE REF TO cl_abap_structdescr,
      lo_typedescr           TYPE REF TO cl_abap_typedescr,
      lo_tabledescr          TYPE REF TO cl_abap_tabledescr,
      lt_lvc_scol            TYPE lvc_t_scol,
      lt_lvc_styl            TYPE lvc_t_styl,
      lt_comp_all            TYPE cl_abap_structdescr=&amp;gt;component_table.
    FIELD-SYMBOLS:
      &amp;lt;component&amp;gt;            TYPE LINE OF abap_component_tab.

    APPEND INITIAL LINE TO lt_comp_all ASSIGNING &amp;lt;component&amp;gt;.
    &amp;lt;component&amp;gt;-type ?= cl_abap_datadescr=&amp;gt;describe_by_data( lt_lvc_styl ).
    &amp;lt;component&amp;gt;-name = lc_fieldname_t_styl.

    APPEND INITIAL LINE TO lt_comp_all ASSIGNING &amp;lt;component&amp;gt;.
    &amp;lt;component&amp;gt;-type ?= cl_abap_datadescr=&amp;gt;describe_by_data( lt_lvc_scol ).
    &amp;lt;component&amp;gt;-name = lc_fieldname_t_color.

* create structure description
    lo_structdescr = cl_abap_structdescr=&amp;gt;create( lt_comp_all ).

* create table description for structure
    lo_tabledescr = cl_abap_tabledescr=&amp;gt;create(
                    p_line_type  = lo_structdescr
                    p_table_kind = cl_abap_tabledescr=&amp;gt;tablekind_std
                    p_unique     = abap_false ).

* create data object
    CREATE DATA rr_dispodata TYPE HANDLE lo_tabledescr.

  ENDMETHOD.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 11:43:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505226#M1558938</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-11-17T11:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505227#M1558939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for youuuu excellent help and i have understand it, BUT int the table cl_abap_structdescr i cant find the method CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the reason for this Problem??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 11:51:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505227#M1558939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T11:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505228#M1558940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;?? What SAP release are you working with? These classes have been enhanced a couple of times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOAD_CLASS
CLASS_CONSTRUCTOR
GET_COMPONENT_TYPE
GET_DDIC_FIELD_LIST
CREATE
GET_COMPONENTS
GET_INCLUDED_VIEW
GET_SYMBOLS
CREATE_STRUCTDESCR_OBJECT
XTYP_TO_STRUC_DESC
CREATE_XTYP_FROM_STRUC_DESC&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in ECC600, ABA_701.&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 11:57:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505228#M1558940</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-11-17T11:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505229#M1558941</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;many sorry to all helps.&lt;/P&gt;&lt;P&gt;It was my stupid mistake, i work in Release 4.7 and there is missing the Method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other alternativ is there to create a structure over ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks again for your helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 12:10:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505229#M1558941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T12:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505230#M1558942</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;what did I do when the new RTTS runtime time type services where not available?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create and use a dictionary structure with all fields ever used. Then in field catalog, set all unused fields as TECH = 'X'.&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 12:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505230#M1558942</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-11-17T12:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Tables!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505231#M1558943</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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Can anybody please tell me the purpose of P_KEY_KIND parameter in &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&lt;STRONG&gt;cl_abap_tabledescr=&amp;gt;create" &lt;/STRONG&gt;method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I found that there is 3 different key kinds are 'KEYDEFKIND_DEFAULT' , 'KEYDEFKIND_USER'&amp;nbsp; and 'KEYDEFKIND_TABLELINE'. What is the purpose of these key kinds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Feb 2013 06:47:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-tables/m-p/7505231#M1558943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-02-02T06:47:22Z</dc:date>
    </item>
  </channel>
</rss>

