<?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: Type identification and description at runtime in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952164#M392121</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Axel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first of all you need to get a Descriptor Object, maybe like that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 
  data:  
    rtti_Handle  type ref to Cl_Abap_DataDesr.

   rtti_Handle = cl_Abap_TypeDesc=&amp;gt;describe_By_Data_Ref( your_Ref ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is already the structure handle go on. If this is a handle of the internal table some pre or follow up operations are necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But assume this is the Handle for the Structure. Next you need to check if this is a DDic Type by calling method is_DDic_Type( ). Only in case this condition is true you may pass the type name to ALV. Non DDIC Type are not usable for this purpose!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get the type name now. Maybe there is a need to Remove the global type prefix (something like '\TYPE=TADIR') by splitting at the = sign.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Voila&lt;/P&gt;&lt;P&gt;  Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Feb 2007 20:40:01 GMT</pubDate>
    <dc:creator>former_member183804</dc:creator>
    <dc:date>2007-02-15T20:40:01Z</dc:date>
    <item>
      <title>Type identification and description at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952160#M392117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ABAP Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I like to get the structure name of an reference variable during the runtime, which is assign to a DDIC Table.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;DATA: ref_tab TYPE REF TO data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;fs_sflight&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create data ref_tab type table of sflight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign ref_tab to &amp;lt;fs_sflight&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I get now the name of the structure ('SFLIGHT') from 'ref_tab'. The reason is I like to call the ALV-GRID method 'SET_TABLE_FOR_FIRST_DISPLAY' to display the sflight data in field-symbol &amp;lt;fs_sflight&amp;gt;. Therefore I need a structure name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your answers.&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;Axel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 08:07:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952160#M392117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T08:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Type identification and description at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952161#M392118</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;DATA: ref_tab TYPE REF TO data.

FIELD-SYMBOLS: &amp;lt;fs_sflight&amp;gt; type any.

create data ref_tab type table of sflight.
Ref_data = 'SFLIGHT'.
assign (ref_tab) to &amp;lt;fs_sflight&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 08:39:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952161#M392118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T08:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Type identification and description at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952162#M392119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudheer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for you answer, but my description was mybe not correct. I have a method which returns the content of a certain table e.g. Sflight but maybe the content of another structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Method call looks like this:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the refernce variable (e.g. Sflight)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &amp;lt;i&amp;gt;gs_objects-object-&amp;gt;get_details( IMPORTING et_details = lr_dtl ).  &lt;/P&gt;&lt;P&gt;        ASSIGN lr_dtl-&amp;gt;* TO &amp;lt;fs_details&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD go_alv_grid_dtl-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           I_BUFFER_ACTIVE               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           I_BYPASSING_BUFFER            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           I_CONSISTENCY_CHECK           =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;              i_structure_name              = &amp;lt;b&amp;gt;"Here I need a structure name"&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IS_VARIANT                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           I_SAVE                        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           I_DEFAULT                     = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IS_LAYOUT                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IS_PRINT                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IT_SPECIAL_GROUPS             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IT_TOOLBAR_EXCLUDING          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IT_HYPERLINK                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IT_ALV_GRAPHICS               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IT_EXCEPT_QINFO               =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            CHANGING&lt;/P&gt;&lt;P&gt;              it_outtab                     = &amp;lt;fs_details&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IT_FIELDCATALOG               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IT_SORT                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IT_FILTER                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           INVALID_PARAMETER_COMBINATION = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           PROGRAM_ERROR                 = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           TOO_MANY_LINES                = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           others                        = 4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                  .&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully it makes it now more clear.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Axel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 08:53:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952162#M392119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T08:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Type identification and description at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952163#M392120</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 have solved the issue like following. If somebody has a better solution don´t hesitate to post it here.&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;Axel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+DATA: lr_dtl     TYPE REF TO data,&lt;/P&gt;&lt;P&gt;          lo_typdesc TYPE REF TO cl_abap_typedescr,&lt;/P&gt;&lt;P&gt;          lo_tabdesc TYPE REF TO cl_abap_tabledescr,&lt;/P&gt;&lt;P&gt;          lo_strdesc TYPE REF TO cl_abap_structdescr,&lt;/P&gt;&lt;P&gt;          lt_ddfield TYPE ddfields,&lt;/P&gt;&lt;P&gt;          ls_ddfield TYPE LINE OF ddfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    FIELD-SYMBOLS:  TYPE ANY TABLE.+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get reference variable&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;EM&gt;gs_objects-object-&amp;gt;get_details( IMPORTING et_details = lr_dtl ).&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;assign reference variable to field symbol&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;EM&gt;ASSIGN lr_dtl-&amp;gt;* TO &amp;lt;fs_details&amp;gt;.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Object typ determine and create instance&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        +CALL METHOD cl_abap_typedescr=&amp;gt;describe_by_data_ref&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            p_data_ref           = lr_dtl&lt;/P&gt;&lt;P&gt;          RECEIVING&lt;/P&gt;&lt;P&gt;            p_descr_ref          = lo_typdesc&lt;/P&gt;&lt;P&gt;          EXCEPTIONS&lt;/P&gt;&lt;P&gt;            reference_is_initial = 1&lt;/P&gt;&lt;P&gt;            OTHERS               = 2.&lt;/P&gt;&lt;P&gt;        IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;        ENDIF.+&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Widening Cast&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;cl_abap_tabledescr = cl_abap_typedescr&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;EM&gt;lo_tabdesc ?= lo_typdesc.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;structure typ determination und create instance&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        +CALL METHOD lo_tabdesc-&amp;gt;get_table_line_type&lt;/P&gt;&lt;P&gt;          RECEIVING&lt;/P&gt;&lt;P&gt;            p_descr_ref = lo_typdesc.+&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Widening Cast&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;cl_abap_structdescr = cl_abap_typedescr&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;EM&gt;lo_strdesc ?= lo_typdesc.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get list of DDIC description and components&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       + lt_ddfield = lo_strdesc-&amp;gt;get_ddic_field_list( ).+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get DDIC-Structure name (Field: TABNAME)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        &lt;EM&gt;READ TABLE lt_ddfield INTO ls_ddfield INDEX 1.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;display ALV-GRID &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        +IF  0.&lt;/P&gt;&lt;P&gt;            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;                       WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;        ENDIF.+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 13:09:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952163#M392120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T13:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Type identification and description at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952164#M392121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Axel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first of all you need to get a Descriptor Object, maybe like that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 
  data:  
    rtti_Handle  type ref to Cl_Abap_DataDesr.

   rtti_Handle = cl_Abap_TypeDesc=&amp;gt;describe_By_Data_Ref( your_Ref ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is already the structure handle go on. If this is a handle of the internal table some pre or follow up operations are necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But assume this is the Handle for the Structure. Next you need to check if this is a DDic Type by calling method is_DDic_Type( ). Only in case this condition is true you may pass the type name to ALV. Non DDIC Type are not usable for this purpose!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get the type name now. Maybe there is a need to Remove the global type prefix (something like '\TYPE=TADIR') by splitting at the = sign.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Voila&lt;/P&gt;&lt;P&gt;  Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 20:40:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952164#M392121</guid>
      <dc:creator>former_member183804</dc:creator>
      <dc:date>2007-02-15T20:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Type identification and description at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952165#M392122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Klaus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks you for you answer. The Referenz Variable (LR_DTL) is pointing to an Internal Table, therefore I got as description object the type CL_ABAP_TABLEDESCR back. With this typ the methods "IS_DDIC_TYPE()" or "GET_RELATIVE_NAME" or not working. I did another widening cast with the method "GET_TABLE_LINE_TYPE()" and get the object of class CL_ABAP_STRUTDESC back. This object allows me to call the method "GET_RELATIVE_NAME", which gives me the correct DDIC-Structure name.&lt;/P&gt;&lt;P&gt;Please see coding below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Axel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This statement gives me a Instance of Class CL_ABAP_TABLEDESCR back.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Widening Cast&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        lo_tabdesc ?= cl_abap_typedescr=&amp;gt;describe_by_data_ref( lr_dtl ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This statement gives me a Instance of Class CL_ABAP_STRUCTDESCR back.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Widening Cast&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          lo_strdesc ?= lo_tabdesc-&amp;gt;get_table_line_type( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Now I get the required DDIC Structure name&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          lv_tabname = lo_strdesc-&amp;gt;get_relative_name( ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 08:42:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-identification-and-description-at-runtime/m-p/1952165#M392122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T08:42:05Z</dc:date>
    </item>
  </channel>
</rss>

