Characteristic values and CT04

Hi all,
I have a user that wants to store default values for certain fields in the characteristics of a class. For instance, I create a material...if the characteristic GR_PR_TIME is 5...then assign 5 to the GR PR Time field for the material. Problem is when the user goes to CT04 to change the characteristic value. As soon as the user deletes the old value they are prompted that the value is already associated with a material and as such should not be deleted. How do I work around that? I suggested multiple allowed characteristic values with one marked as default but my user doesn't like that suggestion. What am I missing here? Should this not be a class based solution?
Thanks,
Mat

Check if you can use material and material groups or product and product Info objects in BW. If they suit, just assign the data source that you cerated in R/3 to these info sources and that is it.
Ravi Thothadri

Similar Messages

  • When we run query how it gets the characteristic values and attributes.

    Hi,
    When we load transaction data it chacks characteristic values then SIDs then DIM IDs then insert  DIM IDs into fact table but when we run the query how it checks and gets the characteristic values and attributes.
    Bye
    GK

    when we run the query how it checks and gets the characteristic values and attributes.
    Just the opposite way you have described. It gets from the corresponding masterdata tables, with the connected SID.

  • Bex Query - How to capture characteristic value and set it as filter value?

    Dear Experts,
    I would like to create a tricky report that listed sales quantity by companis. Companies consists of production plant as well as trading company.
    Company / Sales Quantity / Sales Quantity 2 (which produced by Company itself)
    A            / 100                  / 50                     (50 was produced by company A)
    B            /  80                   / 0                      (this is a trading company)
    C            / 150                  / 150                   (All are produced by company C)
    First I thought of using variable to capture Company value and then under Sales Quantity 2 I set producing company = this variable. But this only works if I filter company values. Any workaround idea that I can get the above with all the listing of companies?
    Any assistance would be great! Thanks!
    JL

    Hi,
    Have you tried elimination of Internal business Volume?
    http://help.sap.com/saphelp_bw32/helpdata/en/d5/784d3c596f0b26e10000000a11402f/content.htm
    Impliment this solution  by adding another KF Sales qty2.  with ref. to Sales qty.
    In characteristic pair you can have Company and  Production Company(navigational attribute).
    By implimenting this solution  the system will eliminate if the quantity is produced by the company it self.  You can create CKF in query to get the result you need.
    Jaya

  • Group characteristic values and display text

    Hello,
    I would like to group some characteristics into a new variable. For this I've used structures without any problem. Now I would like to display the characteristic texts I've grouped.
    For exemple I would like:
    Group1...Text1
    .............Text2
    .............Text3
    Group2...Text4
    .............Text5
    When I add into my row selection texts I get as results a repetition of all texts inside all groups, even if I don't have any value:
    Group1...Text1
    .............Text2
    .............Text3
    .............Text4
    .............Text5
    Group2...Text1
    .............Text2
    .............Text3
    .............Text4
    .............Text5
    Can someone help me?
    Thanks,
    Benoit

    Hi, Have you done Zero suppress, it will automatically take care of this.
    Now logic behind why query behave like this.
    Here you have created a structure on Text , so Structure is Fix Component of Query. Now while you put Group Before this, it means you are drill down query on Groups, at that time after every group, Fixed structure will repeat. Just think How query knows which part of structure is attached with which group?

  • Linking Different characteristic values

    Guru's,
      We maintain characteristics in the material master and I need to link characteristic values(In ct04 level not individual material level)in different materials. For example when i search for tyre size 10/20 I need to see materials with tyre size 15/30 and 23/43. This link I need to maintain at Characteristic level and not individual material level.
    Thank you in advance for the feedback.
    Shiral.

    Create a Calculated Key Fig " = 1"
    and in the exception appregation properties ...set it to "Total" and Reference Charac = "Object"

  • Condition type value updation using characteristic value in sales order

    Hi Experts,
    We are implementing SAP for one of our Spain client. In that one of the Legal requirements is, whenever they are selling the finished products to domestic customers who contain OIL as one of the component then, some additional cost needs to be calculated and collected from customer and which needs to be paid back to Spain Government every month on Region basis.
           If OIL is not a component to produce the finished product then, not required to charge the customer additionally.
    The OIL content used to produce every finished product will vary based on product characteristic value. Meaning, for some finished product the OIL used will be 2.2 KG and for some products it will be 3.5, 4.3 KG and etc.
    Since various combinations of products are available for the client, during sales order creation we are planning to update some special characteristic which the data flow from u201CVariant Tableu201D. In the variant table we are going to maintain the OIL Quantity required making finished product.
    But we are not sure how to activate a new condition type with the value fetched in the special characteristic. This new condition type needs to be activated based on this characteristic value and multiplied with total order quantity and price to charge from customer.
    Example, the special characteristic fetched the value of 2.2 KG based on variant table. Total Order quantity is 10 PC and charge is 0.06 EURO per KG. in this case, (2.2 x 10 ) x 0.06 EURO = 1.32 EURO
    I need the expert opinion how to activate the new condition type based on characteristic value and achieve the above requirement.
    Thanks in advance.
    Warm Regards,
    VEL

    Hello,
    I have replicated the whole requirememt in IDES and getting the price calculation as needed but the only issue with the Conversion factor for the condition type. Either you need to maintian the conv factor in material master or need to enter manually for the condition type in SO. Some how you have to maintain the conversion factor to calculate the price for the condition type in different unit.
    For easy of understanding Lets make the whole requirement in 2 parts
    Part - 1
    Oil qty calculation. For convenience sake I have taken oil qty also in TO
    1) Created a num char OIL_QTY1 with length 9 and decimal places 5 and UOM as TO
    2) Created Variant table to infer the OIL qty in TO per piece of finished prod ( This oil qty data may be depends on various factors). For certain Finished products the oil qty may be 0 or blank
    3) Created a REF char SO_QTY  to pull the SO qty to configuration and add this char in class 300(Table:VBAP,Field :KWMENG)
    4) Created another char SO_OIL_QTY  (Num with length 9 and decimal places 5 and UOM as TO)
    5) Created a PROCEDURE say PROC_SO_OIL_QTY with code
    *$self.SO_OIL_QTY = $self.OIL_QTY1 * $self.SO_QTY*
    6) Create another PROCEDURE as mentioned earlier with modified code
    $SELF.A_VARCOND = 'TEST_001' if OIL_QTY1 specified,
    $SET_PRICING_FACTOR ($SELF,A_VARCOND,'TEST_001', SO_OIL_QTY)
    Note: Maintain proper seq of the procedures in profile. The Qty cal proc should be before the price related procedures.
    PART-2
    1) For the condition type maintained 60 EUR per TO (0.06 EUR per KG)
    Now if you create SO for the Finished product of 10 PC
    the Char values will be
    OIL_QTY1  = 0.00022 TO (inferred from Variant table th proc)
    SO_QTY    = 10
    SO_OIL_QTY = 0.0022 TO
    Get into conditions tab
    Here Condition type ZSIG will be displayed as error with Amount 60 EUR per TO and condition value will be blank. Just enter value 1 in the col NumC and CCon fields.
    Now the Condition value will appear as 1.32 EUR.
    Hope this gives some more clarity
    Regards
    Brahmaji D

  • No characteristic value of the material in PO

    Hi,
    I am testing the configuration material. I've maintianed a class of class type 200 in BOM, and get the PR after running MRP. No any field or view in PO to display the characteristic value of material. How to get it? I thought it should be display somewhere in PO and in the GR view, because the buyer should know what product they should get and the inspector should know what should be inspect and the pass level.
    Thanks!

    Hello,
    I checked all the tab in PO and PR, but no any icon to see the characteristic.
    I've created a PO for a material which was maintain a class of class type 001, then I've seen the icon 'configuration'.
    Is it necessary to maintain a class of class type 001 for the material related class item in BOM? The on line help told that could create some materials with different characteristic value of one characteristic assigned to a class of class type 200, then maintain this class in BOM. System will pick the right material according to the characteristic value in SO.
    I am confused that why have to create some materials to do that because this application is to reduce redundance of material. I thought one material is enought, which will be required by the characteristic value and taking this value in PO. Do I have to maintain the class 001 for this? If yes, how can I get the characteristic value of class 001 from same charactieristic in the class 002?
    Lin
    Edited by: liang_yielin on May 18, 2010 11:46 AM

  • Extended/modified to accept characteristic values for BAPI_SALESORDER_CREAT

    Hi All,
      can any help me extended/modified to accept characteristic values for BAPI_SALESORDER_CREATFROMDAT2 BAPI.my requirement is
    Exploring the standard BAPI BAPI_SALESORDER_CREATEFROMDAT2 (or any other suitable)to be extended/modified to accept characteristic values
      and based on characteristic values, it should perform variant matching
      and if  in case variant matching is successful, the BAPI should replace the KMAT material with the exact matched variant material.In case the variant matching is unsuccessful, then retain the KMAT material in the sales order line item

    Hello Nagarajan,
    I have used this BAPI in my last task. You are passing the values correctly. I will tell you why it is giving like that message.
    Whenever we will create a sales order in VA01 transaction, you will get a message like "The sales order is not complete, would you like to EDIT" while saving the sales order.... This is because of not providing complete data required for careation of sales order.
    Try to implement the changes manually in VA02, if you get same errors, then you can find your code is correct.
    Even I got same type of messages when changing a sales order to change the Rejection Reason for the items.
    Best Regards,
    Sasidhar Reddy Matli.
    Edited by: Sasidhar Reddy Matli on Jul 31, 2008 2:20 PM

  • What is meant by characteristic  values

    hi
    what is meant by characteristic  values
    i have seen some tables like AUSP, these r for characteristic values.
    can any one explain me that

    Hi,
    Characteristic value variables are parameters for a query. You set these variables in the query definition, and they are filled with values when you execute the query. They act as placeholders for characteristic values, and are processed using any processing type.
    In some cases, it is possible to use variables for texts, as well as for characteristic values.
    If you specify a variable as a characteristic value, for example, you do not have to give a text for the characteristic value straight away. Instead, you are able to fill the text field dynamically, according to the characteristic that you used for the variable when you inserted the query into the workbook. Define a text variable with automatic replacement for this.
    Use
    You need to use a variable for characteristic values, if you want to specify one or more characteristic values that you do not want to be included permanently in the query definition. A characteristic value variable is the placeholder for either a single value, an interval, or a set of selection options. With selection options, it is possible to make several restrictions, meaning that you are able to combine single values and intervals (7 and 3 to 19 and 43, for example). Characteristic value variables for intervals and selection options are available with the processing type Manual entry / Proposed value and Customer Exit.
    Thanks,
    Khushbu.

  • Help search Characteristic value

    Hi gurus,
    I need one help search for all existing characteristic values in the system.  I have a chareacteristic name, lets say XPTO and i want to show all existing values in the system that XPTO has in the AUSP.
    Can someone help?
    Thk,
    Regards

    Hi  friend there  is  no serach help  for your  characteristic value and the characteris  name ....
    so  one thing  you have to  create a serach help  it and  attach to there  data element  ....
    if you want  you  see  it by pressing in the F4 help ..  it wont work     because  there is no seaarch help  ......
    Girish

  • Updating a characteristic value (CT04)

    I have created a new class with corresponding characteristic. My characteristic has a single value, "01" representing document version number. I the MM, i add this new class to the Classification view for the appropriate material number. However, i have noticed that when we go to update the value in the characteristic, from lets say "01" to "02", we first get an error saying the value cannot be deleted (but the system lets us do this anyway) but more importantly when we do change the value, our hope was that the value in the MM class would automatically be updated as well. That doesnt seem to be the case as I have to physically go into the MM record and delete the class, then re-add it with the new updated value for the update to appear in the MM record as well as AUSP. This is my first time dealing with classifications/classes. Can someone give me guidance on how to achieve something more easily maintained?

    In the CLMM transaction, select "Set and Change Values". 
    In the next screen, enter in 001 for material class in the class type field.  Then add the characteristics you wish to change on the tab labelled "Chars".  You can just add a new value to change all instances or you can specify an old value to change and only those with matching values will be changed.
    Now click on the "Target Objs" tab.  Enter in the material numbers you want to change.  Click on the indicator "Overwrite Existing Values" to replace values, leave it blank if you are adding new values for a characteristic that allows multiple values.
    On the menu bar is a button labelled "Test".  Click on this to do a test run and see the log that is generated.  When you have all the right selections, and the log looks correct, click on the button to the left of the Test button to execute the changes.
    You can also use this to mass change assignments in certain classes. On the first screen,  the first choice "Copy Values assigned to object" allow you copy the values from one object to another.. say for instance all the material class values from material A to Material A, B and C.
    The third choice is "Assign value in matrix".  This is very cool as it gives you a spread sheet form with the all the objects, (materials), listed vertically, and all the characteristics listed across.  You can see the current values, and manually change any of the ones you want to.
    This can be a very powerful transaction.  It should be limited to only a handful of people
    Craig

  • Post material master idoc  with class and characteristic values

    Hi,
    I need to post the class and characterstic values of material while posting the material using idoc of basic type matmas05 . Can anyone suggest me the fields and segment details to fill the class, class type and characteristic values in matmas05.
    Note : the class and characteristic values are already created in the system, my purpose is to assign them to material while creating. so please give me the field and segment details in idoc basic type matmas05.
    thanks
    Kiran

    I  try to do the samething. I see the fields E1CUVAL : CU: Characteristic valuation in the structure of MATMAS05 but when I run the IDOC, these fields never appear even they exist for the material.
    Did you find an answer to your question that can help me?

  • Mandatory entry in the Characteristic value - CT04

    Hello Folks,
    I created a new characteristic (classification view) for the material master, and I am trying to put the characteristic value as mandatory entry . Is it possible ?
    Any answer will be very helpfull,
    Regards,
    Flavio Marcilio

    Dear Flavio Marcilio,
    In IMG under Logistics General -> Material Master -> Field Selection
    or
    You can maintain a transaction variant where in you can specify whether the fields are optional, display only, required entry, suppressed.
    http://help.sap.com/saphelp_webas620/helpdata/en/eb/5fab41d79b11d296190000e82de14a/content.htm
    In the SAP Reference IMG, you can create transaction variants. Choose Basis Components -> Application Personalization -> Tailoring of Application Transactions -> Configure Transaction-Related Display Values for Fields (Transaction SHD0). Transaction variants allow you to preset values for fields in a transaction, set field attributes, or hide entire screens.
    To execute a transaction variant, you define a variant transaction using the Transaction Maintenance transaction (SE93).
    Once you have entered a transaction code and short description, choose transaction type Transaction with variant (Variant transaction).
    To define a variant, enter the name of the transaction and the name of the variant. You can then use the new transaction code to start the special variant of the transaction.
    Hope this will help.
    Regards,
    Naveen.

  • Characteristic values for the material and plant combination...

    Hi Friends,
    I would like to know how can we maintain the characteristic values for the combination of Material and Plant though the material is not batch managed?
    Thanks in advance,
    Ram

    Hi Rajendra,
    Thanks for quick reply. I am maintaining under classification view but it does not ask plant any where. So the value will be same across all the plants but i want to maintain characteristic values separately under each plant for same material.
    Regards,
    Ram

  • Chd and characteristic values

    Hello,
    I got a problem with CHD command.
    call chnalloc("test", 100, 1)
    dim intloop
    for intloop = 1 to 100
    chd(intloop, "test") = intloop
    next
    msgbox cmax("test")
    To my knowledge CHD recalculates the characteristic values(min, max, monotonicity, novaluekey)
    But the maximum property in channel property window still has NOVALUE.
    and msgbox cmax("test") returned an error.
    Please help for this problem.
    Do I must use 'Chncharacter' with 'CHD' ?
    Best Regards.

    Hello!
    You have to call ChnCharacter after the loop.
    Matthias
    Matthias Alleweldt
    Project Engineer / Projektingenieur
    Twigeater?  

