Material Characteristics in ME51N

Dear Experts,
I have a requirement to upload the material characteristics in transaction ME51N. How can i upload the characteristics assigned to a material in this transaction>
Please suggest.
Thanks and BR,
Sahil

Hi Murugesh,
Let me explain the requirement.
1. First, we assign a characteristic class to material in Material Master. MM02
2.. In transaction ME51N , when we create  a PR, then we associate a material from material master to a PR item .
If that material is configurable means it already has a classification maintained in the material master and we want to add more characteristics at  PR level, then we click the "Configuration" button and then we maintain the characteristics.
After adding the characteristics, click the"Save" button , then a PR is created.
3. Now, I again display the newly created PR. The new characteristic values are displayed for the material.
4. I go to material master and check the characteristics in the classification for the same material,  then i found there are only old characteristics maintained.
So, through LSMW I need to upload new characteristics for existing materials on a PR level. I don't want to reflect the new characteristics in the material master.
Thanks and Best Regards,
Sahil

Similar Messages

  • Creation of material characteristics

    HI,
    I have created new material characteristics in CT04, i also created new charc description  under material class 001 but enable to creat values for that. it has become greyout. how to enter values.
    Arati

    Did you assigned the new char to your class,were you are changing the char.

  • Standard Reports on Material Characteristics

    Are there any standard reports where I can analyse stock balance and sales by material characteristics?
    Thanks.
    Justin

    You can see the stock only for materials.
    Characteristics and their values are not created as materials, unless they are BOM components.
    In this case, you cannot analyse stock based on characteristics.
    If you want to do, then you have to built some custom process to enable it.
    Hope this helps you

  • GL Line Items with Material characteristics

    Hello Sap Gurus,
    Is there a datasource for FI that will extract the GL Line Items with Material characteristics?
    We have activated the 0FI_GL_4 and 0FI_GL_6 datasource but there is no Material characteristics field.
    We are using BW 3.5 and R3 4.6.
    Thank you.

    Yes.... General Ledger Accounting FI-GL datasource is based on tables BKPF and BSEG and it dosent provides details at material level.
    Regards

  • Change Sales Order material characteristics

    Dear Pals,
    I have a question for changing Sales Order material characteristics by item.
    If i want to change the sales order's item  conditions, I can modify the internal table  "XKOMV" in user exit "USEREXIT_SAVE_DOCUMENT_PREPARE"
    Is there any internal table for  Sales Order's characteristics can i use   in user exit "USEREXIT_SAVE_DOCUMENT_PREPARE" ?
    Or any FM or BAPIs can get the internal table for characteristics and characteristics value for Sales Order item?
    Thank you!

    You can use BAPI_SALESORDER_CHANGE.
    1. Get the SO detail using BAPISDORDER_GETDETAILEDLIST.
    2. MODIFY the ORDER_CFGS_* internal tables and  update.
            CALL FUNCTION 'BAPISDORDER_GETDETAILEDLIST'
              TABLES
                order_cfgs_value   = gt_char
                order_cfgs_ref       = gt_char_ref
                order_cfgs_inst      = gt_char_ins.
            MODIFY gt_cfgs_*.
            CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
             TABLES
                order_cfgs_value   = gt_char
                order_cfgs_ref       = gt_char_ref
                order_cfgs_inst      = gt_char_ins.
    Refer SAP note 549563.

  • Standard reports for fetching the Material Characteristics

    Hi,
    Do we have any standard reports in SAP for fetching the Material Characteristics.
    Regards,
    Siv

    Dear,
    Check the related links... may be helpful:
    To fetch characteristic value (ATWRT) from material number
    Material characteristics datasource
    Characteristics Table ?
    Characteristics Table ?
    Regards,
    Syed Hussain.

  • Printing material characteristics assigned to class 001

    Hi
    i am working on printing material characteristics.
    i am using vc_I_GET_CONFIGURATION FM to get all the characteristics associated to the material.
    now i want to print the changes in the bottom under the label Fields changed/Modified.
    if i change any characteristic value(s) and save the form and issue output i need to print the form and bottom i need to print the characteristic that is changed.
    may i know how can i capture these fields? my characteristics are assigned to 001 class and hence data is not stored in tables...
    let me know if there is any solution to work around...
    thanks

    hi
    i am not able to trace which characteristics are changed....
    may i know where the characteristics are stored for class 001

  • Idoc for material characteristics

    Hi Friends,
    I know the IDoc message type for material batch characteristics (SKU_COLOR , SKU_SIZE , SKU_WINDOW, etc.,) is CLFMAS. Does anybody know the message and basic type for Material characteristics (ART_WIDTH , ART_DEPTH , ART_HEIGHT, etc.,) ?
    Regards,
    Dikshitha G

    Hi,
    You need to do the ALE confguration for change pointers of materials to trigger the idoc. Please search in SCN , you will find information reagrding change pointers of Idoc.
    Regards,
    Nagaraj

  • Change Material Characteristics

    Dear All,
    My requirement: Need to change material characteristics through a BDC or BAPI.
    thru BDC, it is not allowing to change from the tcode mm02/mm42, don't have an idea BAPI for changing material Characteristics.
    Thanks,
    Ravi

    Characteristics are part of Classification system, so you would not find a specific BAPI for material characteristic maintenance. Use the below function to update characteristics of any classification relevant object including materials.
    CLOBJECTKEY is Class type value that you see when you select Classification view in Materiam master MM03. Play around with it comparing its interface with MM03 classification.
    Also classification can be accessed Sap Menu -> Cross application components -> Classification system
    CALL FUNCTION 'BAPI_OBJCL_CHANGE_KEY'
      EXPORTING
        CLOBJECTKEY               =
        CLASSNUM                  =
    *   STATUS_NEW                = '1'
    *   STANDARDCLASS_NEW         =
    *   CHANGENUMBER              =
    *   KEYDATE                   = SY-DATUM
    *   NO_DEFAULT_VALUES         =
    * IMPORTING
    *   CLASSIF_STATUS            =
      TABLES
        ALLOCVALUESNUM_NEW        =
        ALLOCVALUESCHAR_NEW       =
        ALLOCVALUESCURR_NEW       =
        RETURN                    =

  • How to add material characteristics in sales order via BAPI?

    Hi all!
    I'm trying to use BAPI_SALESORDER_CREATEFROMDAT1 to create a sales order with one item that has some characteristics, but i can't seem to get it work. It creates the salesorder with the item but without characteristics data. Can somebody tell me what could be wrong?
    Here's the code:
    header-doc_type   = 'TA'.
    header-sales_org  = '3000'.
    header-distr_chan = '10'.
    header-division   = '00'.
    items-itm_number = '000010'.
    items-material   = 'CP-12'.
    items-req_qty    = '1000'.
    APPEND items.
    partners-partn_role = 'AG'.
    partners-partn_numb = '0000050000'.
    APPEND partners.
    c_ref-posex     = '000010'.
    c_ref-config_id = '000001'.
    c_ref-root_id   = '00000001'.
    APPEND c_ref.
    c_ins-config_id = '000001'.
    c_ins-inst_id   = '00000001'.
    c_ins-obj_type  = 'MARA'.
    c_ins-obj_key   = 'CP-12'.
    c_ins-complete  = 'T'.
    c_ins-consistent = 'T'.
    c_ins-quantity  = '0'.
    c_ins-quantity_unit  = 'ST'.
    c_ins-class_type = '300'.
    APPEND c_ins.
    c_val-config_id = '000001'.
    c_val-inst_id   = '00000001'.
    c_val-charc     = 'CP_12_ADD_ON'.
    c_val-value     = 'F'.
    c_val-valcode   = '1'.
    APPEND c_val.
    c_val-charc     = 'CP_12_COLOUR'.
    c_val-value     = 'M'.
    APPEND c_val.
    c_val-charc     = 'CP_12_MODEL'.
    c_val-value     = 'M'.
    APPEND c_val.
    CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT1'
      EXPORTING
        order_header_in           = header
        convert_parvw_auart       = 'X'
      IMPORTING
       salesdocument             = salesdoc
       return                    = return
      TABLES
        order_items_in            = items
        order_partners            = partners
       order_cfgs_ref            = c_ref
       order_cfgs_inst           = c_ins
       order_cfgs_part_of        = c_prt
       order_cfgs_value          = c_val

    BAPI_SALESORDER_CREATEFROMDAT1
    "(obsolete from 4.6 version)
    BAPI_SALESORDER_CREATEFROMDAT2
    please see the version  and change the BAPI
    reward  points if it is usefull ....
    Girish

  • Material Characteristics Description on the print of PO

    Hi all,
    I am creating a configurable  material and define the characteristics in the class 300 (variants).i want that when i select that materia code l in the Po in the line item . than during print it will select all the characteristics and  values on the purchase order print .
    if there is any IMG setting than please tell me .
    Regards
    Sachin gupta

    >
    garg.sachin27 wrote:
    > Hi all,
    >
    > I am creating a configurable  material and define the characteristics in the class 300 (variants).i want that when i select that materia code l in the Po in the line item . than during print it will select all the characteristics and  values on the purchase order print .
    >
    > if there is any IMG setting than please tell me .
    >
    > Regards
    > Sachin gupta
    Purchasing document forms are usually customized as per requirement of the client through ABAP. So your requirement can be fulfilled throgh ammendments in the said form through help of ABAPer. You need to notify them where the data needs to appear on the form and from which table the data is pulled from.
    Check this link for characteristics table:
    Material Characteristic Table
    Edited by: Afshad Irani on May 20, 2010 11:53 AM

  • Function module to get material characteristics and coresponding value

    Hi experts,
          I have got one problem...when we go to t code MM03..we select the views for a specific material for Basic Data1,Basic Data2 and Classification..in classification we get the material description and its corresponding values...
    These values we receive through specific class and its corresponding object....I want some Function Module which will allow me to receive the description and corresponding value for the material which will automatically retrieve the data for that material using the class and object...
    Please help me to sort this problem...
    Thanks in advance

    TRY these two FMs
    1) CLAF_CLASSIFICATION_OF_OBJECTS and
    2) Bapi_objcl_getdetails.
    for first one it gets the all characteristics assigned to the class even though the values are not assigned
    in second case onle the vlaues assigned characteristics will get

  • Extractor for Material Characteristics - Variants

    Hello Gurus,
    There are few characteristics that we have configured in ECC system for Materila. If you go to MM01 or MM03-> BASIC DATA 2 -> Client Specific configuration -> There is an option of creating a Cross-Plant CM. You can create additional characteristics once you click the Configure Variant button. There are values that are assigned to the Characteristic Value Assignment.
    I would like to know is there a Standard Extractor, that gets these characteristics.
    Thanks in advance
    Full points to right answers

    Thanks for your reply again.
    The following are the parameters:-
    Basis Datasource : 0MATERIAL_ATTR
    Client: 100
    Class Type: 001 (Material Class) It does not allow me to select any other class
    Obj Table: MARA
    Datasource Type: ATTR
    Datasource : 1CL_OMAT001
    And then I double click on characteristic, to add my characteristics.
    The system generates a TEXT DATASOURCE for individual text characteristics, which when using RSA3 gets the relevant data.
    But when I execute the datasource 1CL_OMAT001, it does not retrieve any data.
    Just to clarify: The SBIW node says "Maintain Data Sources for Classification Data".
    Does it mean, it will extract data from the CLASSIFICATION tab of the MM03.
    B'cas I am interested in the "BASIC DATA 2" tab -> Client Specific Config-> Configure Variant (button).
    Thanks

  • Need Help Regarding Material Characteristics Validation in MM02

    Hello Experts ,
    Here I am stuck with one requirement .  I need to validate the combination of characteristics entered in MM02 transaction.
    For this reason I have Implemented method MODIFY_INPUT of BADI CACL_VALUE_CHANGE . But this method captured characteristics one by one, not all at once. but as per my requirement I need all the characteristics at once to verify the combination.
    How can I check and validate all the characteristics before the material is saved ?
    Your help would be appreciated.

    Hi
    Check the material master records of the materials M1 and M2 for the conversion ratios maintained between the base UOM and the case. Guess, the 0.3 case of the material M1 might be having units that are equal to one case of material 2.
    The standard functionality is not related to the quantities. It is only to substitute the materials.
    Thanks,
    Ravi

  • Material Characteristics

    Hi
    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.
    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.
    Please let me know.

    Hi,
      Use function CLFM_SELECT_AUSP to read AUSP data for a material..
      DATA: t_ausp LIKE ausp OCCURS 0 WITH HEADER LINE.
      CALL FUNCTION 'CLFM_SELECT_AUSP'
      EXPORTING
        mafid                    = 'O'
        classtype                = '001'  "For Materials
        object                   = <Your Material Here>
      FEATURE                  =
      CLEAR_BUFFER             = ' '
      KEY_DATE                 =
      WITH_CHANGE_NUMBER       = ' '
      TABLE                    =
      I_ATZHL_SAME_INI         = ' '
      I_AENNR                  = ' '
    TABLES
       EXP_AUSP                 =  t_ausp[]
    EXCEPTIONS
       NO_VALUES                = 1
       OTHERS                   = 2.
    IF sy-subrc EQ 1.
    ****No Characteristic Values for the Material
    ELSE.
    ENDIF.
      Also if you want the description of a characteristic then you can get it from CABNT..
      ATINN = Internal characteristic number, SPRAS = sy-langu,
      ATBEZ is the characteristic description..
      Also, AUSP will contain values only if they are maintained in the classification tab of the material,
      If just characteristics are visible with no values that means no entries in AUSP..
      Hope this helps..
    Sri
    Message was edited by: Srikanth Pinnamaneni
    Message was edited by: Srikanth Pinnamaneni

