<?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: Material Characteristics in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078818#M97129</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;You can try the BAPI_CHARACT_GETDETAIL. Pass it the characteristic name, and it will get you the corresponding details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 22 Oct 2005 06:44:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-22T06:44:44Z</dc:date>
    <item>
      <title>Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078817#M97128</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 have already posted this doubt. In MM03 if i go to Material Classification, i get a list of description based on the Class. Now as an ABAPer i need to get the Description. I dont know the Tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the FM 'QMSP_MATERIAL_BATCH_CLASS_READ' to get the Class of a Material by passing the material. Now how do i get the Characteristics description from the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 06:38:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078817#M97128</guid>
      <dc:creator>Murali_Shanmu</dc:creator>
      <dc:date>2005-10-22T06:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078818#M97129</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;You can try the BAPI_CHARACT_GETDETAIL. Pass it the characteristic name, and it will get you the corresponding details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 06:44:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078818#M97129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-22T06:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078819#M97130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My question is from where do i get Characteristic details using the Class of a Material. Pls help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 06:51:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078819#M97130</guid>
      <dc:creator>Murali_Shanmu</dc:creator>
      <dc:date>2005-10-22T06:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078820#M97131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want the select for these values, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT p~objek&lt;/P&gt;&lt;P&gt;         n~atnam&lt;/P&gt;&lt;P&gt;         p~atwrt&lt;/P&gt;&lt;P&gt;         n~atinn&lt;/P&gt;&lt;P&gt;  FROM ausp AS p&lt;/P&gt;&lt;P&gt;    INNER JOIN cabn AS n&lt;/P&gt;&lt;P&gt;    ON p&lt;SUB&gt;atinn = n&lt;/SUB&gt;atinn AND&lt;/P&gt;&lt;P&gt;       p&lt;SUB&gt;adzhl = n&lt;/SUB&gt;adzhl&lt;/P&gt;&lt;P&gt;  INTO TABLE itab&lt;/P&gt;&lt;P&gt;         WHERE p~objek = &amp;lt;Material number&amp;gt; AND&lt;/P&gt;&lt;P&gt;         p~mafid = &amp;lt;Class/Object indicator&amp;gt; AND&lt;/P&gt;&lt;P&gt;         p~klart = &amp;lt;Class&amp;gt; AND&lt;/P&gt;&lt;P&gt;         n~atnam = &amp;lt;Material characterstic&amp;gt;.&lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;P&gt;Pass the Material number to OBJEK, and the indicator for  Class/Object (field MAFID in table AUSP)to MAFID.&lt;/P&gt;&lt;P&gt;KLART specifies which class the characteristic belongs to (Material, Equipment, etc). This can be got from table TCLA.&lt;/P&gt;&lt;P&gt;ATNAM is the name of the charateristic you want the description for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 07:03:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078820#M97131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-22T07:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078821#M97132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sudha Mohan. I am able to see the Characteristic Desc ription for say material R90061. But when i go to AUSp table i am not able to see R90061 in the field OBJEK.&lt;/P&gt;&lt;P&gt;Should i look in some other table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 07:19:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078821#M97132</guid>
      <dc:creator>Murali_Shanmu</dc:creator>
      <dc:date>2005-10-22T07:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078822#M97133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you talking abt the values that you see in the tab 'Classification' in MM02?&lt;/P&gt;&lt;P&gt;If not, can you please describe how you are seeing the charateristic description for the material?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or are you looking for the description of the Class itself? In that case, you can go to table KLAH and give the name of the class in the CLASS field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sudha Mohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 07:28:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078822#M97133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-22T07:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078823#M97134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am looking for the values in Classification Tab only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 08:06:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078823#M97134</guid>
      <dc:creator>Murali_Shanmu</dc:creator>
      <dc:date>2005-10-22T08:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078824#M97135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you give me some more details? Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to the KLAH table and ensure that the Class exists there.&lt;/P&gt;&lt;P&gt;Then check in CABN for the characteristic (field CABN) and ensure that exists too. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you able to see the characteristics using MM02, it should exist in AUSP. MAke sure that the material number you enter for selection is converted internally (ie, material 100 should be given as 000000000000000100 - 18 chars).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 08:16:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078824#M97135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-22T08:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078825#M97136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data does exist in CABN and KALH table for Characteristics and Class respectively. Thats fine. I checked the AUSP table thoroughly. I am not having that material entry out there. I am new to ABAP and that why i am struggling here for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 08:46:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078825#M97136</guid>
      <dc:creator>Murali_Shanmu</dc:creator>
      <dc:date>2005-10-22T08:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078826#M97137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you convert the MM number into 18-char?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That seems to be only thing I can think of..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 08:52:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078826#M97137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-22T08:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078827#M97138</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;  Use function CLFM_SELECT_AUSP to read AUSP data for a material..&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;  DATA: t_ausp LIKE ausp OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CLFM_SELECT_AUSP'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    mafid                    = 'O'&lt;/P&gt;&lt;P&gt;    classtype                = '001'  "For Materials&lt;/P&gt;&lt;P&gt;    object                   = &amp;lt;Your Material Here&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FEATURE                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CLEAR_BUFFER             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  KEY_DATE                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WITH_CHANGE_NUMBER       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TABLE                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_ATZHL_SAME_INI         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_AENNR                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   EXP_AUSP                 =  t_ausp[]&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NO_VALUES                = 1&lt;/P&gt;&lt;P&gt;   OTHERS                   = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 1.&lt;/P&gt;&lt;P&gt;****No Characteristic Values for the Material&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Also if you want the description of a characteristic then you can get it from CABNT..&lt;/P&gt;&lt;P&gt;  ATINN = Internal characteristic number, SPRAS = sy-langu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ATBEZ is the characteristic description..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Also, AUSP will contain values only if they are maintained in the classification tab of the material,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  If just characteristics are visible with no values that means no entries in AUSP..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Pinnamaneni&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Pinnamaneni&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 08:54:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078827#M97138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-22T08:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078828#M97139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;please do have a look at FM '&amp;lt;b&amp;gt;CLAF_OBJECTS_OF_CLASS&amp;lt;/b&amp;gt;'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2005 15:57:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/1078828#M97139</guid>
      <dc:creator>former_member182371</dc:creator>
      <dc:date>2005-10-22T15:57:30Z</dc:date>
    </item>
  </channel>
</rss>