Maybe you are looking for

  • AT&T just "helped"me and wiped my phone. how do I get my apps back?

    Really two questions here: what happened to my phone, and how do I get my apps back.' 1. yesterday, my phone started showing the "connect to itunes" and emergency call only screen. I saw some advice in the forums about connecting it to a computer, bu

  • ABAP API for XML Validate(by schema)

    Hi   Encountering this problem, find out ABAP XSLT Processor API to transform a xml file, need to validate it against predefined schema, but have not find out proper ABAP API to take this validate task. Could anybody once meet such kind of problem? w

  • Too many sharepoints when connecting to server

    I have a 10.5.8 Tiger server. I am upgrading to the new Lion Server. I have setup the server, created users and groups and setup Sharepoints using the Server App. The problem is I have several sharepoints specific to certain groups. In Tiger the user

  • Oracle worklfow

    Hi Guys Ine to find out how to perfoma this checks in Oracle work flow 1)     How to check is the notification mailer is up and running 2)     How to stop and start the notification mailer 3)     How to check if a requisition/purchase order is stuck

  • RAW of Canon EOS 400D: No Preview before Importing, no import in projects..

    Hi all After updating to 1.5.1. and RAW Support 1.0.1, I experience following behavior: After connecting my Canon EOS 400D, there is no preview of the RAW-Pictures. JPEG-Pictures work fine. Then, when I import, the RAW-Pictures get imported not on th