<?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 Material Class in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-material-class/m-p/5359873#M1233805</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use CL04 tcode for delete the class&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;you can delete the class in CL02 tcode using BDC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   PERFORM bdc_dynpro      USING 'SAPLCLMO' '0100'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'RMCLM-CLASS'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '/00'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'RMCLM-CLASS'&lt;/P&gt;&lt;P&gt;                               wa_unit-class.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'RMCLM-KLART'&lt;/P&gt;&lt;P&gt;                                    wa_unit-klart.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_dynpro      USING 'SAPLCLMO' '0100'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'RMCLM-CLASS'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '/00'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_dynpro      USING 'SAPLCLMO' '7777'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=CLLO'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Apr 2009 08:17:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-20T08:17:44Z</dc:date>
    <item>
      <title>Delete Material Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-material-class/m-p/5359871#M1233803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Freinds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any Tcode in SAP to delete a material class for particulaer materials other than MM02. Since in MM02 in BDC recording I am facing issue in selecting required class as it may be in any position and I need  to do it only through BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Meenu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 05:20:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-material-class/m-p/5359871#M1233803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T05:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Material Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-material-class/m-p/5359872#M1233804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Meenu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do it by recording the trasaction MM02 session in SHDB&lt;/P&gt;&lt;P&gt;and update the material record by putting the Material class value as empty ('').&lt;/P&gt;&lt;P&gt;and process the session its easy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more details :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow the steps :&lt;/P&gt;&lt;P&gt;1. Go to the Transaction code SHDB.&lt;/P&gt;&lt;P&gt;2. Record the Transaction MM02.&lt;/P&gt;&lt;P&gt;3. Create the BDC report by clicking the Program button.&lt;/P&gt;&lt;P&gt;4. Map the field value with relavant data.&lt;/P&gt;&lt;P&gt;5. Put the hard coded value for material calss fields as Empty ('')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 07:37:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-material-class/m-p/5359872#M1233804</guid>
      <dc:creator>dhirendra_pandit</dc:creator>
      <dc:date>2009-04-20T07:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Material Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-material-class/m-p/5359873#M1233805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use CL04 tcode for delete the class&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;you can delete the class in CL02 tcode using BDC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   PERFORM bdc_dynpro      USING 'SAPLCLMO' '0100'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'RMCLM-CLASS'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '/00'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'RMCLM-CLASS'&lt;/P&gt;&lt;P&gt;                               wa_unit-class.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'RMCLM-KLART'&lt;/P&gt;&lt;P&gt;                                    wa_unit-klart.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_dynpro      USING 'SAPLCLMO' '0100'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'RMCLM-CLASS'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '/00'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_dynpro      USING 'SAPLCLMO' '7777'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=CLLO'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 08:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-material-class/m-p/5359873#M1233805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T08:17:44Z</dc:date>
    </item>
  </channel>
</rss>

