<?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>Question Re: Like Operator in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692438#M3467281</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;If transaction no starts with GR then i need to hide a particular section.The value for transaction no is &lt;STRONG&gt;GR_9&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;I wrote condition like this&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;transaction_no like "G?" but not working .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Transaction_no like 'GR%' should work in this scenario.&lt;/P&gt;&lt;P&gt;and also rememnber that value given is case sensitive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyaranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Sep 2013 06:17:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-09-02T06:17:25Z</dc:date>
    <item>
      <title>Like Operator</title>
      <link>https://community.sap.com/t5/technology-q-a/like-operator/qaq-p/9692433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to check the below condition to suppress a section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My query is like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT scan_mode,STATUS,transaction_no FROM gfi_transaction WHERE transaction_id={?TID}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If transaction no starts with GR then i need to hide a particular section.The value for transaction no is &lt;STRONG&gt;GR_9&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wrote condition like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;transaction_no like "G?" but not working .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Sep 2013 09:06:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/like-operator/qaq-p/9692433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-01T09:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Like Operator</title>
      <link>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692434#M3467277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The formula should be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;transaction_no LIKE "GR*"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;-Abhilash&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 05:27:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692434#M3467277</guid>
      <dc:creator>abhilash_kumar</dc:creator>
      <dc:date>2013-09-02T05:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Like Operator</title>
      <link>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692435#M3467278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhilash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell why &lt;STRONG style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt; "G?"&lt;/STRONG&gt; is not working ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 05:40:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692435#M3467278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-02T05:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: Like Operator</title>
      <link>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692436#M3467279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's because '?' stands for a single character whereas '*' stands for any number of characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, 'G?' will be True only when the value is 'GO' or 'GT' etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'G*' will be True for longer words that start with G.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;-Abhilash&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 05:53:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692436#M3467279</guid>
      <dc:creator>abhilash_kumar</dc:creator>
      <dc:date>2013-09-02T05:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Like Operator</title>
      <link>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692437#M3467280</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;TRY with 'GR%'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyaranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 06:06:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692437#M3467280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-02T06:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Like Operator</title>
      <link>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692438#M3467281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;If transaction no starts with GR then i need to hide a particular section.The value for transaction no is &lt;STRONG&gt;GR_9&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;I wrote condition like this&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;transaction_no like "G?" but not working .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Transaction_no like 'GR%' should work in this scenario.&lt;/P&gt;&lt;P&gt;and also rememnber that value given is case sensitive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyaranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 06:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692438#M3467281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-02T06:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Like Operator</title>
      <link>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692439#M3467282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Priyaranjan, however '%' is Not a recognized wildcard symbol (with the LIKE operator) in Crystal Reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to use either '?' or '*' with the Like operator in Crystal Reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;-Abhilash&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 06:50:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/like-operator/qaa-p/9692439#M3467282</guid>
      <dc:creator>abhilash_kumar</dc:creator>
      <dc:date>2013-09-02T06:50:36Z</dc:date>
    </item>
  </channel>
</rss>

