Equipment Class Table

Hi,
I would like to ask what are the tables related to equipment class? When I go to IE03 then enter the equipment number and click classfication, there's a class number for that equipment. I'm using tables EQUI, EQUZ but I don't know what and how these tables will be linked to equipment class number. Your response is highly much appreciated.
Thanks a lot!

Hi,
If you want to get the characteristic values from the equipement class->
Try EQUI-EQUNR as OBJEK of AUSP table and
Also use EQUI-CUOBJ in IBIN-INSTANCE - > IBIN-IN_RECNO to IBINVALUES-IN_RECNO
then IBINVALUES-SYMBOLID to IBSYMBOL-SYMBOLID.
You can also use BAPI 'BAPI_OBJCL_GETCLASSES'.
Thanks,
Anmol.

Similar Messages

  • Equipment, classes, characteristics, values

    Hello,
    I'm trying to list out all equipments that have classes assigned to them and i also want to see which characteristics and values are valid for that equipment. I want to have that in one overview.
    transaction CL6BN comes very close, but i can not make a download from that transaction to excel (at least i can not find the option)
    Does anyone know a transaction or table (table join) where i can find the needed information?
    Thanks in advance for your help
    Kind regards,
    Peter

    Hello Riyaj,
    Thank you for the swift reply. It seems like a good solution. When go to the menu option i get the pop-up with the following classes:
    AP06
    P0103
    AP01
    P0101
    AP05
    F0102
    F0101
    P0106
    P0108
    P0109
    P0112
    AP03
    P0105
    AP04
    CE01
    G0101
    G0102
    G0103
    Does this mean that of all the equipments in the list, only these classes are applicable to those equipments? I can not imagine, because if i check the class list, 182 equipment classes are supposed to be assigned...

  • Equipment class and charecterstics

    Hi SAP specialists,
    We are in the process of creating class and characteristics for equipments in my company. Please advise if there is a table of possible classes and characteristics that can be referred to while creating class and charecteristics.
    I understand many companies refer to a catalog of class-characteristic to select the combination that is applicable to them.
    Your valuable inputs are greatly appreciated.
    Regards,

    Dear Sridhara
    Actually the classes are mainatined according to class type & not according to equipment category (equipment type). So i think it is not possible to maintain it according to equipment category & there is no such table wich will maintain the classes according to equipment type.
    Yes you can create the Z table & update it while creating the classes under equipment class type & maintain it according to equipment category (Equipment type). But it is Z Development & not standard one.
    I hope this will answer your query.
    Regards
    Makarand Gurjar

  • What is the correct way to model an abstract base class/table?

    I tried to model an abstract base class/table. For the parent table I used the "Forward Engineer Strategy" "Table per child" and I set on each child table the "Super Type" to the corresponding parent table. I did this for two parent tables and five child tables. This is the result:
    https://lh5.googleusercontent.com/-1La98ulWOZg/T_2Hyock5-I/AAAAAAAAAoI/00qn5ukJCpI/s678/2012-07-11
    But when I engineer the logical model into a physical model, the result is not as expected:
    https://lh5.googleusercontent.com/-YfF_ocUa8bY/T_2H_YSqkyI/AAAAAAAAAoc/rNEYRnTFzU4/s617/2012-07-11
    First the parent table "obj" should not be created. The table is correctly omitted, but the primary key of the parent table gets created. For me this is not logical. And even worse the primary key gets created twice with the same name, which results in a DDL generation error.
    And second the primary key of the "attr" table does not get merged into the primary key of the child tables. This results into two individual unique constraints although I have expected to create only one with two attributes.
    Is this a bug or is there another way to model this example correctly?

    chriswalsh wrote:
    The installer for Silverlight installed it as a seperate volume displayed on the desktop...
    Likely that's not the app itself. When you download most Mac software, you are downloading a .dmg file (a disk image) - opening that (which may happen automatically) mounts a disk image on your desktop, and then you drag the app from that disk image to your Applications folder (or an installer runs).
    After copying/installing the app, you Eject the disk image, then delete the .dmg file (from your Downloads folder, probably).

  • [svn] 3403: Fix for SDK-17097 - Missing summary description of a class in package classes table

    Revision: 3403
    Author: [email protected]
    Date: 2008-09-29 12:36:37 -0700 (Mon, 29 Sep 2008)
    Log Message:
    Fix for SDK-17097 - Missing summary description of a class in package classes table
    QA: Yes
    Doc:
    Tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17097
    Modified Paths:
    flex/sdk/trunk/asdoc/templates/class-files.xslt

    Well, it's kind of logical that as you put more jar files (classes) in Tomcat, it changes the error to ask for the classes (inside a jar) it cannot find.
    There was a good class->jar finder on the internet some years ago, but i don't remember the address. Try looking for that and search all the missing classes (NotDefined) and their correspondig jar files.
    Good Luck!

  • 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.

  • Creating a pseudo column in class-table mapping

    I would like to create a class (Reference) with attributes
    long owner ;
    long child ;
    String childName ; // read only
    This will be loaded into the owner object in a Vector.
    This will be mapped to a database table (db_references) with columns
    owner number; -- FK to owner
    child number; --FK to child
    We are setting a shallow load scheme where we are only pulling the keys of the child objects into the owner.
    However, on load, I would like to be able to pull in the name of the child object as well as the key.
    If I add the child table to the descriptor, inserts of the Reference class try to insert into child table which already has the row, throwing the predictable error.
    This is another situation where my Oracle Forms experience must be blinding me to the correct solution. Any suggestions?

    I gave up on the generic mapping class and mapping table endeavor.
    In my current test, I created a read only SummaryClass that maps to a subset of the attributes on the FullClass.
    The Vector in the OwnerClass is mapped to the SummaryClass in TopLink. I even created a view on the tables involved with the FullClass with just the attributes required by the SummaryClass. When I read the owner, I get the FullClass in the Vector. I even changed the PK in the view for the SummaryClass to not match that in the FullClass.
    The FullClass objects are in the TopLink cache. There is no attempt to read the database on the read.
    When I issue a
    server.initializeIdentityMaps()
    in the read statement.
    Then the correct classes are returned on the read.
    A less radical:
    UnitOfWork uowSession = getUnitOfWorkSession();
    uowSession.removeFromIdentityMap(thePlan);
    in the read also works.
    I am rather concerned that the returned class from a TopLink read changes based on the state of the read cache.
    Any suggestions on how best to address this odd behavior?
    Thanks

  • Equipment - Class Characteristics restriction

    Hello,
    I would like to get some insight and the way of proceeding further for the below requirement. We have two characteristics defined in CT04 for Equipment - Manufacturer and Model Number.
    Example
    Manufacturer can have values like ABC, XYZ, JUO.....
    Model Number can have values like 123 Model, 124 Model, 125 Model. 126 Model
    My first requirement is - I need to have defined the Manufacturer and Model Number in tables, and refer that custom table in CT04 (I think I can use value check against table) option. Is this is the correct way?
    My second req is - For example if I choose ABC from Manufacturer then only 125 Model and 126 Model should show up on Model Number Characteristic - how to achieve this? I have given an example of values here, but in runtime it could be dynamic, so not sure how to write Dependancy here
    Any help is much appreciated!
    Regards,
    Justin.          

    Hi Justin,
    For your first requirement - Yes, you can use the option check against table but only drawback here is that the table you are referring should have one primary key and not more than that(Check this).
    Second requirement - If you have two characteristics for manufacturer & model, then this not possible. Instead you can have one characteristic for both and maintain model numbers as sub-characteristic values for each of the manufacturer value.
    Regards,
    Ravi

  • Equipment status table field...

    Hi,
    Does anyone know in which table is stored the equipment status field (Display lines for system status ITOBATTR-STTXT ). The field that tells you if the equipment is installed or available or flagged for deletion..
    I will really appreciate any comments.. thanks in advance.
    JV

    Hi
    http://www.sapfans.com/forums/viewtopic.php?t=199800&highlight=equipment+staus
    Goto EQUI Get the value from OBJNR based on EQUNR
    Now goto Jest table ,use OBJNR and you get many status.
    Either you can use JEST Table or FM STATUS_READ
    You can see all system status in Transaction BS23
    or
    Please check these tables.
    TJ02
    TJ02T
    TJ30
    TJ30T
    JEST
    <b>Reward ff usefull</b>

  • Equipment History Table

    Hi Experts,
    I want to know the Table  where the Equipment history details (Installation / Dismantling etc.) are stored. 
    Would appreciate if you can provide the Field where the Equipment Installation date is stored.
    Regards,
    Thushantha.

    Hi,
    Lets take an example of EQUI table...
    Here if suppose, we have 2 key fields MANDT(100) and EQUI(000000000000011010),
    then in the query to CDHDR table we have to concatenate the key field values
    OBJECTCLAS --> Concatenate MANDT AND EQUI (100000000000000011010)
    OBJECTID --> EQUI (for Equipments)
    You can use the additional fields like user name, date and time you know them.....
    Hope this helps.
    Regards,
    Kunjal

  • Equipment master table problem

    Dear Pal
    We are taking the some specifications for equipements thro EQUI Table. While excuting the table with equipmenet no +plant output is not appearing.
    but the same is working with equipement no .. why the system is behaves like that.

    Hi
    I am not sure u tried this
    Have u used Planning Plant in the table V_EQUI...
    It wont solve ur query... i am just asking... will this have any solution with ur query...
    Since plant is the universal thing.. in this u differentiate the maintenance plant using planning plant... check this out... or let me know if u have already done this..
    - Pithan

  • Equipment class assigning with equipment

    Dear PM experts,
    I have created characteristics and class for equipment under class type 002. While assigning the class to equipment master system throws a message that "No assignment find for class type 002". What is missing.
    Is any configuration is required for assigning the class with the equipment? . Pls let me know the solution.
    Thanks in advance.
    Chandru

    Hi Chandru,
    Check in the class whether you have assigned the charecteristics or not?
    the process is like this.
    first you create a Class with type 002, say Motor
    Then Create the charecteristics for the Motor in CT04, it would specs of the motor, like capacity, Current required etc..
    Then assign these Charecteristics to the classs motor in CL02.
    Now assign this class to the Equipment master.
    Regards,
    Praveen,

  • How to get the universe metadata information (class , tables...)  through JSP coding ?

    Hi,
         I am new to BO. I am developing tool which will extract the metadat information of report and universe using JSP (java ) in BO XI R2 . My problem is how to get universe metadata ? i listed the universe name by quering the CI_APPOBJECTS table. i couldn't get other information (Class and objects in the universe ).. I need the advice or idea or code to complete work... Please help to resolve my problem..
    Thanks Advance

    There's three ways to get the Universe Class/Object info:
    1. Use the Universe Designer SDK.  This is COM-based, so you'd write VBScript, VBA or VB6 code.
    2. Use the ReportEngine Java (REBean) API.  Programmatically create a Web Intelligence document, specify the Universe as DataProvider, then get the DataSource, which holds the Classes/Objects hierarchy.
    3. Use the QueryService Service in the BusinessObjects Web Service (via Java or .NET Consumer API) to do something similar to 2.
    Sincerely,
    Ted Ueda

  • Update Sales data in equipment fileds (Table ILOA)

    Hi
    we are issuing delivery for consignment equipment (material with serial number) to customer, movment type 631/632.
    While doing so, the equipment is update with relevant business partner, and it's status is ECUS ESTO,
    But the sales data of this equipment isn't updated in ILOA.
    Can someone  tell me if there is some cutomizing way to set Sales data (Sales org, Sales office, Distribution channel) in equipment when issuing consignment delivery to a customer.
    Thanks in advance
    Guy

    Hi Yuri
    I am having the same reuirement as yours..
    Have you got any solution?? please share!
    Regards.

  • How can I get the class(ification)  for an equipment with  BAPI ?

    Hello Experts,
    I have created an Equipment with a BAPI. ("BAPI_EQUI_CREATE")
    and  i  create  the assignment   to a (equipment-)class with the BAPI BAPI_OBJCL_CREATE.
    When I use another BAPI  BAPI_EQUI_GETDETAIL I get all information to the equipment,
    but I don't get the information to wich class is it assigned.
    How can I get this ?
    Thanx in advance

    Hi,
    As Keshav mentioned you can get the classification data by using BAPI_OBJCL_GETDETAIL
    you have to pass the following parameters to it.
    CALL FUNCTION  'BAPI_OBJCL_GETDETAIL'
    EXPORTING
    objectkey =  equipment no in your case
    objecttable = 'EQUI''
    classnum =  Class Name
    classtype =  Class Type
    Thanks.

Maybe you are looking for