<?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: Delete Serial number in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-serial-number/m-p/5180447#M1199264</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can have the deletion indicator for the seerial number ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In IQ02, enter material and the serial number..  in the resulting screen.. Mat.ser.no....functions.....deletion flag...set and save..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;karthick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Mar 2009 08:56:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-31T08:56:34Z</dc:date>
    <item>
      <title>Delete Serial number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-serial-number/m-p/5180445#M1199262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Serial number for a particular material is updated twice in the system.&lt;/P&gt;&lt;P&gt;I want to delete one number, both have different eqiupment number.&lt;/P&gt;&lt;P&gt;sugest me the way to solve this problem.&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, 13 Feb 2009 11:22:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-serial-number/m-p/5180445#M1199262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T11:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Serial number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-serial-number/m-p/5180446#M1199263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;If your post is with respect deleting a entry in a database table..?? then use delete statement on the DBTABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Delete from dbtab where &amp;lt;expression&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Delete dbtab from wa. " where wa contains complete specification of records with respect to primary key, the wa is similar structure of database table&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; *give the appropriate equipment number&lt;/P&gt;&lt;P&gt;This would solve your purpose with respect to data base tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sharath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 11:32:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-serial-number/m-p/5180446#M1199263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T11:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Serial number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-serial-number/m-p/5180447#M1199264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can have the deletion indicator for the seerial number ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In IQ02, enter material and the serial number..  in the resulting screen.. Mat.ser.no....functions.....deletion flag...set and save..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;karthick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2009 08:56:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-serial-number/m-p/5180447#M1199264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-31T08:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Serial number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-serial-number/m-p/5180448#M1199265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi do one thing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to delete the serial number which is recent ..&lt;/P&gt;&lt;P&gt;then use sort table itab in descending  &lt;/P&gt;&lt;P&gt;and  read with index 1 &lt;/P&gt;&lt;P&gt;and then delete . &lt;/P&gt;&lt;P&gt;or else if you want to delete the old one &lt;/P&gt;&lt;P&gt;then use sort table itab in ascending  &lt;/P&gt;&lt;P&gt;and  read with index 1 &lt;/P&gt;&lt;P&gt;and then delete . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or delete the record using the where condition&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2009 09:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-serial-number/m-p/5180448#M1199265</guid>
      <dc:creator>former_member203501</dc:creator>
      <dc:date>2009-03-31T09:06:57Z</dc:date>
    </item>
  </channel>
</rss>

