Material Variant Classification

Hi,
Does anyone know how to get the material variant classification data for a material? I found function CLFN_VARIANT_CLASSIFICATION, but I couldn't find any documentation. I don't know how to put the parameters in this function and whether this is the right funtion.
Thanks,
Roxana.

Hi,
Please check with following tables.
KLAH Class Detail
CABN Characteristic Detail
AUSP Characteristic Values
CAWN Characteristic Values
CAWNT Characteristic Value Texts
KSML Characteristic Allocation to Class
KSSK Material Allocation to Class
USE THE FOLLOWING fUNCTION MODULE TO GET THE DATA
CLAF_CLASSIFICATION_OF_OBJECTS
GIVE CLASS TYPE = 300 AND OBJECT NUMBER = MATERIAL NUMBER
EXECUTE YOU WILL GET IN TABLE T_CLASS, THE DETAILS ABOUT THE CLASS
IN TABLE T_OBJECTDATA, CHAR ASSOCIATED AND THE VALUE.
Check the link
https://forums.sdn.sap.com/click.jspa?searchID=11911947&messageID=4219775
Regards,
Raj.

Similar Messages

  • BAPI to read classification of Material Variant

    Hi experts,
    In our customer we are using material with a reference product KMAT (Material Variant), and we need a BAPI to read the configuration of the materials.
    Does anyone knows which BAPI can we use to read the configuration of the material variant?
    We tried to use the BAPI_PRDSRVAPS_GETCLASSES, but for material variant it didn't work, just to products that doesn't have a KMAT related.
    Thanks in advanced
    Thiago Cyrillo

    Thiago,
    Why dont you use a class like /SAPAPO/CL_MC01_CCV and method like GET_SINGLE_CHARVAL?
    Kedar

  • Pricing based on Material Master Classification

    Hi Guru's,
    Can we have a pricing based on material master classification.
    Scenario: Material can have few characteristic. If we select few of the classification, this should influence pricing.
    Any idea on this, has anybody worked on this before?
    Thanks,
    Anil

    I am not sure about classification, might work with Variant Config.
    Alternatively, you can use split valuation if you don't have many characteristics.
    Hope this helps-

  • Reassigning of Material Variant to KMAT in MM02

    Can anyone let me know the possibility of Reassigning the Material Variant to KMAT and configuring the variant in MM02. For new assignment i do not have any problems, working fine. But when I need to reassign the MV to KMAT and configuring the variant and finally saving the MV, I am getting Runtime error.
    Urgent Pls.
    Raj

    Hi Rajendra
      have you maintained all the master data properly
      1. classification for material variants (CL02)
      2. Characteristics definition ( CT04)
      3. configuration profile(CU41)
      4. Pricing conditions (VK11) with Condition type       VA00   Variant Price
      5. object dependencies for each variant characteristics
      ensure the above and let me know still youface any issue
      regards
      SK

  • BW Retail - Material variants

    Hello All,
    does anyone knows a business content extractor for SAP retail that allows the extraction of material variants characteristics (color, size) in a similar way as the RIS is updated.
    I know that these characteristics can be retrieved using a classification datasource. But I would want to know if the sequence determination (using the TWORD table)  can be achieved using a business content datasource rather than building my own exit or generic datasource?
    Thanks,
    Tom

    Hey those fields are mandatory fields which needs to be populated in the bapi.
    Please try to give some values in those fields and execute the bapi now..
    It should work fine..
    If you need any further information please let me know..
    Regards
    Satish Boguda

  • IDOC for sending material including classification data?

    Hi everyone,
    I'm just looking for an IDOC to send to an external system all data of certain materials but including classification system data, variant configuration data...
    I have checked MATMAS0x but I am not sure if those IDOCs match with my requirement.
    I would be very grateful if someone could please help me.
    Thanks in advance and best regards,
    Ben

    Hi,
    CLFMAS01     Master object classification
    CLFMAS02     Master object classification
    STTMAT01     STTMAT: Material variants
    BOMMAT01     Master BOM - material
    BOMMAT02     Master BOM - material (2)
    BOMMAT03     Material BOM (from 4.6B)
    BOMMAT04     Material BOM with UPS Link
    MATMAS01     Material Master
    MATMAS02     Material Master
    MATMAS03     Material Master
    MATMAS04     Material Master
    MATMAS0x with CLFMAS0x should solve your problem.
    Regards,
    Srilatha.

  • Material variant download

    Hi,
    Can we download material variant created as non stock material in R/3 . I know we can download configurable material by creating Knowledge base and then downloading SCE object. But does the material variant created in R/3 also gets downloaded.  and where they can be seen in CRM. please send me some config notes on the issue..
    Your time and help is appreciated.
    Regards,

    Hi
      In CRM in IMG>Cross-app>Classification system>classes>maintain object types and class types>CUVT...
    I hope it helps
    Cheers

  • Is it Possible to delete the configuration from a Material Variant?

    Hi,
    Can you delete the configuration from a Material Variant and then reconfigure the part in MM02?

    Hi
    Once we created variant we can't delete it,
    Regards,
    srihari

  • Change documents of material master classification class type 001 and 300

    Dear guru ,
    I want to see the history of change documents of material master classification using MM02.
    The system allow to see the history only for class type 023.
    For class type 001 or 300 the change document isnu2019t available.
    I must do some settings or the function for these class type arenu2019t available ?
    Thanks.

    Dear ,
    changes in values for a characteristic can be monitored in CL20N but as for MM02/MM03 transaction only for class type 023.
    For class type 001 or 300 the change document isnu2019t available.
    Thanks.

  • How to find the list of material variant based on the characteristics value

    Hi
    We are creating materials variants for FERT Material Type in material master in MRP-3 view .There we configure the variant by attaching characteristics value 
    Now we want to have a report , which can give the list of material variants , if char value is given in selection
    Can somebody guide me if there is standard report for this OR what is the linkage in Table , so that we can develop a report
    rgds
    Sandeep

    I couldn't find a standard report to get the material variants based on characteristic values (the nearest I could find was CT12) but I wrote a report some time back here's the table join logic for the main select statement.
    select a~matnr
            e~atwrt
            h~atwtb
    into table i_tab
          from MARC as a
          inner join IBIN as b
          on b~instance eq a~cuobj
          inner join IBIB as c
          on c~ibase eq b~ibase
          inner join IBINVALUES as d
          on d~in_recno eq b~in_recno
          inner join IBSYMBOL as e
          on e~symbol_id eq d~symbol_id
          inner join CABN as f
          on f~atinn eq e~atinn
          inner join CAWN as g
          on g~atinn eq e~atinn
          and g~atwrt eq e~atwrt
          inner join CAWNT as h
          on h~atinn eq g~atinn
          and h~atzhl eq g~atzhl
         where     a~matnr in s_matnr
                and e~atinn in s_atinn
                and e~atwrt in s_atwrt
               and b~valto eq '99991231235959'. "This is important condition
    I included bare minimum fields to suite your requirement needs you can add whatever other field you want . Though I tested the table join, I suggest you to test it again before writing your own ABAP program using SE16N.

  • Material variant replacement in sales order for Configurable Material

    HI
    I am using variant configuration. In this i have created material A as configurable material and have Preconfigured Material B as its variant by assigning configurable material in MRP 3 view.
    Now when i am creating Order for material A i.e. Configurable material and the characteristics values are same as that of Preconfigured material system is not replacing Configurable material with Preconfigured material.
    Please help me out.
    Regards,
    Anand.

    Even after maintaining the item category MTAC(Mills Make to order config at mat level), the configurable material is not getting replaced in the sales order (va02). It is just showing material variant exists for the configurable material.
    The setting in item category for configuration is.
    Config. Strategy     01(Sales Order Strategy (TAC, TAM))
    Mat. Variant Action  4 (Replace configurable material (Append and change))
    ATP material variant 2 (Do not substitute if not completely available)
    Structure scope      D (Configuration, poss. with BOM explosion)
    I have maintained the stock for material variant as well to take care of ATP material varinat setting shown above.
    Please suggest if missing something.

  • Material Variant Matching in Sales Order Creation with ref.to Sales Order

    Hi All,
    We are working in Variant configuration.Our product is defined at PQD(Product, Quality & Dimension).
    But, Sales Contracts are created at PQ (Product, Quality/Grade ) level only.
    We have defined Variant Characteristics GRADE(ALLOY CODE),DIMENSION AND TWO MATERIALS.
    MAT 1 , configurable material.
    MAT 2, A Material Variant of MAT 1, Having values of GRADE = A & DIMENSION = 150 in MRP 3 view of the same.
    When a Sales Order is created for MAT 1  and its characteristics values are GRADE = A, DIMENSION = 150, Material Variant type matching happens & it replaces the configurable material.
    Similarly,Sales  Contract is created for Configurable material MAT 1, with only GRADE = A ( As mentioned above, only quality is known at contract creation level).But, when we are trying to creart a Sales Order with reference to this Contract, we are trying to punch characteristic Value for DIMENSION = 150 also. At this stage, Materuial Variant MAT 2 is shown, but it is not replacing MAT 1.
    Is this the standard behaviour or there is some solution/enhancement available.
    regards,
    Stuti

    Dear Vijay,
    in incompletion procedure we can arrange to check whether any field is empty, here data comparison is not possible.
    As far as I know you can not achieve this through standard config.
    To achieve your requirement, you will need to take help of an ABAPer, it can be achieved using Userexit.
    ABAPer can use include MV45AFZZ
    and Userexit ""USEREXIT_SAVE_DOCUMENT".
    the code written in this userexit will check and compare the quantities before saving the dcument.
    Logic if quantity enter is greater than the quantity mentioned in Contract show warning Message.
    I hope this solves your Problem.
    Regards,
    Paresh

  • Transfer of characteristics values from material variant to its subordinate

    Gurus
    Need your Expert opinion on Variant configuration
    We are using Multi level Material Variants and our bussiness process demands for configuration of These Material variants in Transaction MD81 and during creation of Sales order .These configuration will not affetc the BOM explosion but will only be passed to the The lower level components (Which are again theMulti level Configuriable  Material variants ) as manufacturing instructions .To Enable these Flow of Characterisitcs we have Applied a Note which allows the Multi level Configuration of Material Variants and Pass this Values to lower Level and the characteristics value flow is visible as well for lower level from CU50 ,but when i create the requirement through  CIR or sales order and Configure the Material Variants  and Generate the Procurement Proposals to fullfill these requirements (MD02) in the form of Planned order  we are unable to pass one the Characterisitcs values to planned orders of  lower level Components of Material Variants .These characterisitc values are Used as Manufacturing Instructions and should be passed on to the Lower level of Material Variants through the use of dependencies in Configuration profile .but the problem is it works in CU50 and does not flow in planned orders , does any body have a solution for this ?
    Thanks In Advance
    awaiting reply
    Milind

    Hi Milind,
    I check that you implement a Note which allows the Multi level Configuration of Material Variants? is it sap note? mind to share the number.
    I ever faced this problems to before but fortunately the case in simpler so i just create another variant and maintain the component for the variant. For example : characteristic color. I create variant with color red black etc. For variant red, maintain component red. For variant black maintain component black, so on. Is it possible for your case?
    Regards,
    Arman

  • BAPI FOR CREATION OF MATERIAL VARIANT IN SAP

    Dear All,
    Can anoy one please provide me name of BAPI to create material variant.This is required when we create material variant for a configurable material, characteristics values are added in MRP 3 View  .

    i am not clear what youn are looking for.
    Say material X is KMAT,
    Material Y you have created as a variant of X by entering the conf material X in MRP3 view and setting the char values
    Material Z you have created as a variant of X by entering the conf material X in MRP3 view and setting the char values different than Y
    Now Y and Z are material variants of X, now tell me exactly what you are looking for?

  • Material variant not found when configuring an item on a sales order...

    My client has been using Configurable Materials and Material Variants for several years.  At times, when entering a sales order on a Configurable material, the Material Variant is NOT displayed, even though the values entered for characteristics exactly match that of a Variant. 
    I suspect that the "link" between the Configurable material and the Material Variant has been broken, perhaps due to changes made to one of the material masters.  I've found that I can restore this "link" by changing the configuration of the Material Variant (MM02 transaction, the MRP3 tab, "Configure variant" button).
    (1) Can you tell me under what circumstances the "link" between Configurable and Variant gets broken?  In other words, are there certain fields on the Material master which, when changed, break this link?  If so, which fields?
    (2) Can you tell me how to identify those Material Variants which have a broken "link" (eg, those which do not link back to a Configurable material, for sales order entry purposes)?  Is there an ABAP or such to restore all such broken links?

    Hello and thanks for your response.  I've searched OSS and had found several informative notes (900732, 774346), though none seem to deal with my problem.  If you know of a note I'd much appreciate the lead...   (:

Maybe you are looking for

  • How to add one column in existing search help.

    Hi Folks, My quesion is How to add one column in existing search help and also Now search help on that field is not an explicit search help. It should be implement using check table. Shivam

  • Can't Find File/Dir info  Error 3 :: 30 and (-43)

    Please help me with this issue. There's very little previous mention anywhere about this sort of problem. I'm trying to open an After Effects file that I haven't opened in a while, and the footage I used in the project has since been deleted. When I

  • Wiki pages and document Search not working

    Hi All, I have lot of wiki pages and Documents in my site collection , I try to search those but its not working . I tried to fix this issue . I create a new search service application , and new content source with my new SharePoint site and start th

  • Issue of invoke wf_engine function from web service client.

    hi, I want to update work flow item attribute from web service client through soa gateway. but got the below exception: Error Description Error occured while service was processing. Error Details oracle.apps.fnd.soa.util.SOAException: ServiceProcessi

  • P7-1254 doesn't detect sapphire 7770 GHz video card

    I have a P7-1254.  I have upgraded the processor to an A8-3870k and added a Sapphire Radeon HD7770 GHz video card.  Also added a 700w power supply.  The video card worked for about a week.  Then the power supply failed and I used the old supply and o