<?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: about Dynamic Conditions in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-dynamic-conditions/m-p/1693358#M304338</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     TABLES: VBAK.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS S_VBELN FOR VBAK-VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lV_STR1(20) TYPE C VALUE 'VBELN IN S_VBELN.'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: GI_WHERE(72) OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      GI_WHERE = LV_STR1.&lt;/P&gt;&lt;P&gt;       APPEND GI_WHERE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA GI_VBAK LIKE VBAK OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;SELECT VBELN&lt;/P&gt;&lt;P&gt;INTO TABLE GI_VBAK&lt;/P&gt;&lt;P&gt;FROM VBAK&lt;/P&gt;&lt;P&gt;WHERE (gi_where).&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Oct 2006 11:27:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-25T11:27:15Z</dc:date>
    <item>
      <title>about Dynamic Conditions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-dynamic-conditions/m-p/1693355#M304335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;if i want to use Dynamic Conditions in select,how can i do? Dynamic Conditions 'where'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 01:41:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-dynamic-conditions/m-p/1693355#M304335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-24T01:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: about Dynamic Conditions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-dynamic-conditions/m-p/1693356#M304336</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;PARAMETERS: airline(2) TYPE C, &lt;/P&gt;&lt;P&gt;            date       TYPE D. &lt;/P&gt;&lt;P&gt;DATA: where_clause TYPE STRING, &lt;/P&gt;&lt;P&gt;      connid       TYPE sflight-connid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE     'carrid = ''' airline '''' &lt;/P&gt;&lt;P&gt;            ' AND fldate = ''' date '''' INTO where_clause. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT connid FROM sflight INTO connid &lt;/P&gt;&lt;P&gt;  WHERE (where_clause). &lt;/P&gt;&lt;P&gt;  WRITE: / date, airline, connid. &lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 01:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-dynamic-conditions/m-p/1693356#M304336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-24T01:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: about Dynamic Conditions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-dynamic-conditions/m-p/1693357#M304337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Hong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also use function module &amp;lt;b&amp;gt;RH_DYNAMIC_WHERE_BUILD&amp;lt;/b&amp;gt; to automatically generate WHERE clauses consisting of AND conditions. The itab containing the WHERE clauses can, of course, be modified and adjusted.&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>Tue, 24 Oct 2006 02:12:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-dynamic-conditions/m-p/1693357#M304337</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2006-10-24T02:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: about Dynamic Conditions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-dynamic-conditions/m-p/1693358#M304338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     TABLES: VBAK.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS S_VBELN FOR VBAK-VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lV_STR1(20) TYPE C VALUE 'VBELN IN S_VBELN.'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: GI_WHERE(72) OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      GI_WHERE = LV_STR1.&lt;/P&gt;&lt;P&gt;       APPEND GI_WHERE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA GI_VBAK LIKE VBAK OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;SELECT VBELN&lt;/P&gt;&lt;P&gt;INTO TABLE GI_VBAK&lt;/P&gt;&lt;P&gt;FROM VBAK&lt;/P&gt;&lt;P&gt;WHERE (gi_where).&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Oct 2006 11:27:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-dynamic-conditions/m-p/1693358#M304338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-25T11:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: about Dynamic Conditions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-dynamic-conditions/m-p/1693359#M304339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;      You can build a string of the where clause using the concatenate and then pass that string to select as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT FROM table into table itab where (where_string).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Oct 2006 11:30:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-dynamic-conditions/m-p/1693359#M304339</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2006-10-25T11:30:16Z</dc:date>
    </item>
  </channel>
</rss>

