<?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: Please let me know which code is right ?? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-let-me-know-which-code-is-right/m-p/2987303#M705435</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;Both codes are correct.&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Nov 2007 15:13:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-01T15:13:10Z</dc:date>
    <item>
      <title>Please let me know which code is right ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-let-me-know-which-code-is-right/m-p/2987301#M705433</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;if I am writing a slect statement on MARC table and have to keep a condition on field LVORM (Flag Material for Deletion at Plant Level). Which is right code and what is performnace issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from marc into table it_marc&lt;/P&gt;&lt;P&gt;         where matnr = p_matnr and&lt;/P&gt;&lt;P&gt;               lvorm eq SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from marc into table it_marc&lt;/P&gt;&lt;P&gt;         where matnr = p_matnr and&lt;/P&gt;&lt;P&gt;               lvorm = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which one is right ???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 15:11:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-let-me-know-which-code-is-right/m-p/2987301#M705433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T15:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Please let me know which code is right ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-let-me-know-which-code-is-right/m-p/2987302#M705434</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; Madhu, both the select statements are fine. TO reduce the performance you can select fields instead of SELECT * unless you need all the fields from MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Cheers&lt;/P&gt;&lt;P&gt; VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 15:12:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-let-me-know-which-code-is-right/m-p/2987302#M705434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T15:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: Please let me know which code is right ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-let-me-know-which-code-is-right/m-p/2987303#M705435</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;Both codes are correct.&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 15:13:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-let-me-know-which-code-is-right/m-p/2987303#M705435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T15:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Please let me know which code is right ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-let-me-know-which-code-is-right/m-p/2987304#M705436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;select * from marc into table it_marc&lt;/P&gt;&lt;P&gt;where matnr = p_matnr and&lt;/P&gt;&lt;P&gt;lvorm = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write it as, I observe there is no blank between two single quotes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from marc into table it_marc&lt;/P&gt;&lt;P&gt;where matnr = p_matnr and&lt;/P&gt;&lt;P&gt;lvorm = '  '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;KC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 15:18:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-let-me-know-which-code-is-right/m-p/2987304#M705436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T15:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Please let me know which code is right ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-let-me-know-which-code-is-right/m-p/2987305#M705437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijayendra Rao  / Ferry, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for quick replies. Closing thread. points rewarded&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Madhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 15:20:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-let-me-know-which-code-is-right/m-p/2987305#M705437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T15:20:33Z</dc:date>
    </item>
  </channel>
</rss>

