<?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: MM03  - Classification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343862#M173645</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for that, I can now read the values and the program updates the current value with the new value, however this only happens if there is a current value. If the value is null (when looking in MM03) the program will not update the value. Any ideas?&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Jun 2006 08:42:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-07T08:42:33Z</dc:date>
    <item>
      <title>MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343848#M173631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When displaying a material using MM03, I then select the classification view, I'm looking at the values for a particular class. Can anyone tell me how to read the current values for a certain characteristic description using a function module etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 13:58:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343848#M173631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T13:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343849#M173632</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;Did you look at the funciton BAPI_OBJCL_GET_DETAILS to get the configuration for a specific material?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 14:16:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343849#M173632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T14:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343850#M173633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use CLFM_SELECT_AUSP (or also can directly select from the table AUSP).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a sample for how to use the FM:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First apply CONVERSION_EXIT_ATINN_INPUT on the characateristic name of your charactersitic and store the value in g_feature (TYPE atinn).&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Then&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           = &amp;#145;O&amp;#146; &lt;/P&gt;&lt;P&gt;                  CLASSTYPE = &amp;#145;001&amp;#146; (material class)&lt;/P&gt;&lt;P&gt;                  OBJECT        = Material no.&lt;/P&gt;&lt;P&gt;                  FEATURE     = G_FEATURE  &lt;/P&gt;&lt;P&gt;                TABLES&lt;/P&gt;&lt;P&gt;                   EXP_AUSP  = T_EXP_AUSP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 14:18:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343850#M173633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T14:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343851#M173634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried that but nothing was returned, these are my parameters.&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           = &amp;#145;O&amp;#146; &lt;/P&gt;&lt;P&gt;                  CLASSTYPE = &amp;#145;023&amp;#146; (Batch)&lt;/P&gt;&lt;P&gt;                  OBJECT        = Material no.&lt;/P&gt;&lt;P&gt;                  FEATURE     = G_FEATURE  &lt;/P&gt;&lt;P&gt;                TABLES&lt;/P&gt;&lt;P&gt;                   EXP_AUSP  = T_EXP_AUSP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried to read from AUSP uing Material No as the object and had no joy there either.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 14:32:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343851#M173634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T14:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343852#M173635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's telling me BAPI_OBJCL_GET_DETAILS does not exist&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 14:33:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343852#M173635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T14:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343853#M173636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are trying to get material classification values, use CLASSTYPE = '001'. Why are you using '023'?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I forgot the exact format of OBJECT also. Just once go to AUSP, all the classification values are stored there. Give classtype '001' and ATINN as your characteristic name and pick up any of the results displayed to see how the material no. is converted to OBJECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 14:36:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343853#M173636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T14:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343854#M173637</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;Are you passing complete Material #'s because whole material number(leading 0's) needs to be passed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use FM CONVERSION_EXIT_MATN1_INPUT to convert material number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can directly retrieve values from AUSP table or use FM CLFM_SELECT_AUSP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 14:50:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343854#M173637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T14:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343855#M173638</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;Look at the BAPI's under classification system in the BAPI transaction, you will find a huge list of BAPI's there for dealing with material classification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 14:57:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343855#M173638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T14:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343856#M173639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;get classes assigned to object(here object is material no)&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CACL_OBJECT_READ_ALLOCATIONS'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      object                = temp_objnum(matnr)&lt;/P&gt;&lt;P&gt;      object_type           = const_obj_type(mara)&lt;/P&gt;&lt;P&gt;      class_type            = const_class_type(001)&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      object_identification = itab_objid&lt;/P&gt;&lt;P&gt;      allocations           = itab_alloc&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      error                 = 1&lt;/P&gt;&lt;P&gt;      warning               = 2&lt;/P&gt;&lt;P&gt;      OTHERS                = 3.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    return-type = 'E'.&lt;/P&gt;&lt;P&gt;    return-id = 'ZMM'.&lt;/P&gt;&lt;P&gt;    return-number = '000'.&lt;/P&gt;&lt;P&gt;    return-message = 'Error reading classes assigned to object'.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read itab_alloc with key class = 'class which you want to get characteristics and values'&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_OBJCL_GETDETAIL'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        objectkey        = temp_objnum(matnr)&lt;/P&gt;&lt;P&gt;        objecttable      = const_obj_type(mara)&lt;/P&gt;&lt;P&gt;        classnum         = itab_alloc-class&lt;/P&gt;&lt;P&gt;        classtype        = '001'&lt;/P&gt;&lt;P&gt;        unvaluated_chars = 'X'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        allocvaluesnum   = itab_char_num&lt;/P&gt;&lt;P&gt;        allocvalueschar  = itab_char_char&lt;/P&gt;&lt;P&gt;        allocvaluescurr  = itab_char_curr&lt;/P&gt;&lt;P&gt;        return           = tret.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ TABLE tret INDEX 1.&lt;/P&gt;&lt;P&gt;    IF tret-type = 'E'.&lt;/P&gt;&lt;P&gt;      return-type = 'E'.&lt;/P&gt;&lt;P&gt;      return-id = 'ZPM'.&lt;/P&gt;&lt;P&gt;      return-number = '000'.&lt;/P&gt;&lt;P&gt;      return-message = 'Error reading values'.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you can find from here how to get the characteristic values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also reward points if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had a similer requirement and this is my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 14:59:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343856#M173639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T14:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343857#M173640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1 more thought, MAFID value is 'O' and not '0' (zero).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 15:06:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343857#M173640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T15:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343858#M173641</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 Fm CONVERSION_EXIT_MATN1_INPUT  to convert material number and pass output material # to the below FM.&lt;/P&gt;&lt;P&gt;&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 = &amp;#145;O&amp;#146;   " This is 'O' and not '0' (zero)&lt;/P&gt;&lt;P&gt;CLASSTYPE = &amp;#145;001&amp;#146; "material class or i/p as per ur req.&lt;/P&gt;&lt;P&gt;OBJECT = Material no.  "18 digit&lt;/P&gt;&lt;P&gt;FEATURE = G_FEATURE    "optional&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;EXP_AUSP = T_EXP_AUSP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will get results in T_EXP_AUSP table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 15:12:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343858#M173641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T15:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343859#M173642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's the current characteristic value against Class type 023(Batch) - Object 'Material No' I want to read, the classification was the view I selected from the initial screen of MM03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me explain in more detail as I was only using transaction MM03 to describe what values I wanted to read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a program that uploads a CSV file to upload Batch characteristics. This program uses the FUNCTION 'CLMM_MAINTAIN_CLASSIFICATIONS' to do this. However using this FM you have to pass it 2 tables, i.e. 'Valuation_old' and a 'Valuation_new'. The problem I have is I don't know how to retreive the old (or at this moment in time the current values), therefore I'm currently manually having to enter a value against each characteristic description I want to change as this FM doesn't seem to work if you don't know the EXACT value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 15:30:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343859#M173642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T15:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343860#M173643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok then you are right to use '023'.&lt;/P&gt;&lt;P&gt; I am giving you here the exact code I wrote. Should work for you as well. By the way, did you check AUSP in SE16?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: g_object            type objnum,&lt;/P&gt;&lt;P&gt;      g_feature           type atinn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Store material no.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    g_object = p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the internal format of characteristic value&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MDT_PRODUCT_NUMBER.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    call function 'CONVERSION_EXIT_ATINN_INPUT'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        input  = &amp;lt;your charac name&amp;gt;&lt;/P&gt;&lt;P&gt;      importing&lt;/P&gt;&lt;P&gt;        output = g_feature.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get product number (EXP_AUSP-ATWRT).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    call function 'CLFM_SELECT_AUSP'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        mafid     = c_mafid                                 " O&lt;/P&gt;&lt;P&gt;        classtype = c_classtype                             " 001&lt;/P&gt;&lt;P&gt;        object    = g_object                                " Object no.&lt;/P&gt;&lt;P&gt;        feature   = g_feature&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        exp_ausp  = t_exp_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 = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;when retrieval is successful,read table t_exp_ausp and get product no.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      read table t_exp_ausp into w_exp_ausp index 1.&lt;/P&gt;&lt;P&gt;      &amp;lt;your desired value&amp;gt; = w_exp_ausp-atwrt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 15:48:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343860#M173643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T15:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343861#M173644</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;CALL FUNCTION 'BAPI_OBJCL_GETDETAIL'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    OBJECTKEY              =&lt;/P&gt;&lt;P&gt;    OBJECTTABLE            =&lt;/P&gt;&lt;P&gt;    CLASSNUM               =&lt;/P&gt;&lt;P&gt;    CLASSTYPE              =&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  KEYDATE                = SY-DATUM&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  UNVALUATED_CHARS       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  LANGUAGE               = SY-LANGU&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  STATUS                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  STANDARDCLASS          =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    ALLOCVALUESNUM         =&lt;/P&gt;&lt;P&gt;    ALLOCVALUESCHAR        =&lt;/P&gt;&lt;P&gt;    ALLOCVALUESCURR        =&lt;/P&gt;&lt;P&gt;    RETURN                 =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should be able to get the current allocations using the above function for the given classes the material is allocated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note :Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jun 2006 15:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343861#M173644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-06T15:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343862#M173645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for that, I can now read the values and the program updates the current value with the new value, however this only happens if there is a current value. If the value is null (when looking in MM03) the program will not update the value. Any ideas?&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jun 2006 08:42:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343862#M173645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-07T08:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: MM03  - Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343863#M173646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to update the classification data for a material use the BAPI BAPI_OBJCL_CHANGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jun 2006 08:52:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mm03-classification/m-p/1343863#M173646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-07T08:52:31Z</dc:date>
    </item>
  </channel>
</rss>

