<?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: Comparing fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497069#M230717</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are missing and AND statement inbetween. Just check below which added in bold letters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF GT_IN-BSTART = ' ' AND GT_IN-BEND = ' ' AND GT_IN-FSTART = ' '  &amp;lt;b&amp;gt;AND&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;GT_IN-FEND = ' ' AND GT_IN-ASTART = ' ' AND GT_IN-AEND = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Aug 2006 09:21:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-23T09:21:12Z</dc:date>
    <item>
      <title>Comparing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497064#M230712</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 am getting problem with comparing blank fields in table gt_in. Syntax is this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF GT_IN-BSTART = ' ' AND GT_IN-BEND = ' ' AND GT_IN-FSTART = ' '&lt;/P&gt;&lt;P&gt;    GT_IN-FEND = ' ' AND GT_IN-ASTART = ' ' AND GT_IN-AEND = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error:&lt;/P&gt;&lt;P&gt;Incorrect logical expression: Comparison / SELECT-OPTION can only be followed by "AND", "OR" or ")".		&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 09:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497064#M230712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T09:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497065#M230713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You missed one AND.. use the following..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF GT_IN-BSTART = ' ' AND GT_IN-BEND = ' ' AND GT_IN-FSTART = ' ' AND
GT_IN-FEND = ' ' AND GT_IN-ASTART = ' ' AND GT_IN-AEND = ' '.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 09:15:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497065#M230713</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-08-23T09:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497066#M230714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF ( GT_IN-BSTART = ' ' AND &lt;/P&gt;&lt;P&gt;     GT_IN-BEND = ' ' AND &lt;/P&gt;&lt;P&gt;     GT_IN-FSTART = ' ' &amp;lt;b&amp;gt;and&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;GT_IN-FEND = ' ' AND &lt;/P&gt;&lt;P&gt;GT_IN-ASTART = ' ' AND &lt;/P&gt;&lt;P&gt;GT_IN-AEND = ' ' ).&lt;/P&gt;&lt;P&gt; YOu missed one AND(the one in bold).&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 09:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497066#M230714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T09:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497067#M230715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;between these 2 fields in the if condition, there is no AND operator given&lt;/P&gt;&lt;P&gt;GT_IN-FSTART = ' '&lt;/P&gt;&lt;P&gt;GT_IN-FEND = ' '&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 09:16:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497067#M230715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T09:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497068#M230716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are missing one 'AND' inbetween the expression. Use the code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF GT_IN-BSTART = ' ' AND GT_IN-BEND = ' ' AND GT_IN-FSTART = ' ' &amp;lt;b&amp;gt;AND&amp;lt;/b&amp;gt; GT_IN-FEND = ' ' AND GT_IN-ASTART = ' ' AND GT_IN-AEND = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Pragya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 09:17:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497068#M230716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T09:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497069#M230717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are missing and AND statement inbetween. Just check below which added in bold letters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF GT_IN-BSTART = ' ' AND GT_IN-BEND = ' ' AND GT_IN-FSTART = ' '  &amp;lt;b&amp;gt;AND&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;GT_IN-FEND = ' ' AND GT_IN-ASTART = ' ' AND GT_IN-AEND = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 09:21:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497069#M230717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T09:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497070#M230718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF GT_IN-BSTART = ' ' AND GT_IN-BEND = ' ' AND GT_IN-FSTART = ' ' &amp;lt;b&amp;gt;AND&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;GT_IN-FEND = ' ' AND GT_IN-ASTART = ' ' AND GT_IN-AEND = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Surely you were missing the 'AND'in your above statement the other way to check blank is to use IS INITIAL check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF GT_IN-BSTART IS INITIAL AND&lt;/P&gt;&lt;P&gt;   GT_IN-BEND IS INITIAL AND&lt;/P&gt;&lt;P&gt;   GT_IN-FSTART IS INITIAL AND&lt;/P&gt;&lt;P&gt;   GT_IN-FEND IS INITIAL AND&lt;/P&gt;&lt;P&gt;   GT_IN-ASTART IS INITIAL AND&lt;/P&gt;&lt;P&gt;   GT_IN-AEND IS INTIAL.&lt;/P&gt;&lt;P&gt;  ....&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 10:16:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/comparing-fields/m-p/1497070#M230718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T10:16:19Z</dc:date>
    </item>
  </channel>
</rss>

