<?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: Classification FM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-fm/m-p/3777739#M908977</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CLAF_CLASSIFICATION_OF_OBJECTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION MODULES&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/abap/functions.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/functions.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/fmodules/fmssap.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/fmodules/fmssap.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/abap/index.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/victorav15/sapr3/abapfun.html" target="test_blank"&gt;http://www.geocities.com/victorav15/sapr3/abapfun.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Apr 2008 15:41:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-30T15:41:21Z</dc:date>
    <item>
      <title>Classification FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-fm/m-p/3777737#M908975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can someone give me the list of FM's which can be used to get the Classification information based on the Configuration Number?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 15:05:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classification-fm/m-p/3777737#M908975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T15:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Classification FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-fm/m-p/3777738#M908976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think with this function you will able to find out your data.&lt;/P&gt;&lt;P&gt;CLAF_CLASSIFICATION_OF_OBJECTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample for a vendor&lt;/P&gt;&lt;P&gt;  DATA: pw_object     TYPE ausp-objek,&lt;/P&gt;&lt;P&gt;        pw_class      TYPE sclass,&lt;/P&gt;&lt;P&gt;        pt_class      TYPE TABLE OF sclass,&lt;/P&gt;&lt;P&gt;        pw_objectdata TYPE clobjdat,&lt;/P&gt;&lt;P&gt;        pt_objectdata TYPE TABLE OF clobjdat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: pw_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE pt_lfa1 INTO pw_lfa1 WITH TABLE KEY lifnr = pw_lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Vendor Data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    SELECT SINGLE lifnr name1 adrnr&lt;/P&gt;&lt;P&gt;      FROM lfa1 INTO pw_lfa1&lt;/P&gt;&lt;P&gt;     WHERE lifnr = pw_lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;      MOVE: pw_lifnr TO pw_lfa1-lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   Classification&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      MOVE: pw_lfa1-lifnr TO pw_object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          class              = k_class&lt;/P&gt;&lt;P&gt;          classtype          = k_classtype&lt;/P&gt;&lt;P&gt;          object             = pw_object&lt;/P&gt;&lt;P&gt;          initial_charact    = space&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          t_class            = pt_class&lt;/P&gt;&lt;P&gt;          t_objectdata       = pt_objectdata&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          no_classification  = 1&lt;/P&gt;&lt;P&gt;          no_classtypes      = 2&lt;/P&gt;&lt;P&gt;          invalid_class_type = 3&lt;/P&gt;&lt;P&gt;          OTHERS             = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christophe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Apr 30, 2008 12:06 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 15:27:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classification-fm/m-p/3777738#M908976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T15:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Classification FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-fm/m-p/3777739#M908977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CLAF_CLASSIFICATION_OF_OBJECTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION MODULES&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/abap/functions.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/functions.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/fmodules/fmssap.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/fmodules/fmssap.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/abap/index.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/victorav15/sapr3/abapfun.html" target="test_blank"&gt;http://www.geocities.com/victorav15/sapr3/abapfun.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 15:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classification-fm/m-p/3777739#M908977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T15:41:21Z</dc:date>
    </item>
  </channel>
</rss>

