<?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 query in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408779#M1407464</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;can't we use dynamic cond for delete st.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i wnt to delete from itab on cond of a field value.&lt;/P&gt;&lt;P&gt;when i specify the selection screen field directly it is taking space for the field and deleting rec from itab, where it shd not delete bcz i havent specified the value for the selection screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Dec 2009 07:19:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-14T07:19:18Z</dc:date>
    <item>
      <title>dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408759#M1407444</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;i have five fields on selection screen. i may give input to any of the combinations.&lt;/P&gt;&lt;P&gt;Need to retrieve the data from standard table depending on the input given.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have tried using where by calling it dynamically but it is gng to dump showing error in the and condition of where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls help  me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:10:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408759#M1407444</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T06:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408760#M1407445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Post the code with what you have tried. That would be helpful to suggest better&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:11:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408760#M1407445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T06:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408761#M1407446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have 5 selection inputs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;say &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_input1&lt;/P&gt;&lt;P&gt;s_input2&lt;/P&gt;&lt;P&gt;s_input3&lt;/P&gt;&lt;P&gt;s_input4&lt;/P&gt;&lt;P&gt;s_input5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;are Input fields in selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara where&lt;/P&gt;&lt;P&gt;     matnr in S_INPUT1&lt;/P&gt;&lt;P&gt;     matkx in S_INPUT2&lt;/P&gt;&lt;P&gt;    matkx1 in S_INPUT3&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this solve your issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408761#M1407446</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-11-27T06:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408762#M1407447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is the code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have declared where as itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not i_field1 is initial.&lt;/P&gt;&lt;P&gt; concatenate 'field1 = ' ' ' ' i_field1' ' ' ' into where.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not i_field2 is initial.&lt;/P&gt;&lt;P&gt; concatenate 'and field1 = ' ' ' ' i_field1' ' ' ' into where.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this for five fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara where (where).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:16:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408762#M1407447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T06:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408763#M1407448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly u r trying to do? I dont really understand ur code. Never seen one like this before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U cannot use Where as an internal table variable as it is an SAP reserved keyword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Navita Gujral on Nov 27, 2009 7:20 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408763#M1407448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T06:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408764#M1407449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i dont know to which fields the data will be passed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose i pass data to fields 1 &amp;amp; 2 then i need to retrieve depending on only 1 &amp;amp; 2.&lt;/P&gt;&lt;P&gt;if we use the logic said by you it will take spaces for remaining fields which i dont want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:20:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408764#M1407449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T06:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408765#M1407450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the question is not posted clearly , you wont get the solution exactly .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:23:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408765#M1407450</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-11-27T06:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408766#M1407451</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;U might have forget to give space between fields while populating where clause dynamically.&lt;/P&gt;&lt;P&gt;Check for spaces and braces in the value of where condition in debugging.&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Data: l_v_where TYPE string.
      CONCATENATE 'KLAH~KLART = L_V_CLASSTY' 'AND'
      'KLAH~CLASS = L_V_CLASSNO' INTO l_v_where SEPARATED BY space.  " Space between fields

      SELECT cabn~atnam FROM cabn
        INNER JOIN ksml ON ksml~imerk = cabn~atinn
        INNER JOIN klah ON klah~clint = ksml~clint
        INTO TABLE l_t_tab
         WHERE (l_v_where).      " Check for spaces between fields here in debugging
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:23:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408766#M1407451</guid>
      <dc:creator>awin_prabhu</dc:creator>
      <dc:date>2009-11-27T06:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408767#M1407452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you may need to Check fm FVD_SELECT_OPTIONS_2_WHERE or  FREE_SELECTIONS_RANGE_2_WHERE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then will generate dynmic where clause statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:29:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408767#M1407452</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-11-27T06:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408768#M1407453</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;this is the way i need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in my requirement i have to check for each &amp;amp; every field whether it is initial or not.&lt;/P&gt;&lt;P&gt;if not initial &lt;/P&gt;&lt;P&gt;concatenate 'and field1='  into where1.&lt;/P&gt;&lt;P&gt;append where1 to where.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my query it is showing error at And in the where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:34:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408768#M1407453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T06:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408769#M1407454</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;You can first check if all the select options are initial or not,&lt;/P&gt;&lt;P&gt;then in your select query you can check the select options&lt;/P&gt;&lt;P&gt;with the &lt;STRONG&gt;IN&lt;/STRONG&gt; option in your select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&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;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:50:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408769#M1407454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T06:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408770#M1407455</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;Just a suggestion,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if not initial 
concatenate ' and field1=' into where1.  "Give a space before AND
append where1 to where.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408770#M1407455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T06:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408771#M1407456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Phew !! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you go. I did it with LIKP and the fields vbeln, ernam and erdat. Change it according to your requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here text-001 is the text symbol for quotes ( ' )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
tables : likp.
parameters: vbeln type likp-vbeln,
            ernam type likp-ernam,
            erdat type likp-erdat.

data: var1 type string,
      var2 type string,
      var3 type string.

data: var4 type string,
      var5 type string,
      var6 type string.

data: where(100) type c.
data: where1 like table of where.

if not vbeln is initial.
concatenate text-001 vbeln text-001 into var1.
var4 = 'VBELN'.
endif.

if not ernam is initial.
concatenate text-001 ernam text-001 into var2.
var5 = 'ERNAM'.
endif.


if not erdat is initial.
concatenate text-001 erdat text-001 into var3.
var6 = 'ERDAT'.
endif.


if not vbeln is initial.
concatenate 'VBELN =' var1 into where separated by space.
endif.

if not ernam is initial.
if vbeln is initial.
concatenate where 'ERNAM =' var2 into where separated by space.
else.
concatenate where 'AND ERNAM =' var2 into where separated by space.
endif.
endif.

if not erdat is initial.
if vbeln is initial and ernam is initial.
concatenate where 'ERDAT =' var3 into where separated by space.
else.
concatenate where 'AND ERDAT =' var3 into where separated by space.
endif.
endif.

append where to where1.

select single *
from likp
where (where1).

write: likp-vbeln, likp-ernam, likp-erdat.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 06:59:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408771#M1407456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T06:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408772#M1407457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may i know wht have u used for text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it seems it will for my requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 07:10:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408772#M1407457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T07:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408773#M1407458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have just used  ' (apostrophe ) for text symbol 001. You can replace text-001 with ```` to get the quotes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 07:12:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408773#M1407458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T07:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408774#M1407459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vikrant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;solved the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank u soo much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u dont mind may i have ur personal id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2009 11:05:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408774#M1407459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-27T11:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408775#M1407460</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;now while activating it is giving error as table as already been dec when i remove tables st, it is giving syntax error as target area must be dec explicitly with an into clause or by tables st.&lt;/P&gt;&lt;P&gt;so when i add tables st it is giving error while activating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2009 06:47:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408775#M1407460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-04T06:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408776#M1407461</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;&lt;/P&gt;&lt;P&gt;Post the code with what you have tried.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2009 07:16:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408776#M1407461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-04T07:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408777#M1407462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;got it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2009 07:20:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408777#M1407462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-04T07:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408778#M1407463</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;when i did the same in ides its working fine while in our system it is showing error at activation time as table is already dec if i comment tables st it will give error as target area needs to be dec, if i activate it by selecting anyways and run the prog it is going to dump and saying error at where cond and saying invalid value 'class' is used in internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls help  me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 10:49:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-query/m-p/6408778#M1407463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-07T10:49:24Z</dc:date>
    </item>
  </channel>
</rss>

