Which own monitors can I add into DAs

Hi!
I want to clear out the question on which own created monitors can I add into Distributed Applications? For example:
I can find all monitors that I have created through Management Packs Template and add it into my DA if the monitor is from a sealed MP or in the same unsealed MP as my DA.
I cannot add any monitors that I have created through Management Pack Objects/Monitors/Unit Monitor into any DA. Why?
//Mats A

Yes I understand that but for example:
I creat one monitor Management Pack Objects/Monitors/Unit Monitor/Windows Event/Simple Event Detection/Manual Reset 
       - Name on the monitor is Approved_ID222_Event
       - Save this monitor in Approved_Monitoring
MP
Create one DA
       - Name on the DA is Approved
       - Save this DA in Approved_Monitoring
MP
       - Try to find my monitor Approved_ID222_Event
through Advanced Search. Cannot find my monitor
//Mats A

Similar Messages

  • How big an external monitor can i plug into the X60?

    I will be running Serato Scratch Live SL3 DJ software on my X60 and it would be nice to have a little extra sceen area for the display. How big of an external monitor can I plug into my X60? What can the built in graphics card handle?
    Thanks!
    (best notebook I have ever owned btw! light, strong, stable)

    i have tried 24 inch with WUXGA resolution.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • Parents need an ipad2/3 holder like otter box which any tripod can be screwed into in order to video childrens events. It must have gear type adjustments for verticle and horitontal ajustments due to weight of ipad

    Parents need an ipad2/3 holder like otter box which any tripod can be screwed into in order to video children's events. It must have gear type adjustments for vertical and horizontal adjustments due to weight of ipad

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • I've just changed from a PC to a mac and have a large number of downloaded WMA music files (not i-tunes purchases) which I just can't get into my i-tunes library. File converters don't seem to work either. Any ideas?

    I've just changed from a PC to a mac and have a large number of downloaded WMA music files which I can't get into i-tunes. When the library was in Windows, i-tunes would convert the files automatically, but this doesn't happen now. I've downloaded a couple of file converters, but these don't seem to work either. Any ideas?

    iTunes for Windows (but not iTunes for Mac) can import and convert unprotected WMA tracks. If the tracks are protected by DRM (Digital Rights Management) then it will not accept them.
    One option would be to install iTunes on your PC, do the conversion, and then transfer the converted tracks from iTunes on your PC to iTunes on your Mac.

  • I have a table which shuffles cells, can i add hyperlink to each cell?

    I have a table containing 8 different names. I have a shuffle code which randomly shuffles the cells around within the table. However i want to have a hyperlink to each name in each cell, is this possible?
    I am an amateur at dreamweaver! all help would be greatly appreciated.
    here is my code so far:
    <html>
    <head>
    <!--***************
    CSS section
    ****************-->
    <style type="text/css">
    body {
                 background:white; color:black;
                 font-family:Georgia, Times New Roman, Times, serif;
    .tableItem {
       position: relative;
       background: #ffffdd;
       color: rgb(255,0,0);
       border: 1px solid black;
       font-size : xx-large;
       text-indent: 1em;
       padding-right: 1em;
    </style>
    <!--***************
    Javascript section
    ****************-->
    <script language="javascript">
    var names = new Array();
    var offset = 0;
    var numPlayers = 8;
    var maxShuffle = numPlayers -1;
      names[0] = {id:'Monet', pic:'flower0.png'};
      names[1] = {id:'Renoir', pic:'flower1.png'};
      names[2] = {id:'Manet', pic:'flower1.png'};
      names[3] = {id:'Gaugin', pic:'flower1.png'};
      names[4] = {id:'Cezanne', pic:'flower1.png'};
      names[5] = {id:'Morisot', pic:'flower1.png'};
      names[6] = {id:'Picasso', pic:'flower1.png'};
      names[7] = {id:'Matisse', pic:'flower1.png'};
    function initialise(){
      for (i=0; i<numPlayers; i++) {
         document.getElementById('cell_'+i).innerHTML = "<div class = \"tableItem\">"+names[i].id;
    function changeText(){
      offset++;
      for (i=0; i<maxShuffle; i++) {
         document.getElementById('cell_'+i).innerHTML = "<div class = \"tableItem\">"+names[(offset+i)%maxShuffle].id;
    </script>
    </head>
    <body onLoad="initialise();">
    <p> </p>
    <table width="240" border="0" cellspacing="0" cellpadding="0" >
      <tr>
        <td id="cell_0"><div class = "tableItem">  </div></td>
        <td id="cell_6"><div class = "tableItem">  </div></td>  </tr>
       <tr>
        <td id="cell_1"><div class = "tableItem">  </div></td>
        <td id="cell_5"><div class = "tableItem">  </div></td>  </tr>
        <tr>
        <td id="cell_2"><div class = "tableItem"> </div></td>
        <td id="cell_4"><div class = "tableItem"> </div></td>  </tr>
       <tr>
        <td id="cell_3"><div class = "tableItem">  </div></td>
        <td id="cell_7"><div class = "tableItem"> </div></td>  </tr>
    </table>
    <p> </p>
    <a href="javascript:changeText()">Shuffle</a>
    </body></html>

    Maybe this will help.
    http://alt-web.com/DEMOS/CSS-Clickable-Table-Cells.shtml
    Nancy O.

  • Server Monitor can't see server

    Machine and OS specs:
    2 x 2GHz Dual Core Intel Xserve using 1 x ethernet port
    OS X 10.4.10
    I have just installed a new Xserve set up with mirrored RAID drives which is working perfecty apart from the Server Monitor will not connect just giving the message 'waiting for response'. I have tried all the various admin and root passwords and even tried to connect from my older G4 Xserve with the LOM password, but get the same result. All other administration software works fine.
    I have searched various forums and advice sites, but the suggestions I've found have not worked. I read that the com.apple.hwmond.plist can be edited to <false/> from <default/>, but when I open the file in a text editor I get this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Label</key>
    <string>com.apple.hwmond</string>
    <key>OnDemand</key>
    <false/>
    <key>Program</key>
    <string>/usr/sbin/hwmond</string>
    <key>ProgramArguments</key>
    <array>
    <string>hwmond</string>
    </array>
    <key>ServiceIPC</key>
    <false/>
    </dict>
    </plist>
    - already set to <false/>!
    When I try to connect to the server via it's Terminal by typing ssh -l adminuser (my IP address) I get the message: 'The authenticity of host '(my IP address) (my IP address) can't be established'. This leads me to think something else is up. I can ping it OK.
    I have tried pretty much everything I can think of including manually setting IP addresses etc, but I would really appreciate any help or advice with this one.
    Thanks.
    G3 • G4 • G5 • Intel - You name it!   Mac OS X (10.4.10)  
    G3 • G4 • G5 • Intel - You name it!   Mac OS X (10.4.10)  
    G3 • G4 • G5 • Intel - You name it!   Mac OS X (10.4.10)  

    Hi
    On the XServe launch Server Monitor, select Add Server and in the IP Address field key in 127.0.0.1 or localhost. In the Name and Password fields key in the default System Administrator account details. Click on Save password in keychain and select a suitable Update every settiing. If you launch WGM you will see the System Administrator account already listed in the local NetInfo node (UID 501). Use the short name as listed in WGM.
    Although I have not had the chance to do this yet, but enabling Lights Out Management (LOM) opens port 623 which Server Monitor can use. This may allow for remotely using Server Monitor to monitor the XServe.
    Hope this helps – Tony

  • How many internal HDs can I add to my G4 AGP tower?

    Hi all,
    How many internal HDs can I add into my G4 tower? I want to buy and use a SATA controller PCI card to break the 137 mb barrier and add 3 or more hds for my graphics art files, video and music files. Sort like a server right?
    Thanks
    web dude

    Hi, Web dude -
    What do you mean by this? They have power packs plugged to them and they're plugged in a strip?
    Yes.
    The firewire bus is designed to be able to provide power for use by an attached device, in addition to providing a data pathway. There is a limit as to how much power can be provided by that bus. Such power is used by the device to operate its mechanics - in the case of a firewire hard drive, to run the motor that spins the platter(s) in the drive.
    Many, if not most, firewire devices can also be powered by using a separate power supply, often an external transformer although some may have that transformer built in. This necessitates a separate connection to line power, typically to an outlet on a power strip or surge suppressor strip.
    When I ordered each of my firewire drives, I also ordered the optional power supply for it. This makes each drive non-dependent on the Mac for operating power.
    How should I prevent over heating my G4?
    As far as keeping a Mac from overheating, the primary defense is to keep it clean inside. Dust is both an insulator and a restrictor of airflow. Using canned air regularly to blow dust out of the inside of the Mac, and to clean its fans, goes a long way to keeping it from overheating. Using a vacuum cleaner is not recommended - it's too easy for the nozzle to bang into something, and the airflow going into a plastic nozzle can create static electricity, which you do not want around any printed circuit board.
    Keep the machine itself adequately ventilated - it needs a reasonably unrestricted supply of fresh air. If you place the tower on the floor or under a desk, make sure there are several inches of free space between the case and any obstructions. Usually, keeping it on a desktop reduces the amout of dust it will ingest.
    In addition, whenever possible use external power for a device - this applies to firewire and USB devices.
    Hard drives generate a fair amount of heat. G4 desktop models are designed to accommodate up to four internal hard drives, though it is possible to install more than that. If you go beyond four internal drives in a G4, consider replacing the fans with ones with a larger capacity to handle the increased heat load.
    If you replace the CPU, be sure you follow the instructions with the new one re making sure the heat sink on the new processor is installed correctly.

  • Can't add songs

    I just upgraded to I-Tunes 10 on my new PC running win 7. I can't drag and drop tracks into playlists. If I double click a song it will load and play in from my library, at which point I can move it into other playlists. Strange, stupid, and confusing as only Windows can be. I already right click my music folders to check permissions, dosen't help. Any suggestions? Thanks : )

    Oh what the **** - can't drag and drop onto my music folder on my iPOD - it has to be added to the iPOD folder on the left side menu - at least i figured out how to bypass it...
    now just to figure out how to get my artwork to show up...

  • Which Data-Types can be used as Widget Parameters?

    Hi,
    I have been playing about with widgets (specifically widget parameters) for a while now.
    I've got to wondering, exactly which data-types can Captivate turn into widget parameters?
    So far I know that you can use:
    Numbers,
    Strings,
    Arrays,
    Objects
    and Booleans,
    as parameters.
    Which ones am I missing?
    I know some don't work, because I tried storing a MovieClip as a parameter and that didn't work.

    Hi Eccles,
    You can set all basic data types supported in flash viz.,
    1)Numbers
    2)Strings
    3)Arrays
    4)Objects
    Since in Action script , an Object can be anything (array , array of objects , array of objects which by themselves are array of objects and so on ) , you can virtualy send anything as widget params
    But there are two caveats to this
    1)Object References
    -Object References do not have any meaning once the swf is closed.But the widget params have to be stored across sessions.So If you send a reference as part of widget params it is not going to work.
    This is why sending a Movie Clip (which is actually a reference to an Object ) does not work
    If you want to send such things you will have to 'serialize' the object.
    2)Size of the Object that you send
    The size of the object that you send can have an impact on performance.And since any object that you send has to be converted into XML , objects like bitmaps can turn out to be huge and difficult to handle.
    This brings us down to this - you can send any object across as widget param as long as it is small and serialized.

  • Itunes and all my movies have disappeared,i can no longer add to library from my external hdd which ive always used and can only add from the laptops own hard drive,any ideas what the issue could be?

    ive recently updated, itunes and all my movies have disappeared,i can no longer add to library from my external hdd which ive always used and can only add from the laptops own hard drive,any ideas what the issue could be?if i transfer the movies from the external to the laptop they will add to the library without any problem so theres no issue with the laptop but when i go to add file in itunes i can path to the external but as soon as i select the file nothing happens, just goes back to itunes

    This happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • HT204053 I changed my Apple ID (email address) to a new Apple ID (email address), but my iPhone is asking for my password on my old email address which has been discontinued, now I can not get into iCloud or add Apps because the old email and password do

    I recently changed my Apple ID (to my new email address), but my iPhones are still showing my old Apple ID and are asking for my old password.  It no longer exists and now I can not add any Apps or get into iCloud because they previous ID no longer exists but that is what is popping up in Apple ID box and I cannot change it on the phone.  How do I get my new Apple ID assigned to my phone(s)?

    Welcome to the Apple Community.
    If it's iCloud that is asking for these details:
    This feature has been introduced to make stolen phones useless to those that have stolen them.
    However it can also arise when the user has changed their Apple ID details with Apple and not made the same changes to their iCloud account/Find My Phone on their device before upgrading to iOS 7, or if you restore from a previous back up made before you changed your details.
    The only solution is to change your Apple ID back to its previous state with Apple at My Apple ID using your current password, you don’t need access to this address if it’s previously been used with your Apple ID, once you have saved these details enter the password as requested on your device and then turn off "find my phone" and delete the account from your device.
    You should then change your Apple ID back to its current state, save it once again and then log back in using your current Apple ID. Finally, turn "find my phone" back on once again.
    This article provides more information about Activation Lock.
    If it's iTunes asking for these details:
    In order to change your Apple ID or password for your iTunes account on your iOS device, you need to sign out from your iOS device first, then sign back in using your updated details. (Settings > iTunes & App store, scroll down and tap your ID)
    If you are using iMessages or FaceTime, you will also need to log out and into your ID there too.

  • How can I add my own files to the TV Shows Library instead of the Movie Library?

    I have my own TV Shows in m4v format.  I can drag and drop the TV Shows into the iTunes Movie Library.  How can I add my files to the TV Shows Library?  Can I group them by show in the TV Shows Library?

    Select the files in iTunes.
    Right click - get info.
    Select the Options tab and set Media kind to TV Show.
    Better yet, use something like MetaZ to tag the files before adding them to iTunes.
    -> http://www.macupdate.com/app/mac/36029/metaz

  • How can I add my own dynamic flash to Apex Applcation?

    Hi all,
    Can I add my own flash to Apex applcation and enable the flash to communicate with my applcation using XML?
    I want to customise the action of my flash. The flash will get a xml from a PL/SQL procedure just as flash charts get xml from apex_util_flash.
    Is it possible to call a PL/SQL procedure or an apex application process from a flash?
    Is there another way of doing this?
    thanks

    I haven't tried any coding experience in flash , so my answer would be a bit vague.
    But I am basing my logic on this thread Calling PHP function from Flash (it says PHP but the code example involves a server request from flash)
    Set up an Application process that returns your XML (as the server response using ht.p)
    // object which sends to php
    var send_lv:LoadVars = new LoadVars();
    // object that receives
    var load_lv:LoadVars = new LoadVars();
    // the load_lv accepting variables
    load_lv.onLoad = function(success:Boolean)
        if(success)
                 //Do your thing here
                 //Parse the XML in flash using this valiable as the source
            else
                trace("load error goes here")
      $.ajax({
      type: "POST",
      url: "wwv_flow.show",
      data: {
      p_flow_id : $v('pFlowId'),
      p_instance : $v('pInstance'),
      p_flow_step_id : 1,
      p_request : ""
    //This section is based on the documented server request format using jQuery (given in comments above)
    // send_lv sending out variables and instructing the returned variables to go to load_lv
    send_lv.p_flow_id = <fetch page element value of pFlowId>  //corresponding to $v('pFlowId')
    send_lv.p_instance = <fetch page element value of pInstance>  //corresponding to $v('pInstance')
    send_lv.p_flow_step_id = <page number>
    send_lv.p_request  = 'ON Demand Application Process Name'
    send_lv.sendAndLoad("wwv_flow.show",load_lv,"POST");-------------------------------------------
    You might also be interested in this flash library named SWFHttpRequest Flash/Ajax Utility
    Apparently, it adds a JavaScript object for performing XMLHttpRequest-like requests fro flash.
    Hence you should be able to use you standard javascript like Ajax request using that.
    Else check for similar libraries for flash/give the server request section of your flash documentation a good read.
    You might have to play around a bit with the code and your flash documentation to get it working , but I hope this would have given you some pointers.

  • Can we add our own menu in sap easy access screen

    can we add our own menu in sap easy access screen
    along with the existing menu items...
    ex : can i add the new menu item as help1 on that screen
    regards
       raghu

    go  to transection se43 ...ther e  u can create   ur  own menu list.. and  ur  cusomize transection to that perticular menu list.....
    You can enter the area menu in the command field like any other transaction code, also in menu exits can be filled with a area menu.
    You might play a little with S000 and S001 - when you enter them, the menu tree of easy access changes.
    Do you search for the menu exits to append your area menu into the standard menu tree?
    Message was edited by: kishan negi

  • I am considering a Apple iMac but would be interested in adding a second monitor. Does it have to be an Apple monitor or can i add any monitor with a thunderbolt cable and DVI or vGA adapter?

    I am considering a Apple iMac but would be interested in adding a second monitor. Does it have to be an Apple monitor or can i add any monitor with a thunderbolt cable and DVI or vGA adapter?

    I found that the Thunderbolt input accepts the mini-DVI (in my case converter to VGA for a tutorial use monitor)
    BUT, you have to really oush it in 'til it clicks.  I thought it too loose until I tried it.  works just fine!!
    i get a solved for my own  LOL
    Ed

Maybe you are looking for

  • Moving photos from i photo 6

    Hi, A former Windows user here trying to master the Mac. I know this should be easy and I am probably trying to make it difficult because I am a former windows user. Could someone please tell me step by step how to copy my photos on to an external ha

  • Third party application notifies me of Adobe product updates 2 days before CC updater, Why?

    I would like to know why a third party vendor's program is notifying me of critical Adobe updates before you're own Creative Cloud Desktop?  I have been getting notified at least two days earlier, and sometimes sooner, then the CC Desktop program sho

  • Spry Accordion Widget Init Closed, Without Snap?

    (This is a topic discussed in another thread, but I didn't want to hijack the thread with my own question, so I started a new one...) I want to start my Accordion widget in a closed state. I figured out the trick of setting the default panel to '-1'

  • Saving HTML as PDF

    I have Adobe Professional. In IE 7, I used to be able to save items as pdf. I have a grayed out pdf icon and the pdf box is checked in toolbar. How do I get it back to operable.

  • How can I add an edit button to my tray?

    My iphoto menu does not include and editing button. Can someone help me find/install it? TKU