<?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/4781040#M1120049</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the function module VC_I_GET_CONFIGURATION.&lt;/P&gt;&lt;P&gt;Find the below example prog. which give you an idea of how to use the Fn module VC_I_GET_CONFIGURATION.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
v_config = wa_vbap-cuobj.
if v_config is not initial.
	CALL FUNCTION 'VC_I_GET_CONFIGURATION'
	 EXPORTING
	  INSTANCE = v_config
	 TABLES
	  CONFIGURATION = i_configuration.
               IF SY-SUBRC &amp;lt;&amp;gt; 0.
                * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
              ENDIF.
loop at i_configuration into wa_configuration.
	if wa_configuration-ATNAM = 'A_THICK_MM'.
		v_thick = wa_configuration-atwtb.
	endif.
	if wa_configuration-ATNAM = 'A_WIDTH_MM'.
		v_width = wa_configuration-atwtb.
	endif.
endloop.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Nov 2008 12:04:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-19T12:04:05Z</dc:date>
    <item>
      <title>Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781036#M1120045</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 class details &amp;amp; batch no. of a material.But i am not getting characteristics values of each material.&lt;/P&gt;&lt;P&gt;Which table contains these information.How can i relate class with characteristics?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 11:48:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781036#M1120045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T11:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781037#M1120046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MARA or MM03&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 11:51:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781037#M1120046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T11:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781038#M1120047</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 didnt get wat data ur asking abt meterial&lt;/P&gt;&lt;P&gt;try mseg, mkpf, mara, marc, mard, makt&lt;/P&gt;&lt;P&gt;these are the main tables for materials &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 11:53:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781038#M1120047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T11:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781039#M1120048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AUSP and CABN&lt;/P&gt;&lt;P&gt;eg,&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF tp_kssk_klah,&lt;/P&gt;&lt;P&gt;        objek LIKE kssk-objek,              " Key of object to be classified&lt;/P&gt;&lt;P&gt;        mafid LIKE kssk-mafid,              " Indicator: Object/Class&lt;/P&gt;&lt;P&gt;        klart LIKE kssk-klart,              " Class Type&lt;/P&gt;&lt;P&gt;        clint LIKE kssk-clint,              " Internal Class Number&lt;/P&gt;&lt;P&gt;        adzhl LIKE kssk-adzhl,              " Internal counter for archiving objects via engin. chg. mgmt&lt;/P&gt;&lt;P&gt;        aennr LIKE kssk-aennr,              " Change Number&lt;/P&gt;&lt;P&gt;        class LIKE klah-class,              " Class number&lt;/P&gt;&lt;P&gt;       END OF tp_kssk_klah.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF tp_kssk_ksml,&lt;/P&gt;&lt;P&gt;       objek TYPE kssk-objek,&lt;/P&gt;&lt;P&gt;       klart TYPE kssk-klart,&lt;/P&gt;&lt;P&gt;       clint TYPE kssk-clint,&lt;/P&gt;&lt;P&gt;       atnam TYPE cabn-atnam,&lt;/P&gt;&lt;P&gt;       mafid TYPE kssk-mafid,&lt;/P&gt;&lt;P&gt;       posnr TYPE ksml-posnr,&lt;/P&gt;&lt;P&gt;       adzhl TYPE kssk-adzhl,&lt;/P&gt;&lt;P&gt;       imerk TYPE ksml-imerk,&lt;/P&gt;&lt;P&gt;       END OF tp_kssk_ksml.&lt;/P&gt;&lt;P&gt;DATA :   ig_kssk_klah TYPE STANDARD TABLE OF tp_kssk_klah WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;             ig_kssk_ksml TYPE STANDARD TABLE OF tp_kssk_ksml WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT a&lt;SUB&gt;objek a&lt;/SUB&gt;mafid a&lt;SUB&gt;klart a&lt;/SUB&gt;clint a&lt;SUB&gt;adzhl a&lt;/SUB&gt;aennr&lt;/P&gt;&lt;P&gt;             b~class&lt;/P&gt;&lt;P&gt;           INTO TABLE fp_ig_kssk_klah&lt;/P&gt;&lt;P&gt;           FROM kssk AS a JOIN klah AS b&lt;/P&gt;&lt;P&gt;           ON a&lt;SUB&gt;klart EQ b&lt;/SUB&gt;klart&lt;/P&gt;&lt;P&gt;           AND   a&lt;SUB&gt;clint EQ b&lt;/SUB&gt;clint&lt;/P&gt;&lt;P&gt;           FOR ALL ENTRIES IN it_matnr&lt;/P&gt;&lt;P&gt;           WHERE a~objek EQ it_matnr-matnr&lt;/P&gt;&lt;P&gt;           AND   b~klart IN s_klart&lt;/P&gt;&lt;P&gt;           AND   b~class IN s_class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SELECT a&lt;SUB&gt;objek a&lt;/SUB&gt;klart a&lt;SUB&gt;clint c&lt;/SUB&gt;atnam a&lt;SUB&gt;mafid b&lt;/SUB&gt;posnr a&lt;SUB&gt;adzhl b&lt;/SUB&gt;imerk&lt;/P&gt;&lt;P&gt;             INTO TABLE fp_ig_kssk_ksml&lt;/P&gt;&lt;P&gt;             FROM kssk AS a JOIN ksml AS b&lt;/P&gt;&lt;P&gt;             ON a&lt;SUB&gt;clint EQ b&lt;/SUB&gt;clint&lt;/P&gt;&lt;P&gt;             AND a&lt;SUB&gt;klart EQ b&lt;/SUB&gt;klart&lt;/P&gt;&lt;P&gt;             JOIN cabn AS c&lt;/P&gt;&lt;P&gt;             ON b&lt;SUB&gt;imerk EQ c&lt;/SUB&gt;atinn&lt;/P&gt;&lt;P&gt;             FOR ALL ENTRIES IN fp_ig_kssk_klah&lt;/P&gt;&lt;P&gt;             WHERE objek EQ fp_ig_kssk_klah-objek&lt;/P&gt;&lt;P&gt;             AND  a~clint EQ fp_ig_kssk_klah-clint&lt;/P&gt;&lt;P&gt;             AND  a~klart IN s_klart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 11:53:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781039#M1120048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T11:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781040#M1120049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the function module VC_I_GET_CONFIGURATION.&lt;/P&gt;&lt;P&gt;Find the below example prog. which give you an idea of how to use the Fn module VC_I_GET_CONFIGURATION.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
