<?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 Open SQL Question in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127974#M446969</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello James, &lt;/P&gt;&lt;P&gt;I have written some code in my pgm. Check it below :&lt;/P&gt;&lt;P&gt;(I have maintained a table which has a structure like :&lt;/P&gt;&lt;P&gt;TABLE1 (table name)&lt;/P&gt;&lt;P&gt;FIELD1 (Field in the table)&lt;/P&gt;&lt;P&gt;SELECTION ( If this field is a Sel option / can be selected )&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;dynmaische where_tab&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  l_fieldname-sign   = 'I'.&lt;/P&gt;&lt;P&gt;  l_fieldname-option = 'EQ'.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;(Gtab contains the Sel Info)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT gtab_map INTO l_str_map&lt;/P&gt;&lt;P&gt;       WHERE table1    = gcon_table_vtbfha&lt;/P&gt;&lt;P&gt;         AND selection = gcon_xon.&lt;/P&gt;&lt;P&gt;    l_fieldname-low = l_str_map-field1.&lt;/P&gt;&lt;P&gt;    APPEND l_fieldname TO l_range_vtbfha.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;where_tab aufbauen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'FREE_SELECTIONS_RANGE_2_WHERE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      field_ranges  = l_tab_trange&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      where_clauses = l_tab_where_clauses.&lt;/P&gt;&lt;P&gt;  READ TABLE l_tab_where_clauses INTO l_str_where_clauses&lt;/P&gt;&lt;P&gt;       WITH KEY tablename = gcon_table_vtbfha.&lt;/P&gt;&lt;P&gt;  c_where_vtbfha = l_str_where_clauses-where_tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Apr 2007 10:52:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-04T10:52:18Z</dc:date>
    <item>
      <title>Dynamic Open SQL Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127969#M446964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I'm working on a programme in which, tablename, fieldname and the where conditions are all specified on-the-fly i.e. dynamically, even the type for the field is unknown. I've searched through some tips in this forum and some example given fetches the whole line from the database. Obviously this is what I intend to avoid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone show me the rope on how to write such a dynamic sql statement? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 10:26:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127969#M446964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T10:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Open SQL Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127970#M446965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi James,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be this helps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: g_fld(20), g_tbl(20), g_wre(20).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;g_fld = 'matnr makt'.&lt;/P&gt;&lt;P&gt;g_tbl = 'maktx'.&lt;/P&gt;&lt;P&gt;g_wre = 'matnr = g_matnr'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select (g_fld) from (g_tbl) where (g_wre).&lt;/P&gt;&lt;P&gt;"Process you data here&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 10:36:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127970#M446965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T10:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Open SQL Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127971#M446966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select (fields)&lt;/P&gt;&lt;P&gt;          from (table)&lt;/P&gt;&lt;P&gt;          where (condition)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may need to create an internal table dynamically aswell.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 10:37:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127971#M446966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T10:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Open SQL Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127972#M446967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But in this way, obviously I have to write a bunch of if-elses to define variables of different types to hold the search results, because I dont know the field's type. If it's an int, I would write: data: fld type int. suppose it's a count(field) select, it probably looks like: select (fld) into fld. if it's a string, then I would define a string type to hold the value. This is also a question for where conditions when I concatenate the strings because the types are unknown.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 10:41:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127972#M446967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T10:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Open SQL Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127973#M446968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you give me some examples to achieve the goal? Since I'm not quite familiar with the dynamic tech.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 10:46:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127973#M446968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T10:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Open SQL Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127974#M446969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello James, &lt;/P&gt;&lt;P&gt;I have written some code in my pgm. Check it below :&lt;/P&gt;&lt;P&gt;(I have maintained a table which has a structure like :&lt;/P&gt;&lt;P&gt;TABLE1 (table name)&lt;/P&gt;&lt;P&gt;FIELD1 (Field in the table)&lt;/P&gt;&lt;P&gt;SELECTION ( If this field is a Sel option / can be selected )&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;dynmaische where_tab&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  l_fieldname-sign   = 'I'.&lt;/P&gt;&lt;P&gt;  l_fieldname-option = 'EQ'.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;(Gtab contains the Sel Info)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT gtab_map INTO l_str_map&lt;/P&gt;&lt;P&gt;       WHERE table1    = gcon_table_vtbfha&lt;/P&gt;&lt;P&gt;         AND selection = gcon_xon.&lt;/P&gt;&lt;P&gt;    l_fieldname-low = l_str_map-field1.&lt;/P&gt;&lt;P&gt;    APPEND l_fieldname TO l_range_vtbfha.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;where_tab aufbauen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'FREE_SELECTIONS_RANGE_2_WHERE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      field_ranges  = l_tab_trange&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      where_clauses = l_tab_where_clauses.&lt;/P&gt;&lt;P&gt;  READ TABLE l_tab_where_clauses INTO l_str_where_clauses&lt;/P&gt;&lt;P&gt;       WITH KEY tablename = gcon_table_vtbfha.&lt;/P&gt;&lt;P&gt;  c_where_vtbfha = l_str_where_clauses-where_tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 10:52:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127974#M446969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T10:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Open SQL Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127975#M446970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srivijaya,&lt;/P&gt;&lt;P&gt;I'm not sure about your code because I dont see where you generate the sql statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically I think to achieve this goal, it should involve some defined field symbol with some data assigned to it, this is the example I searched in this forum:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: a_table_line TYPE REF TO data.&lt;/P&gt;&lt;P&gt;DATA: table_lines  TYPE STANDARD TABLE OF REF TO data.&lt;/P&gt;&lt;P&gt;DATA: c TYPE cursor.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;line&amp;gt;  TYPE ANY.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;field&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_tab TYPE dd02l-tabname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  OPEN CURSOR c FOR SELECT * FROM (p_tab)&lt;/P&gt;&lt;P&gt;       ORDER BY PRIMARY KEY.&lt;/P&gt;&lt;P&gt;  DO.&lt;/P&gt;&lt;P&gt;    CREATE DATA a_table_line TYPE (p_tab).&lt;/P&gt;&lt;P&gt;    ASSIGN a_table_line-&amp;gt;* TO &amp;lt;line&amp;gt;.&lt;/P&gt;&lt;P&gt;    FETCH NEXT CURSOR c INTO &amp;lt;line&amp;gt;.&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;      CLOSE CURSOR c.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    APPEND a_table_line TO table_lines.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT table_lines INTO a_table_line.&lt;/P&gt;&lt;P&gt;    ASSIGN a_table_line-&amp;gt;* TO &amp;lt;line&amp;gt;.&lt;/P&gt;&lt;P&gt;    NEW-LINE.&lt;/P&gt;&lt;P&gt;    DO 6 TIMES.&lt;/P&gt;&lt;P&gt;      CHECK sy-index &amp;gt; 1.&lt;/P&gt;&lt;P&gt;      ASSIGN COMPONENT sy-index OF STRUCTURE &amp;lt;line&amp;gt; TO &amp;lt;field&amp;gt;.&lt;/P&gt;&lt;P&gt;      IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      WRITE: &amp;lt;field&amp;gt;.&lt;/P&gt;&lt;P&gt;    ENDDO.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, it searches the whole line in the DB while I only require 1 field, I have no idea how to modify this programme to suit my need. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 10:58:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127975#M446970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T10:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Open SQL Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127976#M446971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi james,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create a new Table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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 = IT_LVC_CAT&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      ep_table        = new_table.&lt;/P&gt;&lt;P&gt;With this u can create a dymanic table and also refer this wiki &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/dynamic%2binternal%2btable" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/dynamic%2binternal%2btable&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will get idea how to create dynamic itab.  With this you need not to create sql using if ..then.. and no pro of fld type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 11:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127976#M446971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T11:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Open SQL Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127977#M446972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;add all the Sel options to l_tab_trange . &lt;/P&gt;&lt;P&gt;For building dynamic where clauses use the function.&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;c_where          TYPE rsds_where_tab&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FREE_SELECTIONS_RANGE_2_WHERE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      field_ranges  = l_tab_trange&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      where_clauses = l_tab_where_clauses.&lt;/P&gt;&lt;P&gt;  READ TABLE l_tab_where_clauses INTO l_str_where_clauses&lt;/P&gt;&lt;P&gt;       WITH KEY tablename = TABLE.&lt;/P&gt;&lt;P&gt;  c_where = l_str_where_clauses-where_tab.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;CREATE A DYN TABLE &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&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 = ifc&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      ep_table        = dy_table.&lt;/P&gt;&lt;P&gt;  ASSIGN dy_table-&amp;gt;* TO &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT (fieLd1) FROM (p_tab) INTO CORRESPONDING FIELDS OF TABLE &lt;/P&gt;&lt;P&gt;&amp;lt;ITAB&amp;gt; WHERE (u_where). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I GUESS .. THIS SHLD BE THE APPROACH.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 11:17:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127977#M446972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T11:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Open SQL Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127978#M446973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CHECK THIS IF HELPFUL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9d/05b8d660f77f4387d6d054d7655ecb/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9d/05b8d660f77f4387d6d054d7655ecb/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9d/05b8d660f77f4387d6d054d7655ecb/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9d/05b8d660f77f4387d6d054d7655ecb/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 11:30:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127978#M446973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T11:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Open SQL Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127979#M446974</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;Sorry that I forgot to mention my programme needs to support ABAP 46C as well, not sure if RTTI could be used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 11:35:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-open-sql-question/m-p/2127979#M446974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T11:35:57Z</dc:date>
    </item>
  </channel>
</rss>