Maybe you are looking for

  • How do I retrieve my data from external hard drive?

    I have tried to search for an answer to this, but have yet to do so and really getting freaked out... I had to take my iBook to the Genius Bar today to have everything wiped out and reinstalled due to some issues I was having. I wasn't worried becaus

  • Flash 8 Crash on Mac OS 10.4.8

    I have seen lots of topics about Flash 8 crashing on Macs, but I haven't seen this scenario listed yet, or any conclusions for that matter. Has anyone had a problem with Flash 8 freezing up when you try to modify the document settings? It's frustrati

  • Problems whit Instant messaging 8.2 and SSL

    Im trying to configure a instant messaging 8.2 whit ssl but when I restart the IM the mux start whitout ssl I dont have idea what is the problem whit the configuration and I dont know if Instant messaging 8.2 support ssl I use the same cert database

  • Back button page cache

    Hi I have a page where a portal report is exposed to the users. When user clicks on logout button and clicks back user able to see the report. But when refresh the same page login page is being shown. I presume the reason is caching. How to set the c

  • Generating JAXB classes

    Hi, My xml: http://www.javaexperience.com/catalog.xml I have an xml for which I want to generate JAXB classes. Unfortunately I don't have access to xsd for this xml. Could someone please share steps to generate JAXB classes for a xml. What I have tri