v_config = wa_vbap-cuobj.
if v_config is not initial.
	CALL FUNCTION 'VC_I_GET_CONFIGURATION'
	 EXPORTING
	  INSTANCE = v_config
	 TABLES
	  CONFIGURATION = i_configuration.
               IF SY-SUBRC &amp;lt;&amp;gt; 0.
                * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
              ENDIF.
loop at i_configuration into wa_configuration.
	if wa_configuration-ATNAM = 'A_THICK_MM'.
		v_thick = wa_configuration-atwtb.
	endif.
	if wa_configuration-ATNAM = 'A_WIDTH_MM'.
		v_width = wa_configuration-atwtb.
	endif.
endloop.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 12:04:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781040#M1120049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T12:04: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/4781041#M1120050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;From Table aufm get charg as batch no. then get atinn from table ausp. then pass atinn in table cawn get atwrt as charecteristic value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will be helpfull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Srimanta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 12:04:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781041#M1120050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T12:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781042#M1120051</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 am getting the field OBJEK from table KSSK.but it is displayed in number.How can i convert to text to see the value?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 06:36:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781042#M1120051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T06:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Material Characteristics</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781043#M1120052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2008 06:03:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-characteristics/m-p/4781043#M1120052</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-19T06:03:41Z</dc:date>
    </item>
  </channel>
</rss>

