Linking of class characteristics

Hi sap gurus,
How to get the value of class-characteristic in results recording of inspection lot
Cheers,
Krishna

Hi,
Find the link attached for your reference.
http://http://sap.allisontransmission.com/saphelp/helpdata/EN/2d/350a81448c11d189420000e829fbbd/content.htm[/url]
To add spec. limits to a class characteristic:
1. Select the characteristic
2. Click on overwrite values icon
3. Enter the spec.limits as 9.995 - 10.005
4. It is worthwhile ticking the box for "Additional values", otherwise out-of-spec results will not get transferred.
Try that and let me know if you have problems
Note: if you need require LSL and USL to be passed to your MIC rather than a target value apply OSS note 119708 (QM: No Intervals can be derived in Configuration).
Regards,
Murali.S

Similar Messages

  • Link between Class and characteristics created for that class

    Hi All,
    Is there any table that I can look at to find a link between class and the characteristics created for that class. For all the list of characteristics created I am refereing to CABN table but my requirement is to find the logic to see all the characteristics created for a class. Can anyone suggest me the right table to look at?
    Regards,
    Shane

    Hi,
    I would like to thank you for your quick response. So based on your thoughts, here is the process i followed to find the characteristics for a existing class,  took the Internal class number and used the KSML table to find all the Characteristics created for that class.
    To find the list of values assigned to that characteristics, used the AUSP table for that characteristics internal number.
    Thank you again for your inputs
    Shane.

  • Need link between Equipment- class- characteristics- values...

    Hi Guys,
    As per the customers requirement I have to list down all the equipments along with the respective corresponding values. The equipments are linked to the Characteristics by class type and class and then characteristics and then the the values that are assigned.
    I am aware that the characteristics and the values are saved in the CABN and CAWN table and the link between them us the internal number.
    Can any one please suggest me if there is a way to find a table link for equipment which are assignd to a Class type and hence a class and then these characteristics in CABN and values in CAWN.
    Thanks in advance.
    Anoop

    Plesae post your question in the appropriate forum -- this is for Asset Accounting.

  • How to link material idoc to class & characteristics ?

    Hi Experts,
    Please help me to link material idoc to class & classification.
    I am new to idoc.
    Thanks in advance..

    Hi Nikhil,
    Thanks for your reply.
    I know message types CLSMAS u2014 Class master CLFMAS u2014 Classification data.
    I have been told that to research, while sending idoc how material would be linked to class & classification.

  • Class , Characteristics and Reference

    Hi,
    can someone please explain me the concept of Class , Characteristics & Reference usage in PM module?
    Also related T-codes.
    Regards,
    Ram

    Hello Ram,
    Please go through this eBook for theoretical aspects CACLCHR
    Also go through all links here in SAP Help
    Take Tcodes from this page Tcodes (Tcodes starting with 'C' are more relevant for PM).
    Now, few lines about concept in SAP-PM usage:
    A class identifies a group of Equipments having identical specification parameters (ex. AC Squirrel Cage Induction Motor). So Equipments of all such motors are assigned this class. (Class is created with CL02). The parameters I mentioned (Current, RPM, KW etc, etc) are called Characteristics in SAP. (These are created with CT04). The characteristics created so, are then assigned to the class (CL02). The Equipments assigned such class will show these characteristics (in the Classification push button in IE02/IE03) and you will enter the characteristic values there. For ex.few equipments will have 11 KW, 18A, 1440RPM  and some 7.5KW, 12A, 950 RPM and so on. After having this master data exercise, you can search the equipments by the Characteristic values through Tcode IE05. Also, go through the Tcodes given above.
    Classes are used across modules, so it has Types. (002 is for PM, 001 is for Materials and so on)
    KJogeswaraRao

  • Why Class characteristics req in QM

    Hi QM Gurus,
    I have inspection plan with MIC it is working very well.
    But some of  them told you can use class characteristics with MIC.
    My question is.
    1. What is the use of class characteristics?
    2. why it is assign to MIC.
    Please clarify....
    Regards,
    Babu.S

    Dear Singh,
    >1. What is the use of class characteristics?
    It migrates the results recorded to the Batch Class.
    >2. why it is assign to MIC.
    Class Characteristic is assign to...
    - 1. Batch Class, and this batch class is assigned to Material
    - 2. With reference to this Class Characteristic, an MIC is created, and this MIC is getting assigned to the Inspection Plan/ Material Specification of the Material.
    - Now when the RR is done for these MIC, in the inspection lot for the Material, the Values of Result, Migrates to the Batch, in the Batch Class.
    To test the scenario
    - Create a Characteristic (CT04)
    - Create a Batch Class (CL02)
    - Assign the Characteristic to the Batch Class.
    - Assign the Batch Class to Material.
    - Create an MIC, using the Characteristic (QS21)
    - Assign the MIC to the Inspection Plan (QP01)/ Material Specification (QS61), of the Material.
    - Create an Inspection Lot for the Material, have new Batch.
    - Perform RR and UD.
    - Now go to MMBE,MM02,BMBC,MSC3N, and check the value of the Result is Migrated here in the Batch, under Batch Class.
    NOTE:-. It will not work if the material is not Batch Managed.
    Let me know the progress.
    Have Happy Week End!!!!!!!!
    Regards,
    Shyamal

  • CLASS CHARACTERISTICS

    when i am trying to create  class characteristics  in additional tab reference to table field is display mode means i am unable to enter table & field name  is there any body face this problem kindly suggest me how to activate.

    have you tried to use "char" as I understand some of the things like selected set can only be used in consent with "Char"..

  • Implementation of Linked List class

    I am trying to implement the Linked List class for one week, but I couldn't figure it out. If you know, please let me know.

    Here is an example of a linked list. Hope that will help.
    // define a node of a linked list
    public class Node
    public int data; // point to data
    public Node next; // pointer to next node or point to null if end of list
    // listTest1
    public class ListTest1
    public static void main(String[] args)
    Node list;
    list = new Node();
    list.data = 3;
    list.next = new Node();
    list.next.data = 7;
    list.next.next = new Node();
    list.next.next.data = 12;
    list.next.next.next = null;
    Node current = list;
    while (current != null) {
    System.out.print(current.data + " ");
    current = current.next;
    System.out.println();
    // other listnode
    public class ListNode
    public int data;
    public ListNode next;
    public ListNode()
    // post: constructs a node with data 0 and null link
    this(0, null);
    public ListNode(int value)
    // post: constructs a node with given data and null link
    this(value, null);
    public ListNode(int value, ListNode link)
    // post: constructs a node with given data and given link
    data = value;
    next = link;
    Contents of ListTest2.java
    public class ListTest2
    public static void main(String[] args)
    ListNode list = new ListNode(3, new ListNode(7, new ListNode(12)));
    ListNode current = list;
    while (current != null) {
    System.out.print(current.data + " ");
    current = current.next;
    System.out.println();

  • Linking a class to a symbol

    I have a simple progress bar symbol (ProgBar) in the library of main.fla. If I don't define a class and allow Flash to assign a placeholder class of ProgBar, then the symbol displays ok using
    progBar = new ProgBar();
    addChild(progBar);
    If I define a class, even the basic empty version below, I get the following error:
    ReferenceError: Error #1056: Cannot create property percent_txt on ProgBar.
    at flash.display::Sprite/constructChildren()
    at flash.display::Sprite()
    at flash.display::MovieClip()
    Class code:
    package {
    import flash.display.*;
    import flash.text.*;
    public class ProgBar extends MovieClip {
      public function ProgBar(): void {
    percent_txt is a text field I've given an instance name to. If I delete the text field (or its instance name) the error changes to reference the next item in the symbol and so on until there are none left!
    What have I missed?

    Well, yes, I thought it was a great plan! As part of my AS3/OOP education I'm trying to design a progress bar symbol with an associated class file for use in various projects. So I have progBar.fla containing a symbol, progBarMC, linked to class file ProgBar.as (which currently only traces "ProgBar constructor" as each instance is created). To test this I have main.fla and its document class Main.as. I've dragged a copy of progBarMC into the library of main.fla. Main.as looks like this:
    package {
    import flash.display.MovieClip;
    import flash.text.*;
    public class Main extends MovieClip {
      var progBar:MovieClip;
      public function Main() {
       progBar = new ProgBar();
       addChild(progBar);
    This only seemed to work if the symbol files were in the same folder as main.fla, but I've fixed that now - I hadn't set a class path for the symbol files.
    Your question sort of implies that this might not be an ideal approach. Any advice gratefully received!

  • Class characteristics req in QM

    Hi
    1. Why Class characteristics req in QM   ?
    2. I don't have any materials in batch managed, so in this case , is it really required?
    3. If yes, in which all scenarios calss characteristics can be used?
    Please explain.
    Thanks,

    1. Why Class characteristics req in QM ?
    It migrates the results recorded to the Batch Class.
    2. I don't have any materials in batch managed, so in this case , is it really required?
    Yes
    3. If yes, in which all scenarios calss characteristics can be used?
    a) If you want pass the characteristics  spec for variant configuration.
    Pass the spec @ sales order level,
    Pass the spec @ purchase order level.
    For that above reason class characteristics req. in QM
    Regards,
    S.Babusingh

  • Transfer of Material Class characteristics into Batch

    Hello,
    Is there a way to transfer the material specific class characteristics ( maintained in material class 001) into Batch, while creating a new batch?
    For e.g. for Material A, i have Material Class Characteristic = COLOR, with a value RED.
    So if i create a new Batch for Material A, the COLOR characteristic in Batch should get defaulted to RED, instead of manually entering.
    Pl let us know, if this is possible.
    Regards,
    Mangesh
    P.S: I know there is Default check at the characteristic value level, but that doesn't help, as each material will have different value.

    Dear,
    You can use function module exit EXIT_SAPLV01Z_014  SAP enhancement SAPLV1ZN when assigning characteristic values to batches with EXTENDED_CLASSIFYING parameter. You use this to classify user-defined characteristics in the background when creating a new batch using the central function module VB_CREATE_BATCH during activated batch classification.
    Refer IMG>Batch Mngmt>Characteristics Value Assignment>...using function module
    Please try and come back.
    Regards,
    R.brahmankar
    Edited by: R Brahmankar on Oct 11, 2010 4:39 PM

  • BAPI to upload customer class characteristics(XD02)

    Hi,
    My requirement is to upload Class Characteristics and its values for a customer in XD02.
    XD02- > Extras -> Classification
    I have founded a few bapi's but its not working. I tried the below options.
    BAPI_CLASS_CREATE
    BAPI_OBJCL_CREATE
    If someone who worked on similar requirement ... Pls reply.
    Thanks
    Hari

    BAPI_OBJCL_CREATE must work fou you
    look at:
    [BAPI BAPI_OBJCL_CREATE|BAPI BAPI_OBJCL_CREATE]
    [Characteristics value not assigned by BAPI_OBJCL_CHANGE;
    don't forget  BAPI_TRANSACTION_COMMIT after this FM

  • Read Document Class Characteristics Values (Class Type 017)

    Hi Gurus,
    I want to read values of Document Class Characteristics (Class Type 017).
    Is there any Functional Module available for this?
    Best regards,
    Abir.

    Hi ,
    Use this BAPI   BAPI_DOCUMENT_GETDETAIL2 to get the details of class and char values for particular documents.
    kindly enter the data about the DIR and mark the ent
    DOCUMENTTYPE                  DRW
    DOCUMENTNUMBER            2000
    DOCUMENTPART                 000
    DOCUMENTVERSION            00
    GETOBJECTLINKS                       X
    GETCOMPONENTS
    GETSTATUSLOG
    GETLONGTEXTS                          X
    GETACTIVEFILES
    GETDOCDESCRIPTIONS               X
    GETDOCFILES                             X
    GETCLASSIFICATION                    X
    GETSTRUCTURE
    GETWHEREUSED
    HOSTNAME
    INHERITED
    Here whatever marked as a 'X' BAPI will return the values for particular DIR.
    Use TCODE SE37 for executing this BAPI or get the help of your technical person.
    Regards
    Abhiji A. Pachgade

  • BAPI for fill class characteristics

    Hi,
    Wich BAPI schould I use to fill class characteristics,
    where class is associated with batch.
    Please it's very important
    Regards,
    Greg.

    BAPI_CLASS_ALLOC_GLOB_DEP      BAPI: Assign Global Dependencies to Class
    BAPI_CLASS_CHANGE                      BAPI: Change Class
    BAPI_CLASS_CHARVALUE_DEL_DEP   Class BAPI: Delete Local / Global Dependencies for Characteristic Valu
    BAPI_CLASS_CHARVALUE_GLOB_DEP  Class BAPI: Assign Global Dependencies to Characteristic Value
    BAPI_CLASS_CHARVALUE_LOCAL_DEP Class BAPI: Maintain Local Dependency for Characteristic Value
    BAPI_CLASS_CHARVALUE_READ_ALLO Class BAPI: Read Dependencies for Characteristic Value
    BAPI_CLASS_CHAR_ALLOC_GLOB_DEP Class BAPI: Global Dependencies for Characteristic
    BAPI_CLASS_CHAR_DELETE_DEP     Class BAPI: Delete Global / Local Dependency for Characteristic
    BAPI_CLASS_CHAR_LOCAL_DEP      Class BAPI: Assign / Delete Local Dependency for Characteristic
    BAPI_CLASS_CHAR_READ_ALLOC     Class BAPI: Read Dependencies for Characteristic
    BAPI_CLASS_CHAR_VALUE_TEXT_DEL Class BAPI: Delete Overwriting of Long Text for Characteristic or Value
    BAPI_CLASS_CHAR_VALUE_TEXT_OVR Class BAPI: Overwriting of Long Text for Characteristic or Value
    Just check these FM
    Regards,
    Pavan P.

  • Eqpt - Class - Characteristics - Charac. Values( link table?)

    Hi,
    I have created a Eqpt and assigned a Class with Characteristics and assigned Charc.Values to it.
    I wanted to generate a report where i wanted to extract a Charac.values assigned to the Eqpt.
    Can anyone let me know the Tables / field names ?
    Pl. help.
    Edited by: rishi A on Sep 16, 2008 1:38 PM

    Hi Rishi,
    Use T Code: CL6BN
    Raj

Maybe you are looking for

  • Use Of Dictionary Based search help in adobe interactive form

    Hi friends,    I wanted to export the search help value into corresponding field of Adobe interactive form.   I am using dictionary type search help in WD context attribute property.  I am able to get the search help popup with right data on form. Bu

  • Schema binding versus XML data binding

    I have been able to create a fillable XFA form using XML data and employing the xfa.host.importData(""); script. This has worked well. I now find that I must do a similar thing - only using a schema to bind the data to the PDF form fields ... Can you

  • Alternatives to MS workstation authentication certificates for 802.1x?

    I found out recently the hard way that the Certificate Authority bundled with Windows Server 2008 won't load the 'workstation authentication' certificate template.  (You need 2008 Enterprise/Datacentre or 2008 R2, or any edition of 2008 R2). Does any

  • CLI152 user is a required option

    Hi, I am getting this error while undeploying hello application provided with the application server. Please guide. The command was given at command prompt as : asadmin undeploy hello Error : Usage: undeploy [--terse=false] [--echo=false] [--interact

  • I am using Elements 12.  Removing tags

    I would like to start over with tags in one of catalogues.  It contains a lot of pics.  Is there an easy way to remove all the tags I have applied or do I have to treat each pic indivually?