Characterstic value assignment

hi sap experts,
  can any body tell me how to define characteristic value assignments for materials. for ex. for material 'A' i want to add the details like color, length, shape etc
rewarding points assigned
regards
ravikumar

Dear ravi
Go through the link
<a href="http://help.sap.com/saphelp_46c/helpdata/en/92/58c4a5417011d189ec0000e81ddfac/frameset.htm">Value Assignment Attribute for Characteristics</a>
Thanks
G. Lakshmipathi

Similar Messages

  • How to Check Characterstic Values  assigned  for a material

    Hi ,
    My requirement is , to  check  each and every material entered in the selection screen  and characterstic values assigned to this,
    I dont need characterstic values  for a material, i have to check whether characterstic values assigned or not , if not i have to give a message..
    I used  CLAF_CLASSIFICATION_OF_OBJECTS FM  for  getting charactersic values
    it is giving NO classification found , but for tghat material classification is existing subsequently characterstic values are also there, i passed material no with leading zeros also.
    i used WMCL_MAT_READ_CHAR_VALUES FM also  , but it is giving  No charcterstic values found for that Material  but characterstic values are assigned for that Material..
    Could u please find out ,where  i am missing

    THIS MATERIAL HAS CLASSIFICATION VIEW  AND CHARACTERSTIC VALUES ALSO MAINTAINED
    DATA : MATNO TYPE AUSP-OBJEK,
          L TYPE I,
    T_CLASS TYPE STANDARD TABLE OF  SCLASS ,
    T_OBJECTDATA TYPE STANDARD TABLE OF  CLOBJDAT.
    MATNO ='631165'.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        input         = MATNO
    IMPORTING
       OUTPUT        = MATNO
    "use this function moduel...
    *Retrieve Batch class , characteristic name and values for Material
      CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'
        EXPORTING
         class              = 'ZCA2535'
          classtype          =  '023'
         features           = 'X'
          language           = 'E'
          object             =  MATNO      "pass material number with leading zeros..
          objecttable        = 'MARA'  
        TABLES
          t_class            = t_class
          t_objectdata       = t_objectdata
        EXCEPTIONS
          no_classification  = 1
          no_classtypes      = 2
          invalid_class_type = 3
          OTHERS             = 4.
      IF sy-subrc = 0.
    ENDIF.
    BUT IT IS GIVING   NO CLASSIFICATION FOUND

  • Characterstic value assignment table

    Hi All
    Could you please let me know in which table can i find   characterstic value assignment data?
    Thanks in advance
    Nagesh.paruchuri

    Hi,
    Table:IBSYMBOL IB: Characteristic Value Assignment

  • Updating the characterstic values in the classification view

    Hi,
    We are trying to update the characterstic values in the material master through AUSP table (BDC program). We want to replace the old values with the new values. But the program is appending the new characterstic values to the old values. This is happening inspite of the configuration setting in the characterstic transaction (CT04) such that it allows only a single value. Please suggest us in this regard.
    Thanks
    Ramakanth

    use the following
    Set and Change Values
    Use
    You can use this function as an easy way to change, delete, or create large quantities of assigned characteristic values. Target objects can be classified, or existing assignments can be deleted.
    Prerequisites
    The selected target objects must have the same class type and object type as the template object.
    The characteristics must be the same for the target objects and template object.
    No interval values are processed. No reference characteristics are processed.
    Procedure
    Enter a class type. If the class type is for multiple object types, you see a list of the object types that you can select. Select an object type.
    Enter the characteristics whose values you want to change or set. To find characteristics, display the possible entries. To display all the characteristics of a class, choose Chars of class and enter the class.
    Characteristics: Old and New Values
    You can replace old values with new values. You can set completely new values if no value was assigned before, or delete old values.
    Use the possible entries to select values.
    You can only select one value for each line. If you want to process several values, you must select the same characteristic several times.
    Changing Values with an Operator
    If a characteristic has numeric format, you can use an operator to recalculate values. You can add, subtract, multiply, and divide figures. For character format, the operator fields are grayed out.
    On the Target objs tab, enter the objects to which you want to copy the new values.
    For more details on this procedure, a description of further functions, and information on the log, see the third and fourth steps in Copy Values Assigned to Object.
    On the Assignments tab, you can classify the target objects or delete existing assignments. Enter the class or select one using the possible entries. You can go to class management by choosing  Display class.
    Choose  Carry out a mass change.

  • Dynamic value assignment to a particular column in a vertical ALV

    Hi Friends,
    In the present program ALV has 44 fields and output row is only one(with some field editable).
    My requirement is to change present output to vertical ALV and editable field should be available
    as editable.
    Now I have changed this to transposed ALV manually(not dynamically) with required fields editable.
    Now there is 44 rows and two column "FIELD and "VALUE'.Some values in the second column is editable.
    Previously output was like this:
    field1   field2  field3 ...
    val1     val2    val3   ...
    Now output is like:
    FIELD   VALUE
    field1  value1(type INT)
    field2  value2(type char5) Editable(need F4 help)
    field3  value3(type date)
    My present structure declaration is:
    types: begin of ty_itab,
            field type char 50,
            value type char70,
            celltab type lvc_t_styl,(for editing some values in VALUE column).
           end of ty_itab.
    data: itab type standard table of ty_itab.
    Now the second column i have declared as CHAR70 which contains only char
    values because to put all differt types of values to one single column named
    'VALUE'.
    But as field1 field2 field3... had differnt type of value like integer char date...I need to validate some values
    (specially those which are editable) before saving to custom DB table.
    So I need dynamic value assignment to VALUE column when preparing internal table for display.
    What I want to say is that VALUE column should be able to contain different type of values like INT, DATE, CHAR...etc
    Is the requirement is feasible?
    If yes then How should I declare the structure and populate different type of values within single column 'VALUE'.
    Also is it possible to have F4 helps in the second column (VALUE)???

    Hi Manab,
    I did something comparable: We have a very complex transaction with several subscreens with multiple fields to be filled with complex logic to create a very special contract. The requirement was to create a method to create a copy of this contract being able to apply some changes.
    I created a wizard (transaction SBPT_WIZARD_BUILDER - Wizard-Builder) to accomplish that. I grouped all the fields to just 3 logical groups and thius created 3 stesp where the user gets an ALV as you describe, but we have the rows like FIELD  with the new value editable. Additionally I have hidden fields with table name and field name so that I can determine the characteristics (datatype) at run time.
    The value fields are just strings (every ALV field is a text field on the surface).
    For editable fields, you have an event DATA_CHANGED. I used this method as a handler for the event:
    (I will leave out the wizard part here - maybe a good idea for a blog to explain that)
    METHOD handle_data_changed.
        CALL FUNCTION 'RS_CONV_EX_2_IN'
          EXPORTING
             input_external                     = <mod>-value
             table_field                        = ls_tabfield
    I also created handlers for F1 and F4
    Handler for CL_GUI_ALV_GRID->ONF1
    METHOD handle_f1.
        CALL FUNCTION 'HELP_OBJECT_SHOW_FOR_FIELD'
          EXPORTING
            called_for_tab   = lv_tabname
            called_for_field = lv_fieldname
          EXCEPTIONS
            object_not_found = 1
            sapscript_error  = 2
            OTHERS           = 3.
    Handler for CL_GUI_ALV_GRID->HANDLE_F4
    METHOD handle_f4.
      CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
        EXPORTING
          tabname    = lv_tabname
          fieldname  = lv_fieldname
        TABLES
          return_tab = lt_return_tab
        EXCEPTIONS
          OTHERS     = 5.
        er_event_data->m_event_handled = abap_true.
    * if er_event_data->m_event_handled is not set to abap_true, system will handle it.
    * In this context the message 'Keine Eingabehilfe verfügbar' will be displayed
    ENDMETHOD.
    This is just an excerpt from my project. It shows that you can do more in ALV as you knew.
    I tried to post a little more but the formatting break down, possibly a result of the character limit
    Regards,
    Clemens

  • FM for characterstic value of a function location (asset)

    Hi All,
    Can any one please tell me the FM module to be used for finding the characterstic value for a given characterisctic name of a function location in IL03 (classification).
    I have tried using BAPI_CLASS_GET_CHARACTERISTICS, but it is not yielding the desired results.
    Thanks in advance
    Deepti

    Hi,
    I don't know why you are not getting the proper reult.
    BAPI_OBJCL_GETDETAIL iis uesd to get both character and numeric values back form the classes.
    Check this:
    LV_OBJECT = I_TPLNR.
    CALL FUNCTION 'BAPI_OBJCL_GETDETAIL'
    EXPORTING
    OBJECTKEY = LV_OBJECT
    OBJECTTABLE = 'IFLOT'
    CLASSNUM = 'Z_DEPOT'
    CLASSTYPE = '003'
    TABLES
    ALLOCVALUESNUM = WT_ALLOCVALUESNUM
    ALLOCVALUESCHAR = WT_ALLOCVALUESCHAR
    ALLOCVALUESCURR = WT_ALLOCVALUESCURR
    RETURN = IT_RETURN.
    Furthermore i have a list of BAPI. [Try this link|http://www.saptechies.com/sap-bapi-list/].
    May it helps you.
    Regards.
    DS.

  • Problem in prompt value assignment in free hand SQL full client report in BO 6.5

    Post Author: simarora
    CA Forum: Desktop Intelligence Reporting
    I automated the generation of reports using the perl, XML and java servlet. A perl script is invoked by a batch file , URL of BCA scheduler and name of XML file are passed as parameters to perl script. This perl script invokes a java servlet which reads the parameters from XML and pass them to BCA. BCA generates the reports and save the external formats to a specified location.
    Two of the reports that are free hand SQL reports fail to generate saying that prompt value assignment failed. Not, sure whether it is due to free hand SQL / shared conenction or something else. I have tried assigning date prompt values in different formats and even in the same format that is set in report SQLs, but it always fails.
    NOTE: When generated through BO, these free hand SQL reports got generated successfully without any issues and other reports that are based on Universe get generated by this automation / API without any issues.
    Log messages are as below. Please take a look and advise:
    Thu Jul 26 05:32:56 2007 INFO read xml file ./XML/ABC.xml Thu Jul 26 05:32:56 2007 INFO content dump of raw xml file:
    <ReportingBatch><BroadcastAgent>ABCDEG</BroadcastAgent><BobjUser
    name>POIUYT</BobjUsername><Documents><Document><DocumentName>Rank
    ing
    Report</DocumentName><DocumentType>rep</DocumentType><DocumentId
    /><Domain>Domain1</Domain><DatePostFix>false</DatePostFix><Refres
    hInNameOfRecipient>true</RefreshInNameOfRecipient><Prompts><Promp
    t><PromptName>1. Select Business
    Date:</PromptName><PromptValue>7/3/2007 12:00:00 AM</PromptValue></Prompt><Prompt><PromptName>2. Select Cluster:</PromptName><PromptValue>US Interest Rate Products</PromptValue></Prompt></Prompts><Actions><Action>refres
    h</Action><Action>ftp</Action><Action>pdf</Action></Actions><Grou
    ps><Group>ABC</Group></Groups><FtpServers><FtpServer><Name>Server
    1</Name><UserName>user1</UserName><Password>password</Password><D
    irectory>/Reports/ABC</Directory></FtpServer></FtpServers><Emails
    ><Email><Subject>Test</Subject><Body>Test</Body><FromAddress>
    email@removed
    </FromAddress><Attachments><Attachment>pdf</Attachment></Attachm
    ents><Destinations><DestinationTo> email@removed
    </DestinationTo></Destinations></Email></Emails></Document></Doc
    uments></ReportingBatch>
    Thu Jul 26 05:33:07 2007 FAIL Return Code For ./XML/ABC.xml : -1
    Thu Jul 26 05:33:07 2007 INFO
    BeginningProcessingofbatchfeedonservlet.........
    Thu Jul 26 05:33:07 2007 INFO
    INFO%3AAttemptingtocreatea+session
    Thu Jul 26 05:33:07 2007 INFO
    INFO%3ARetrievedWebiServerObject
    Thu Jul 26 05:33:07 2007 INFO
    INFO%3AValidsessionopenedforuseruser1
    Thu Jul 26 05:33:07 2007 INFO
    INFO%3ASessionandContextretrieved.
    Thu Jul 26 05:33:07 2007 INFO INFO%3ADocumentRanking
    Report%2CBeginprocessing******************
    Thu Jul 26 05:33:07 2007 INFO
    INFO%3AThisisaFull-Clientreportforin-lineprcessing
    Thu Jul 26 05:33:07 2007 INFO
    INFO%3ADocumenthasbeenopened+successfully
    Thu Jul 26 05:33:07 2007 INFO ERROR%3ARanking Report%2CExceptionraisedduringprocessingWebIntelligence+SDK
    %2FJSPException-Number%3A1410+-javaError%3AWISDKSpe
    cificException---Description%3APromptrequiredtoaccess+thi
    s+document.
    Thu Jul 26 05:33:07 2007 INFO INFO%3A+Ranking
    Report%2CEndprocessing******************

    Hi David,  this is a difficult taks to answer all these questions in a forum. I suggest if you have valid SAP support you log a case for each issue and BO support will assist.

  • Characteristic Value Assignment in Sales order

    Hi Pals,
    I am using the Variant configuration scenario in the sales order. My problem is, when ever i try creating a new sales order and enter a material, it suppose to display the Characteristic Value Assignment screen but for me it is showing the "Display Characteristic Values" Screen. Because of this i am unable to enter the data at the sales order level. what might be the problem for this case.
    Kindly help me out in this issue.
    Thanks & Regards,
    Srinivas.D

    Dear,
    I hope the following link will help u in giving a good understanding of Characteristic values
    help.sap.com/printdocu/core/Print46c/en/data/pdf/CACLCHR/CACLCHR.pdf
    Regards,
    R.brahmankar

  • Error at sales order: Inconsistent characteristic value assignment

    Hi SAPians
    There is a problem in variant configuration. I have configurable materials at sales order level with BOMs and super BOMs. When I am executing the scenario, not able to process further after selecting characteristic values for a configurable material. The error saying " Inconsistent  characteristic value assignment". I checked all the relevant master data, every thing is okay. But I am not able to proceed further. Can any one provide some valuable inputs for this.
    Raksha.

    Hi
    Did u create variant table (CU61) if not plz and try to make it by tick mark of Decision table..
    u can check assignmebt consitance thru CU60 ..if there again blank plz maintain it manually..
    basically wt happened during creation of Characteristics and assignment of value in value tab .. there is indicator ..which influence assignment consistance..
    hope u may get clue.
    correct me if i went wrong..
    thanks
    mk

  • I am working in Numbers and can't seem to change the generic value assigned to the legend.  Any advice on how to select the legend and save new values?

    I am working in Numbers and can't seem to change the generic value assigned to the legend.  Any advice on how to select the legend and save new values?

    Ntenich,
    If your table has a Header and your Legend text is in the header, it will be picked up by the table.
    Jerry

  • How to get the value assigned in dropdowmlistbox as well as radio button

    Hi Everybody,
       Please help me to find the solution for the following:
       1. How to get the value assigned in dropdowmlistbox?
       2. How to get the value assigned in radio button?
      I am waiting for the answer and reply...
      Thanks & Regards,
      ShanthaKumar.KA.

    The radio button has a name attribute. That name attribute should be the same as the bean property. Then you just need a
    <jsp:setProperty name="mybean" property="*"/>
    and the bean's set method will be called for the value of that radio button.
    so...
    <input type="radio" name="doit"/>
    class MyBean
    public void setDoit( boolean yes )
    //do whatever here
    }

  • Fb60 business place field value assign to branch field

    Hi Experts,
    for vendor invoice creation in fi by using fb60 t.code i am giving business place & all required fields. My requriment is that business place value assign into branch name by using j_1i7_get_bussiness_place function module.suggest how to assign & how to develop logic in this function module(in ecc6.0).
    Regards,
    babu

    Thanks a lot,
    I am not referring to "Business area" here, but i am looking for the "Business Place / Section Code" fields.
    While doing Down Payment Request to Vendor in F-47, I want to fill  "Business Place / Section Code" fields but they are suppressed.
    And this field cannot be controlled through FSG / Posting Keys.
    Thanks,
    Pavan.

  • Problem facing when changing configuration characterstic values in SO

    Hi Experts,
    I am facing a problem when i am chaging sales order configuration characterstic values they are updating perfectly. But when i am creating purchase order with reference to sales order then the sales order configuration currency characterstic values are picking as 0 which are already updated perfectly in sales order.
    I am using cl_cbase-> set_configuration method for to update the characterstic currency values.
                    cl_cbase->set_mark_for_saving after the above method
                    cl_cbase->save_and_free after the above method.
    Would request your suggestions if you have come across this situation.
    Advance Thanks
    Regards,
    Chandra.

    Hi,
    Can do it using Union All is prompt SQL and presentation variable in report.
    Refer : http://www.varanasisaichand.com/2010/01/editing-all-choices-in-dashboard.html
    Regards,
    Srikanth

  • EHS: Set up Table-based Value assignment Error.

    Hi all,
    We are customizin Basic Data & Tools and when trying to set table based assignments (table TCG11_VAI; program RC1TCG11_02) we are getting no entries in the table. The message shown is always <i>"0 unchanged entries, 0 new entries, 0 entries deleted"</i> independant on the entry criteria
    The problem is that we can create those entries manually but it will be endless
    Has this happened to anyone before? Any idea?
    Many thanks and regards,
    Alberto

    Hi all,
    We have just find the solution.
    Just for your information the problem was that the IMG activity "Adopt
    Standard Specification Database" was executed but not working properly
    because no data can be copied from client 000. Then when executing "Set
    Up table Based Value Assignment" no entries were made in the table. We
    have just change the client, execute "Adopt Standard Specification
    Database" and then "Set Up table Based Value Assignment" and now is
    working properly
    Alberto

  • Value assignment and value assignment type in the specification workbench

    Hi all,
    There is this section on the specification workbench called u201CProperty Treeu201D, this section contains all the value assignment type, I have two questions on this.
    Question 1 u2013
    What is exactly the value assignment type? The SAP help portal said it is a structure specification data and information. What exactly does it mean and its usage?
    Question 2 u2013
    May I know where is the SPRO configuration that actually causes the list of value assignment types appear on the property tree section for this particular specification type which I created.
    In another word, I create this new specification with specification type u201CREAL_SUBu201C and specification category u201CSubstanceu201C in the specification workbench transaction. Next thing I know is that the property tree section for this particular specification consists of a list of value assignment type. How does the system assigned these list of value assignment types to this specification i created? Coz I didnu2019t do anything.
    Where in SPRO and the logic link it up on this??
    Thanks.
    YY

    Hello all
    EH&S contains a number of submodules (PS, DG, IH etc.). Regarding each submodule a basic customizing is delivered by SAP. One example is the specification type. Usually you will find something like
    REAL_SUB
    LIST_SUB
    etc. in the Customizing as discussed. Further more I believe with EH&S 2.7. the specification category come in place (SUBSTANCE as an example). You need to take care regarding this too.
    An value assignment type can be grouped in a property tree and a property tree can be linked to a specification type and there are cases known that one specification type is linked only to one property tree (this is a decision regarding business needs and not an IT quesition). Using the EHS& surface you can change the property tree per specification if the set up is done in Customizing. Therefore the property tree is a "view" on the data linked to a specification. (identifeirs etc. are managed different)
    A "property" is based on a value assigment type and in many cases on a related EH&S class and characteristic. You will find these types.
    A => value assignment type to be used if you need characteristics
    B => value assignment type to be used if you need specification listing
    C  => value assignment type to be used if you need composition
    .. etc.
    You can mix types. That means you can create a property of type "A" and "C" (take a look in SAP original tree; you will find examples how to do it).
    A propetry tree is a "list" of assignment type related to a object (specification). Using the property tree you can maintain necessary data. Therefore ithe property tree itself contains per specification the list of "potential" data structures you can fill with data. I belive SAP Standard is delviering now something like 250 properties (valeu assignment types): To e.g. get an MSDS you need to maintain I would assume at least something like 20 up to 50 properties
    The area of customizing regrading property tree, specification types etc.  is the most crticial to have a sucessful EH&S project running; any wrong decision gives rise to a high cost later Therefore take your time to understand what effect does which customizing acitivity have later.
    Based on the value assignemnt you will create later e.g. a WWI report (like MSDS).
    Additionally if necessary you can create customer specific value assignment types by either do a copy from SAP original to "Z" (highly recommended to do so!) or starting from basic. 
    Starting with EH&S 2.7. you have now more options to "change" EH&S using standard EH&S functionality. Take a look in customizinjg (example: you could create you own "look and feel" of the workbench (you should'nt really do that but it is possible). You can design your own "tab strips" etc.
    So once again: the "correct" set up of EH&S in the area of e.g. identifers, speficiation types, property trees etc. is the "core" activity in EH&S customizing and therefore think "twice" before you change the setup up (you need to understand what a change mean)
    With best regards
    C.B.

Maybe you are looking for

  • How do I change the cursor to image when you click on it?

    hi everyone, Iwould like a user to click on an image of a bottle, and the cursor to then turn into the bottle image. I have four bottles in total so I would like it to change whenever a user clicks on a different bottle image. Does anyone know how to

  • Cannot start or uninstall firefox

    Firefox 3.6.15 will not open (either in the normal fashion or in safe mode). I've tried to create a new profile but I cannot access the Profile Manager. When I type firefox.exe –profilemanager into the run box on the start menu, I just get a box that

  • Have any dentists found a good intraoral camera that works with an iPad?

    I Am a veterinarian doing dental work on horses- I would like to find an intraoral camera to work with my iPad Air so as to show clients - wifi or blue tooth?? App??

  • Best method for keeping iMovie projects long term?

    I read through 30 pages of posts as I think this is a pretty basic question, but didn't see it directly addressed, so please forgive me... Some of my movies are mammoth in size (as much as 30GB for 1 movie), which I've learned are due to iMovie handi

  • Freight condition type

    when i am creating a po, in freight condition type my value is getting copied from my previous document, i dont want that to happen, how should i go about for changes. well i have went in following path :- Enviroment Data-define default value for buy