Connection between Equipment and Functional Location 2

Hi,
I would like do find out for a given Fuctional Location all Equipment. I know about tha Table EQUZ but it seems to be not enough... any ideas ? Thanks!

Hi David,
I would suggest you to go through the function module /ISDFPS/ME_PM_FLOC_GETDETAIL in debug mode to understand the various aspects of a Functional Location.
It lists the various child locations and the equipment assigned to it, and also, may be put a Break point on SELECT statement and check the various tables involved.
The only complication is determining the Superior functional location and the equipment assigned to it.
The following tables will help you.
AFIH,
ILOA,
IFLOT,
EQUZ.
Let me know if you want to know the logic involved in determining it.
Vijay

Similar Messages

  • BAPI to deactivate equipment and functional location

    HI all,
    Is there any FM/BAPI to deactivate EQUIPMENT and functional location ?

    Hi Eva,
    U can try out the following BADIS and User Exits
    ALM_ME_030_FUNCLOC
    ALM_ME_FUNCLOCATION
    User Exits
    IEQM0001 
    ILOM0001
    or refer to the link below
    [User Exit;
    Best of Luck !!
    Regards
    Ravi

  • List of changes in Equipment and Functional Location

    Dear Colleagues?
    Is there an easy way to get a list of all Functional Location and Equipments changed in the last week?
    Thanks and Regards

    Dear Davison,
    You can use transaction /N/ISDFPS/IL21 , it will give you detailed history of equipments and functional locations with usage change. It''s a DFPS transaction, hope its available in your system, or else you can goto Usage List in extras menu and customize the layout by adding the colums required to get the information you want in case of equipments or goto Usage Period in case of functional location in structure menu.
    Thanks & Regards
    Niraj Visnoi
    Edited by: Niraj Visnoi on Aug 30, 2010 9:14 PM

  • Genral question on equipment and functional location....

    hi,
    what I have to learn on functional location and equipment other than the below concepts
    creating euipment and installation,
    and customizing like screen sequences of Fun.  locations and equipment....
    and field selection for functional locations and equipment...
    stucture indicator for F locations...
    category of functional locations and equipment...
    becoz i am going to allot for a project more over this is my first proect.......
    Plz help me.........,
    thanks in before
    gunnu

    Hi,
    Under Equipments:
    1. Equipment Master Data
    2. Equipment BoM
    3. Measuring Point
    4. Serial Number Assignment
    5. Installation / Dismantling with Superior Equipment / Functional Location
    6. PRT as Equipment (Production Resource Tools)
    7. Fleet Equipments
    You can find all the helps in Help.sap.com under Plant Maintenance module. Just have a search in google.
    [Equipments & Technical Objects|http://help.sap.com/saphelp_erp60_sp/helpdata/en/b0/df293581dc1f79e10000009b38f889/frameset.htm]
    Regards,
    Maheswaran.
    Edited by: Maheswaran.K on Apr 28, 2011 1:10 PM

  • To identify a equipment based on material, plant and functional location

    HI Gurus,
    I wanted to identify whether there is any equipment is already created for a given material, plant and functional location. can you tell me how to findout?
    Thanks
    satya

    Hi
    Check with respect to material and serial no : TCODE : IQ08 or IQ09
    Try in IH08
    You can define material, plant and functional location
    - Pithan
    Edited by: Pithan Pithan on Mar 31, 2009 4:13 PM

  • Establish the link between equipment and its standby equipmnent

    Dear experts
    How to establish the link between equipment and its standby equipmnent in SAP?
    For example, I have one pump in a plant and also i have a standby pump installed next to it...now i would like to establish a relation between these two inorder to track them.
    I tried linking them as subequipments, but logically that is not sub equipment.
    what is the best way to do it?
    Regards

    Praveen,
    Equipment & Standby equipments are  installed on same Function location.
    There are below workarounds for solutions.
    1. Use Position Number
    2. Use A,B,C indicator with Running & Standby status
    2. Use link if it is applicable.
    3. Use classification system & provide characteristic as Running / Standby
    Further u can assign the System condom which is equivalent to equipment running  or stop condition during transactional data creation like order..
    If it is running it indicates it is working.
    If it is in stop condition then at that time it is in standby mode.
    Thanks,
    Ramesh

  • Build the connection between Arduino and Flex 4.0 via JSON

    Hi,
    I try to make a connection between arduino and Flex 4.0, I included the JSON lib and also as3corelib.swc to Flex. When I run the Flex file the connection between PC to arduino is working (I can see it in SERPROXY window) and also I don't have any problems in Flex window, I added the SWF file of Flex to the list at //http://www.macromedia.com/support/documentation/tr/flashplayer/help/settings_manager04.htm l, Bu the reading result is not shows in the SWF,    I couldn't understand why !, thanks for help
    here the code
    package
    import com.adobe.serialization.json.JSON;
    import flash.display.Sprite;
    import flash.errors.*;
    import flash.events.*;
    import flash.net.Socket;
    import flash.text.TextField;
    public class deneme extends Sprite
    {private var magnetic:Socket=new Socket("localhost",5331);
      private var magneticValue:Number=0;
      private var distance:Number;
      private var newText:TextField=new TextField();
      private var listText:TextField=new TextField();
      private var MNx:Number;
      private var MNy:Number;
      private var MNz:Number;
      private var d:Object={"x":null, "y":null, "z":null};
      public function deneme()
       socketDataHandler();
      private function socketDataHandler():void
       newText.text=magnetic.readUTFBytes(magnetic.bytesAvailable);
       d= JSON.decode(newText.text);
       MNx=d["x"];
       MNy=d["y"];
       MNz=d["z"];
       listText.x=10;
       listText.y=10;
       listText.width=600;
       listText.height=100;
       listText.text=newText.text;
       addChild(newText);

    package
    {    import com.adobe.serialization.json.JSON;
    import flash.display.Sprite;
    import flash.errors.*;
    import flash.events.*;
    import flash.net.Socket;
    import flash.text.TextField;
    import mx.rpc.events.ResultEvent;
        public class deneme2 extends Sprite
            private var newText:TextField=new TextField();
            private var listText:TextField=new TextField()
            private var magnetic:Socket=new Socket("localhost",5331);
            private var MNx:Number;
            private var MNy:Number;
            private var MNz:Number;
            private var d:Object={"x":null, "y":null, "z":null};
            public function deneme2()
                 magnetic.addEventListener(ProgressEvent.SOCKET_DATA,getDATA);
             private function getDATA(event:ProgressEvent):void
                newText.text=magnetic.readUTFBytes(magnetic.bytesAvailable);
                d= JSON.decode(newText.text);
                MNx=d["x"];
                MNy=d["y"];
                MNz=d["z"];
                listText.x=10;
                listText.y=10;
                listText.width=600;
                listText.height=100;
                listText.text="X="+String(MNx)+" Y="+String(MNy)+" Z="+String(MNz);
                addChild(listText);

  • Error"ia055" occured when installing an equipment on functional location

    Dear expert,
    Error"ia055" occured when installing an equipment on functional location via IE4N,
    why this error happened, and how to resolve it?
    Best regards

    Hello Stephen,
    Check the Valid on date of your function location on which you are trying to install and then check the date on which you are trying to install the equipment.
    Regards
    Naveen

  • Connection between Portal and MDM

    Hi all
    Can anybody help me on how to establish the connection between portal and MDM with step by step procedure.
    i am new to this combination .
    before i worked with portal but not worked with MDM .
    Regards
    Suresh babu

    Hello Suresh,
    As of my knowledge MDM IViews have the advantage to ful fil your neeed to provide connectivity moreover,that they are not complex in structure and are therefore not restricted by any underlying schema structure. As opposed to regular iViews in other systems which are embedded into the pages on which they appear, MDM iViews are more generic and granular in nature enabling their placement on a page to be more adaptable.
    The SAP Enterprise Portal (SAP EP) offers templates for creating the iViews. The following are some examples of these templates available at the link:
    [http://help.sap.com/saphelp_mdm550/helpdata/en/45/c9f8cac2124ebee10000000a11466f/content.htm]
    Procedure:
           1.      Create a new page using the page wizard.
           2.      To see the iViews you created on the new page, you need to link them to the page. Right-click each of the iViews that you created and from the context menu, select Add iView to Page → Delta Link
           3.      Double-click the new page you created and select:
    Page Content to view a list of the iViews that have been linked to this page
    Page Layout to view the layout currently assigned to this page. The iViews can be rearranged using the drag&drop function.
           4.      The visual structure of a page can be changed with the Page Layout function. Select Define Layout to reset the layout of the page.
           5.      Select Preview to view the page showing how the iViews have been arranged. The preview simulates what an end user sees at runtime.
    Detailed pictorial presentation available at:
    [http://help.sap.com/saphelp_mdm550/helpdata/en/45/c8e2fa5f0c2e97e10000000a155369/content.htm]
    Hope you will find it helpful.
    Regards,
    Krutarth

  • Connection between BI and XI

    Hi All,
    We are trying to establish a connection between BI and XI. This will be an inbound process from XI to BI ( A push to BI from XI). Can some body explain the technical steps we need to take to configure an XI source system in BI so that we can then create data source on that sources system.

    Hi All,
    Now I am writing the ABAP code for the method in Proxy class. I could not find a exception class that is needed to complete the abap code.
    Here is the code
    method ZII_DATA_TO_BW~EXECUTE_ASYNCHRONOUS.
    DATA: l_text TYPE string,
    l_s_data TYPE line of /BIC/WCQSENDXML00001000,
    l_t_data TYPE /BIC/WCQSENDXML00001000.
    FIELD-SYMBOLS <l_line> LIKE LINE OF input-data-item.
    LOOP AT input-data-item ASSIGNING <l_line>.
    MOVE-CORRESPONDING <l_line> TO l_s_data.
    APPEND l_s_data TO l_t_data.
    ENDLOOP.
    CALL FUNCTION '/BIC/CQSENDXML00001000'
    EXPORTING
    data = l_t_data
    EXCEPTIONS
    OTHERS = 1.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4 INTO l_text.
    RAISE EXCEPTION TYPE ZCX___BIC__CQSENDXML00001000_E
    EXPORTING text = l_text.
    ENDIF.
    endmethod.
    In this code the ZCX.... class is not found in my class implementation. What could be the possible cause of this issue? In the how to paper it asks to click on the signature to check for the Exception but switching the Exception on only shows the type attribute and no exception class is visible.
    Please help.

  • Connection between O and BP is missing

    Hi,
      When i check inconsistency for a user, i am getting " Connection between "O" and "BP" is missing. When i check the Org.unit in PPOSA_BBP, i could see no BP exists for that Org.unit where user is assigned. I have replicated the org.unit from HR system but yet the BP hasnt been generated. Can you please share your idea on this.
    Regards,
    Prasath J

    Hi Prasath,
    This might be because you need to assign the user to a Purchasing Organisation or a Purchasing Group. If the user do not have BP created then you can do this by using tcode USERS_GEN.
    Go to USERS_GEN and follow below steps :
    1. Select Create User From Existing SU01 user
    2. Enter the org id of the POrg or Pgroup under which you want to assign the user
    3. Select country and execute
    4. In next window one popup will occur, select Area Of User
    5. In next popup enter the user id
    6. Next select the user and click Ok.
    7. This will create a BP and CP for the user and assigns the BP to the Org id of the POrg or Pgroup.
    8. Now check the consistency of the user it will show all green.
    It might give you error like eMail id for BP XXXXX is missing if the SU01 profile of the user does not contain any user id but it is not critical.
    You can open the BP in BP tcode and enter the email id of the user.
    Let us know if it solves your issue.
    Regards,
    Mayur

  • Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  Select Size = Medium or Large.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailier like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago. 
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them. 
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    OT

  • Frustration! I have all igoods in order to use all, fully as should be. But looks like Softbank does no agree with any connection between iPhone and iMac... What in the world! How Apple let that happen???

    I live in Japan,
    I have all igoods in order to use all, fully as should be. But looks like Softbank does no agree with any connection between iPhone and iMac... What in the world! How Apple let that happen??

    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
    *Firefox > Preferences > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    See also:
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    *https://support.mozilla.org/kb/Images+or+animations+do+not+show

  • Handoff: No connection between iPad and iPhone

    Handoff: No connection between iPad and iPhone (IOS 8).

    Hi raydela,
    I understand your calls aren't being transferred between devices.
    Check out the troubleshooting in this article.
    Get help using Continuity with iOS 8
    If a call doesn't transfer to your other devices, or you don't see the Handoff icons
    Make sure that your devices are using iOS 8 or later by going to Settings > General > Software Update.
    Check your settings:
    Go to Settings > Wi-Fi and turn on Wi-Fi if necessary.
    Go to Settings > Bluetooth and turn on Bluetooth if necessary.
    Make sure your iOS devices are connected to the same Wi-Fi network by going to Settings > Wi-Fi and comparing the name of the network each is on.
    Go to Settings > General > Handoff & Suggested Apps and turn on Handoff.
    Go to Settings > Phone and turn off Wi-Fi Calling.
    Best Regards,
    Nubz

  • Bluetooth connection between iphone and ipad no longer workers after upgrade to ver 8 - any help?

    bluetooth connection between iphone and ipad no longer workers after upgrade to ver 8 - any help?
    I'm trying to use the iphone as a remote with keynote, which again worked before the upgrade

    Hi russellpaton,
    Thanks for visiting Apple Support Communities.
    If your iOS devices are not communicating with each other after updating to iOS 8, the troubleshooting steps in this article can help resolve this sitation as well:
    If you can’t use a Bluetooth accessory or car kit
    Cheers,
    Jeremy

Maybe you are looking for

  • How to Use the Same Library?

    I have two users on my Mac, myself and my girlfriend. I would like to just use one library iphoto instead of switching to her desktop and back to mine. How do i let my photo library accessable to both of us no matter what user name we are under.

  • IMac intel: 5 minutes of blue screen before startup! Help!

    Hi- I have a Core Duo 17" iMac. I've erased the hard drive and installed a clean, new copy of 10.5. It takes the computer 5 minutes of blue screen before starting. There are no peripherals attached, no other software than the Apple system software in

  • Calculating fields in Flash

    Hi. I need to add rows of data in flash and have them total up on the last row as the items are checked. Looking at the following example, if someone checks a tickbox next to items 01 and 02, the total sum would appear on the last row for each column

  • How to create a structure statically in webdynpros

    hi experts, after creating structure when we run the structure the contents of the structure will be diplayed for the first time if we run once again the contents won't be displayed . how to create structure so that elements should be as it is

  • Ummm... where are the apps I downloaded?

    I successfully upgraded to 2.0 and I see all the icons from the January upgrade (that I didn't have before) but I don't see any of the actual apps from the app store that I downloaded. Monkeyball, etc.... where do I go on my iPod to access these? Sor