How to get Classes of Functional Location and Equipment

Dear Experts,
I would like to know how to get all the classes in Classificaition of Functional Location and Equipement, FM ITOB_GET_CLASS_STANDARD is only get 1 class, how do I get all declared classes inside classification?
Any table or FM?
Thank you.
Regards,
Weng

Weng,
   Table KLAH would give you all the available classes for every class type.
    FM CLAF_CLASSIFICATION_OF_OBJECT would get you all the assigned classes of a particular type for a object.
Regards
Narasimhan

Similar Messages

  • Cost Center Linkage between Functional Location and Equipment.

    Hi Gurus,
    We have found in our analysis that it is impossible to copy the cost center of a superior functonal location to a subordinate one when the cost center of subordinate functional location is changed manually.
    We intend to do a mass change for our cost centers of all our functional locations and equipments for all our plants. We need to know how do we achieve this change of cost centers.
    Thanks:
    Siddharth

    Thanks All for your information.
    Actually the Master data team has to do a mass update of cost centers for the Functional locations and Equipments.
    And what we have found is that when we change the cost center for an equipment individually it changes the cost center origin of the equipment to "D" which means independent of the changes in the cost center at FL level.
    Be it IBIP or any other way what we have found that the linkage(cost center origin) between the FL and the EQUIP changes to "D"  when ever we change the cost center for the equipment.
    We don't want to change this linkage as it may have other consequences that we can not foresee at this point.
    So, my question is :
    If the FL and EQUIP linkage (cost center origin field) is changed(from H to D or D to H), what could be the effect on the FL and EQUIP relation?
    Cost center origin :
    D       Independent of changes in cost center at FL level
    H       It is dependent on the FL cost center.
    Thanks:
    Siddharth

  • Replication of functional location and equipment from ECC to CRM.

    Hi Guys
    I have activated the required BADI's and adapter objects for func loc and equipment. but i am not able to replicate the funcloc and equipment from ecc to crm.

    As of SAP CRM 7.0 you can replicate functional locations from SAP ERP to SAP CRM. This function is supported as of SAP enhancement package 4 for SAP ERP 6.0.
    In SAP CRM, functional locations are represented as object components of an installed base. The structure of functional locations is also replicated, and reflected in the installed base structure. If you replicate functional locations and pieces of equipment, the assignment of equipment to functional locations is also reflected in the installed base structure. The following replication processes are available:
    -     Initial download of functional locations from SAP ERP to SAP CRM in R3AS tcode.
    Bye,
    sekhar.

  • Extension functional location and equipment master data

    Hi,
    We have around 200 functional location (having 3 structure indicators) and 10,000 equipments (Having external number range) on a controlling area and on different company codes.
    Several orders have been created by this data and now company wants to change controlling area, company codes, maintenance plants and planning plants with having old data in the same system server and client.
    I want to know is it possible to create same codes functional locations and equipments on new maintenance plants and planning plants having new company codes and controlling area? (It has observed that once we assign maintenance plant, the system automatically picks company code and controlling area and these fields become highlighted and can't be changed) OR
    Is there any possibility to use old data in orders with reference of new plants company codes and controlling area?
    What will be the end solution, should I create the new structure indicators for functional locations and new equipment names that must not be matched with the old equipments?
    Regards,

    Hi,
    Thanks for prompt reply,
    a) If we change permanently then you mean to say the old master data record will remain in the system with all old transaction data, please confirm?
    **b)Alternatively, can I create same (exactly like old codes) functional locations and equipments codes on new maintenance plants (having new company coded and controlling area)?**
    I will have same client and server for the whole scenario 
    Please reply soon
    Best Regards,
    Edited by: PROCESSES EXPERT on Jun 29, 2010 8:36 AM

  • Functional Locations and Equipment List?

    In structure list - is it possible to see (recognize by sight - without opening-checking each piece) which Functional Locations and/or Equipment units are active/inactive?
    Here is example of strctural list, opened via IW21 transaction.
    Any naswer/idea(suggestion is Welcome.

    Zeljko Vasilik,
    Add the System-Status field into the Structure List(s) via menu path: Settings->Field Selection
    PeteA

  • Table Link between Functional Location and Class

    Functional location has 'class' ( under section 'general data' in tab 'location'). Could anybody suggest the table name where I can get one to one mapping between the functional location and it's 'class'.
    I have put the functional location in KSSK-OBJEK   but when I am providing the functional location say 
    ?0100000000000838737 in this field of table KSSK, it is resulting no output. Could you please elaborate
    more or suggest something.
    Thanks,
    Hetal

    Hi Gurus
    I am also looking for same information.
    Would you please advise where to get this Internal Type?
    Also would you please advise what is the use of table KSSK in whole process?
    Thanks in advance
    Kris

  • How to get Date value from database and display them in a drop down list?

    Hello.
    In my Customers table, I have a column with Date data type. I want to create a form in JSP, where visitors can filter Customers list by year and month.
    All I know is this piece of SQL that is convert the date to the dd-mm-yyyy format:
    SELECT TO_CHAR(reg_date,'dd-mm-yyyy') from CustomersAny ideas of how this filtering possible? In my effort not to sound like a newbie wanting to be spoonfed, you can provide me link to external notes and resources, I'll really appreciate it.
    Thanks,
    Rightbrainer.

    Hi
    What part is your biggest problem?? I am not experienced in getting data out of a database, but the way to get a variable amount of data to show in a drop down menu, i have just messed around with for some time and heres how i solved it... In my app, what i needed was, a initial empty drop down list, and then using input from a text-field, users could add elements to a Vector that was passed to a JComboBox. Heres how.
    package jcombobox;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Vector;
    import javax.swing.*;
    public class Main extends JApplet implements ActionListener {
        private Vector<SomeClass> list = new Vector<SomeClass>();
        private JComboBox dropDownList = new JComboBox(list);
        private JButton addButton = new JButton("add");
        private JButton remove = new JButton("remove");
        private JTextField input = new JTextField(10);
        private JPanel buttons = new JPanel();
        public Main() {
            addButton.addActionListener(this);
            remove.addActionListener(this);
            input.addActionListener(this);
            buttons.setLayout(new FlowLayout());
            buttons.add(addButton);
            buttons.add(remove);
            add(dropDownList, "North");
            add(input, "Center");
            add(buttons, "South");
        public void actionPerformed(ActionEvent e) {
            if (e.getSource() == addButton) {
                list.addElement(new SomeClass(input.getText()));
                input.setText("");
            } else if (e.getSource() == remove) {
                int selected = dropDownList.getSelectedIndex();
                dropDownList.removeItemAt(selected);
        public void init(String[] args) {
            setSize(400,300);
            getContentPane().setLayout(new BorderLayout());
            getContentPane().add(new Main());
    }And that "SomeClass" is show here
    package jcombobox;
    public class SomeClass {
        private String text;
        public SomeClass(String input) {
            text = input;
        public String toString() {
            return text;
    }One of the things i struggled a lot with was to get the dropdown menu to show some usefull result. If the list just contains class references it will show the memory code that points to that class. Thats where the toString cones in handy. But it took me some time to figure that one out, a laugh here is welcome as it should have been obvious :-)
    When the app is as simple as this one, using a <String> vector would have been easier, but this is just to demonstrate how to place classes in a vector and get some usefull info out of it, hope this answered some of your question :-)
    The layout might have been easier to write, than using the toppanel created by the JApplet and then the two additional JPanels, but it was just a small app brewed together in 15 minutes. Please comments on my faults, so that i can learn of it.
    If you need any of the code specified more, please let me know. Ill be glad to,

  • How to get the current function name in java

    How to get the current function name in java.
    In c it is done as
    printf("%s",__func__);
    Thanx in advance.

    j0o wrote:
    System.out.println("Class Name: " + new Exception().getStackTrace()[0].getClassName() +
    "/n Method Name : " + new Exception().getStackTrace()[0].getMethodName() +
    "/n Line number : " + new Exception().getStackTrace()[0].getLineNumber());
    I pointed the OP at this approach yesterday in one of his multi-posts. I still have not been given my Dukes!

  • I just downloaded the new iOS 5.0 and did all of the backup prompted steps beforehand, but I can't figure out how to get all of my apps and music back on my iPhone. Where did they go and how can I put them back on my iPhone?

    I just downloaded the new iOS 5.0 and did all of the backup prompted steps beforehand, but I can't figure out how to get all of my apps and music back on my iPhone. Where did they go and how can I put them back on my iPhone?

    Hi, Abril_Perez17.
    This may be related to a new feature embedded in iOS7 that shows all purchased music by default.  Go to Settings > Music, then turn off Show All Music.  See if the issue ceases once the feature has been disabled.  This information is located on page 63 of the user guide below. 
    iPhone User Guide
    Regards,
    Jason H. 

  • How to get "Mapped Folder Web Location"

    Hi,
    How to get "Mapped Folder Web Location" for any assets (pdf,image) while passing content ID.
    Thanks in advance.
    Thanks,
    Anurag

    Hi Anurag ,
    The information is stored in the WebUrlMapRules resultset in the SecurityInfo.hda file and can also be viewed via IdcService=GET_WEBURLMAP_PAGE.
    Test it and see if that works .
    Thanks
    Srinath

  • How to get cloud services CPU Percentage and Network In

    Hi,
    I am using Service management API to collect the cloud services related metrics for example
    Cloud name, Status and location etc.
    How to get the CPU, memory, network and disk related metrics of cloud services using the same API.  I am using java code to collect all the details. Please verify the below source code..But i did not get the output. But there is no error message. Help
    me how to get those details..
    Configuration config = ManagementConfiguration.configure(
    new URI(uri),
    subscriptionId,
    keyStoreLocation, // path to the JKS file
    keyStorePassword, // password for the JKS file
    KeyStoreType.jks  // flag that you are using a JKS keystore
    CloudServiceManagementClient cldCli = CloudServiceManagementService.create(config);
    CloudServiceOperations cldOpe = cldCli.getCloudServicesOperations();
    CloudServiceListResponse cldListRes = cldOpe.list();
    ArrayList<CloudServiceListResponse.CloudService> cldServices = cldListRes.getCloudServices();
    if(cldServices != null)
    for(int cc=0; cc<cldServices.size();cc++)
    CloudServiceListResponse.CloudService yesCld = (CloudServiceListResponse.CloudService)cldServices.get(cc);
    if(yesCld == null)
    continue;
    ArrayList<CloudServiceListResponse.CloudService.AddOnResource> cldResRes = yesCld.getResources();
    if(cldResRes == null)
    continue;
    for(int r=0; r<cldResRes.size(); r++)
    CloudServiceListResponse.CloudService.AddOnResource addOnRes = cldResRes.get(r);
    if(addOnRes == null)
    continue;
    ArrayList<CloudServiceListResponse.CloudService.AddOnResource.UsageLimit> cldUse = addOnRes.getUsageLimits();
    if(cldUse == null )
    continue;
    for(int u=0;u<cldUse.size(); u++)
    CloudServiceListResponse.CloudService.AddOnResource.UsageLimit useLimit = cldUse.get(u);
    if(useLimit == null)
    continue;
    System.out.println("NAME:"+useLimit.getName()+"UNIT "+useLimit.getUnit()+" Amount used "+useLimit.getAmountUsed());
    Thanks & Regards,
    Rathidevi

    Hi,
    The Azure Diagnostics capability supports the configuration of diagnostics information than can be captured locally on a role instance and then persisted to Azure Storage on some timescale, this only support Azure Cloud service, I think it is useful for
    us to analyze the performance, if you don't want to use it, please try to use
    Azure Monitoring Service API, for more information, refer the below articles.
    #https://convective.wordpress.com/2014/06/22/using-azure-monitoring-service-with-azure-virtual-machines/
    #https://convective.wordpress.com/2014/06/27/using-azure-monitoring-services-api-with-azure-cloud-services/
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to get the NT user id and passwd

    Hi,
    How to get the NT user id and passwd using form 6i

    You cannot get the password. Password are stored in an encrypted format. Almost never decrypted (as a security meassure). Authentication is performed by encrypting the supplied password and matching that against the stored encrypted password.
    Think about it.. just how dangerous it will be to have a function that can dump NT users and their passwords for you. How can you ever expect to "simply decrypt a password"?
    As for getting the user name. See the Win32 kernel API call GetCurrentUser(). Also note that there is a big difference as to the owner/user of a server process/thread versus the end-user of client application (possibly running on another PC) that is making the call to the server.
    Of course, none of this is related to SQL or PL/SQL - which is what I believe the subject matter of this forum is... Kindly suggest that in future you pay attention to posting the correct subject material to the correct forum.

  • Missing Sparsity Advisor in AWM, how to get/activate this function?

    hi all,
    I use "Analytic Workspace Manager 10.2.0.3.0A" to create my cubes and dimensions.
    In the Demonstration of "Analytic Workspace Manager 10.2.0.3.0", I seen there is the function "Sparsity Advisor" in AWM. But I don't found this function in my "Analytic Workspace Manager 10.2.0.3.0A".
    Some one show me how to get/activate this function please!
    Thanks in advance!

    To Ragnar
    to obtain the lastest Schema, I downloaded and installed the "GLOBAL Schema 10.2.0.3.0" found here:
    http://www.oracle.com/technology/products/bi/olap/index.html
    To Watrost
    I did which you said:
    SQL> show parameter compatible;
    and I obtains this result:
    compatible string 10.2.0.1.0
    I think I don't have the good version. So I tried to update the lastest patch "10gR2 - 10.2.0.3" but I found another problem.
    I don't have acces to Metalink because I installed "Oracle Database 10g Release 2 (10.2.0.1.0) for Microsoft Windows (x64)"
    so I don't have the "Support Identifier (CSI, SAC, Access Code etc.)". Or maybe I don't know how to get this "Support Identifier".
    Can you tell me how to get this Identifier number?
    Is it possible to get the lastest patch 10gR2 - 10.2.0.3 without "Support Identifier" or Metalink?
    thanks in advance!

  • Functional Location and Task List FM

    Hi
    Can you please suggest me Function module for Functional Location(TPLNR) and Task List(PLNTY)
    Thank you in advance

    I need to creat a BOM and FL report, in which user gives input through selection screen and gets some out put in ALV.
    as there are many fields and tables therefore I would like to use FM instead of writing SELECT queries to fetch data to overcome performance issue.
    I have already found CS_BOM_EXPL_EQU_V2 using which I can fetch something around 14 fields out of total 45 field which I need to fetch.
    The rest fields are related to Functional Location and Task List , therefore I need to find out some relevant FM to fetch those fields.
    If you can even suggest me some useful Function Group also, I can search the FMs in it.
    Thanks in advance
    Saeid

  • Functional location and cost center link

    Hi All,
    I need to know the table that contains the details of functional location and the cost center mapped to that.
    I know a table IFLOT which gives details of the functional location, however i do not see field for cost center in that.
    Let me know if there is any other table which gives this data.
    Thanks,
    Regards
    Raghavendra

    Raghavendra,
    Pass the ILOAN of your Functional location to ILOA table and get 'KOSTL' - Cost center.
    Babu

Maybe you are looking for

  • ITune does not allow to change file names

    greetings bros' since a couple days ago I notice that my iT does not allow me to edit the files and sometimes neither recognize new files or folders. Any clue why this?? muchas gracias LAB

  • Customer ervice module

    hai gurus, can anyone help me in customer service module.please reply.

  • InDesign CS3 Crashes on Save (PC)

    The other day i tried to save a file in Photoshop CS3 and suddenly on clicking save the program froze. Thru the forums i learned i could resolve this issue by turning off CUE, this fixed the problem but the next day i experienced the same problem wit

  • XML on Older Browsers

    Hi, I have a client-side XSL component of my client's home page so had to convert the page to XSLT. The page contains a Spry Tabbed component with XSL-formatted XML data. So when a user enters the domain name, I want the XML page to display first so

  • Calling in to teleconferences with Conf ID and PIN

    Has anyone any advice or solutions on this one.  I often need  (or wopuld liker) to use the skype call out facility to dial into an AT&T or similar teleconference. The reason is that usually my PC speakers and microphone give a better result than a l