Question about Collection

Hello!!
My boundary is based on AD Sites and my System Discovery is configured to discovery All Forest.
When i try create a Collection based on IP Subnet 10.12.0.0, the collection retrieves only 2 computers but the subnet have more than 200 computers.
The IP Subnet 10.12.0.0 is NOT registered in AD Sites and Services... this is a problem? How to solve?
My query in Collection:
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.IPSubnets = "10.12.0.0"
Thanks!!
Atenciosamente Julio Araujo

If you've done your homework on your network, you should have a map of subnets to ranges so that you know what IPs are covered all around.
That being said, If you MUST use IPs, I'd use IP ranges instead.
If your environment is constructed simply, such as straight Class Bs or Cs, this is pretty easy with code such as this:
select
SMS_R_SYSTEM.ResourceID,
SMS_R_SYSTEM.ResourceType,
SMS_R_SYSTEM.Name,
SMS_R_SYSTEM.SMSUniqueIdentifier,
SMS_R_SYSTEM.ResourceDomainORWorkgroup,
SMS_R_SYSTEM.Client
from
SMS_R_System
WHERE
SMS_R_System.IPAddresses LIKE "10.100.25.%"
If your environment is supernetted, you may need to have a LIKE statement such as this:
WHERE
SMS_R_System.IPAddresses LIKE "10.100.7[2-9].%"
Lastly, if your environment is supernetted, AND runs across 10s ranges, such as 10.100.208.1 - 10.100.215.254, you'll need to adjust because of some SQL restrictions on these types of queries:
where
SMS_R_System.IPSubnets like '10.100.20[8-9].0'
or
SMS_R_System.IPSubnets like '10.100.21[0-5].0'
Hope this helps.

Similar Messages

  • Some questions about Collections

    getItem(index or name): when to throw an exception when to return null?
    getIndex(Item): when to return -1 when exception?
    Is it better to have two versions of a method?

    What if I pass in -1 as the index?
    What if there are 10 items and I pass in 100,000?jschell,
    The choice to throw an exception or to return null is
    dependent on the application. If the container so
    feels that -1 or 10,000 shall impair its functionality
    or has impaired its functionality and it cannot
    recover from it - by all means, go ahead and throw
    your exception.Certainly. But the question wasn't addressing a specific application but rather a single component.
    Given that my presumption would be to write the component based on the standpoint of a library and not an application.
    That means that the component must make a decision based on correctness for the component, which is obvious since it can't do it based on correctness of the application.
    This would suggest that if a index is passed in that exceeds the boundaries of the collection that throwing an exception is the correct decision. Because it exceeds the correctness of the average collection. Naturally that might not be true for a specific kind of collection, but the question wasn't addressing a specific kind of collection.
    >
    Vector is just an instance of a type of container - no
    body stops you from creating your own container and
    also in Vector - please notice that both are
    RuntimeException.
    Yes Vector uses a unchecked exception for boundary problems. Which one could take to suggest that in the general case that is a good idea.
    In the ultimate equation, it is the form that you
    chose that shall dictate wether you return null or
    throw an Exception. There is nothing absolute in this
    matter. My point was more subtle (to point to you, if
    you have failed to notice) - "Do not throw Excception,
    until you are sure that you cannot recover from the
    problem and proceed correctly".I agree there are no absolutes. But I also think that when boundary conditions are exceeded in libraries then exceptions should be used most of the time. I believe most third party libraries take this stance. As an alternative sometimes they also provide a checked and unchecked versions which allows the user to decide the best recourse.

  • [CS3 JS] Question about collecting overridden style settings

    Hi!
    I can use the styleOverridden to check every item in a textStyleRange for overrides. But is there a smart way to collect the attributes actually overridden? (The attributes showing up neatly in the tooltip when you hold the mouse cursor over an overridden style name.)
    My script needs to add a clean character style for every overridden style, recreating the behaviour of the add new character style dialogue, creating the new style based on the overrides.
    Kind regards,
    Andreas

    Ah, it looks like it's beginning to work now :-)
    I thought I had tried some of these things before, but obviously not. Thanks Peter, for your assistance. Now even assigning the whole properties collection of the TextStyleRange objects to the new character style object works! There's a lot of properties created, which I'd really would have preferred not to show up (in the summary of the character style dialogue box), since they are (as far as I can see) the default values, but I like the easy code this approach results in:
    var selText = app.selection;
    var srs = selText[0].textStyleRanges;
    for (var iTSR=srs.length-1; iTSR>=0; iTSR--){
    ]if (srs[iTSR].styleOverridden){
    ]]// This is an overridden style we need to create a style for
    ]]var ch = srs[iTSR];
    ]]newStyle = app.activeDocument.characterStyles.add(ch.properties);
    ]]if (app.activeDocument.characterStyles.item('newstyle'+iTSR.toString())!=null) app.activeDocument.characterStyles.item('newstyle'+iTSR.toString()).remove();
    ]]newStyle.name = 'newstyle'+iTSR.toString();
    I'm not yet quite clear on how to treat overridden paragraph styles. Perhaps I need to check whether the properties of the new character style are already the same as the ones of an possibly applied paragraph style, and if so, not assign (or remove) that property from the new character style.
    Also... possible need to name all uniquley auto-generated styles and find a way to apply the same style again (not to risk creating a large number of character styles just setting "bold").
    Andreas

  • Questions about Collections.shuffel and error message

    I am trying to get my poker game to work but it comes up with an error when it trys to score the hand
    *public class PokerTester{*
    Deck deck *=* new Deck*();*
    public PokerTester*()*
    playGame*();*
    public void playGame*()*
    *{*+//stacks hand+
    Hand hand *=* new Hand*();*
    for(int i*=* 0*;* i*<* 5*;* i*++)*
    hand*.*add*(*deck*.*getTopCard*());*
    System*.*out*.*println*(*"Player's Hand:"*);*
    hand*.*showHand*();*
    public static void main*(*String*[]* args*)*
    new PokerTester*();*
    public class Hand*{*
    ArrayList<Card> hand=new ArrayList<Card>();
    int[] values = new int[5];
    public void add(Card card)
    hand.add(card);
    +
    public String getHandValue()
    +
    String win= "";
    for(int i= 0; i<5; i++)
    *values=values[((Card)hand.get(i)).getValue()];*
    Arrays.sort(values);
    if(checkRoyalStraight()&&checkFlush()) win="Royal Flush";
    else if(checkFlush()&&checkStraight()) win="Straight Flush";
    else if(checkOfAKind(4)) win = "4 of a Kind";
    else if(checkFullHouse()) win = "Full House";
    else if(checkFlush()) win = "Flush";
    else if(checkStraight()) win = "Straight";
    else if(checkOfAKind(3)) win = "3 of a Kind";
    else if(checkOfAKind(2)) win = "Pair";
    else win = "High Card";
    return win;
    +
    public boolean checkOfAKind(int n)
    +
    boolean kind=false;
    if(n==4)
    if(values[0]==values[3]||values[1]==values[4])
    kind=true;
    if(n==3)
    if(values[0]==values[2]||values[1]==values[3]||values[2]==values[4])
    kind=true;
    if(n==2)
    for(int i=0; i<4; i++)
    *if(values[i]==values[i+1])*
    kind=true;
    return kind;
    public boolean checkFullHouse()
    boolean fullhouse=false;
    if(values[0]==values[2]&&values[3]==values[4])
    fullhouse=true;
    else
    if(values[2]==values[4]&&values[0]==values[1])
    fullhouse=true;
    return fullhouse;
    public boolean checkFlush()
    int suit = ((Card)hand.get(0)).getSuit();
    for(int i=1; i<5; i++)
    if(((Card)hand.get(i)).getSuit() != suit)
    return false;
    return true;
    public boolean checkStraight()
    int count=0;
    for(int i=0; i<4; i++)
    *if(values[i]+1==values[i+1])*
    count++;
    if(count==4)
    return true;
    else return false;
    public boolean checkRoyalStraight()
    int n=10;
    for(int i=0; i<5; i++)
    *if(values[i]==10)*
    n++;
    if(n==15)
    return true;
    else return false;
    +
    public void showHand() +
    +
    +
    for(int i= 0; i<5; i++)
    int suit=hand.get(i).getSuit();
    String s="";
    if(suit==0)
    s="Hearts";
    else if(suit==1)
    s="Spades";
    else if(suit==2)
    s="Clubs";
    else s="Diamonds";
    System.out.println(((Card)hand.get(i)).getValue()+" of "+s);
    System.out.println("Hand value: "+getHandValue());
    public class Deck
    Card*[]* cards *=* new Card*[*52*];*
    ArrayList*<*Card*>* deck *=* new ArrayList*<*Card*>();*
    public Deck*()*
    for(Integer i*=*0*;* i*<*4*;* i*++)*
    for(Integer n*=*1*;* n*<=*13*;* n*++)*
    deck*.*add*(new* Card*(*n*,* i*));*
    +
    Collection*.*shuffle*(*deck*);*
    +
    public Card getTopCard*()*
    Card topCard *=*deck*.*get*(*0*);*
    deck*.*remove*(*0*);*
    return topCard*;*
    public class Card*{*
    private int value;
    private int suit;
    public Card(int value,int suit)
    this.value=value;
    this.suit=suit;
    public int getValue()
    return value;
    public int getSuit()
    return suit;
    {color:#000000}
    This is what i get when I run the program{color}
    1 of Hearts
    2 of Hearts
    3 of Hearts
    4 of Hearts
    5 of Hearts
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 5
    at Hand.getHandValue(Hand.java:22)
    at Hand.showHand(Hand.java:145)
    at PokerTester.playGame(PokerTester.java:16)
    at PokerTester.<init>(PokerTester.java:6)
    at PokerTester.main(PokerTester.java:21)
    Also I cannot get the Collections.shuffle() to work correctly does anyone know how to use this properly, Thank you

    When you use the letter "i" for an array index without using the code tags, the forum interprets that to mean "start italic" and your code is mangled - converted to italic and changed.
    Repost using code tags:
    [code]
    Put your code here
    [/code]
    This error
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 5means that an array index value is greater than the max value allowed for the array.
    If you can't fix this, identify the line where the error is happening (it's line 5)

  • Question about personal hotspot. I know I can share GSM / 3G but I would like to know if my iPhone is connected to a wifi can I also share that wifi collection, through personal hotspot?

    Question about personal hotspot. I know I can share GSM / 3G but I would like to know if my iPhone is connected to a wifi can I also share that wifi collection, through personal hotspot? And if so can it be through wifi or does it have to be Bluetooth or USB?
    Sounds like an odd question but my phone will connect to BT Openzone so I want to share that with my iPad via personal hotspot. I could use 3G but then it comes off my data allowance and I don't want to have to buy a separate SIM for my iPad if I can avoid it. I can swap my sim from my phone, but that's a pain!
    Thanks
    Luke

    No, unfortunately Personal Hotspot will only use your 3G plan.

  • Question: about accessing Nik collection through Lightroom

    I have recently purchased and installed Nik collection. I have no problem reaching the plug-ins in Photoshopbut can't in Lightroom (except for HDR)

    Thanks!  Technology senses my fear and always makes it difficult for me! Ha! I can use the Nik programs so if I have to, I'll work on them there.
    Date: Sat, 13 Apr 2013 16:27:45 -0700
    From: [email protected]
    To: [email protected]
    Subject: question: about accessing Nik collection through Lightroom
        Re: question: about accessing Nik collection through Lightroom
        created by trihelm2 in Photoshop Lightroom - View the full discussion
    I suspect there are potential issues on some systems with the Google "combined" version, when I installed it I had recieved a copy of the Google complete version free because of my purchase history. I was advised that I could install over the Individual Plugins I had. I never got as far as trying it with Lightroom, only in Elements. The plugins appeared but the load times were abysmal and I mean realy bad , far longer than the Nik individual Installs, so I dumped it and reverted to the originals. Pity cos I wanted the Sharpen Plugin that I have'nt got. After reverting all was back to normal The Nik individual Plugins load very quickly. It was this that convinced me there is a difference in the Google setup.There are people on here with far more knowledge than me, hopefully one of them can help you, alternatively you might try asking Google for help with this.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5232723#5232723
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5232723#5232723
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5232723#5232723. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Lightroom by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Basic questions about permanent Collections

    I am just learning about Collections, discovering that a Collection preserves all of the work I done in the collection. I am assuming then, that the images in a collection are virtual copies that can be adjusted in the Develop Module to be different than they would be displayed in the general catalog under the original imported folders. I also assume that a modified image cannot be locked to prevent further changes, say if another virtual copy were to be made.
    I gather that Collections need to be protected somehow, for instance if I have one collection with images adjusted to look good on the web, and another collection of the same images adjusted to look good using a certain printer.
    Maybe I will never need to adjust images for different applications, except outside of Lightroom for CMYK applications in offset printing. Since various settings for Slide Show, Web and for Print can all be contained in one collection, it might probably be best to use the same images without changing the images for each output.
    Can some of you who are more experience add thoughts here to how best to use Collections. My goal is to keep things simple.
    TIA,
    Ken

    There are not enough gold stars to go around but you all deserve them for the helpful answers.
    I see on pg 175 of the Lightroom Classroom In A Book (in which there are also an unusual amount of typos) that "In the Quick Describe metadata set, the Metadata panel shows the Filename, Copy Name (if the image is a virtual copy..." This is more evidence that Lightroom and the system of Metadata is quite well developed itself, including the 'Copy Name' for a virtual copy. I have found already, in my short experience with Lightroom, that I want to work on a Virtual Copy when I'm not quite sure of the direction I want to take with a photo's adjustments. By retaining the Master 'as is' (with modest adjustments) I can always quickly go back to view the starting point (best image with modest adjustments) while I continue to work on a Virtual Copy for more experimental adjustments.
    On the one hand, my shooting is going on hold while I learn Lightroom, but I feel it is a worthwhile investment to become as familiar as possible with Lightroom's capabilities. It seems to add more to my desire to capture images more accurately, because I know I have so much to work with once I get the images back into the studio. Crisper images with optimal lighting will make me as happy as a pig in mud when I get them into Lightroom.

  • Question about Id3-tags and song managem

    Hello, I am getting ready to buy a Zen Touch 20GB in a couple of weeks and I have a few questions about the management software.
    (Correct me if I am wrong about something)
    ) Are songs organized into groups by Genre instead of just folders like on the Ipod?
    2) Are Id3-tags used instead of filename for identification?
    3) What parts of the tag are needed besides title and artist?
    4) Which version of tags does the Zen Touch recognize: Version or Version 2?
    5) If I edit my tags using an external program such as Id3-TagIT, will the tags carry over to the Creative software and to the player?
    Thanks a lot for your help. I want to make sure I have my music collection in order before I get my Zen Touch.

    euph_jay wrote:Ok, so lets say I have all my music in folders right now seperated into different categories on my hard dri've. Some folders denote the artist, some the album, and some a genre. Example: Folder: Chicago Contents: Chicago .mp3 files Folder: Techno Contents: various Techno artist's songs What is the best way of organizing my folder system, so that the transition will be easy to the player?
    Folders are pretty much irrelevant. What the software will do is look at the *tags* in the files and then use these to build the player's library.
    Will imbedded folders work on the player? (like Techno->Crystal Method->Cystal Method .mp3's)
    Again the player has no concept of folders, although if you set Techno as a Genre tag you will be able to view via this in the Music Library.
    Or, am I misunderstanding how music is stored into the mp3 player. Instead of storing music in a "folder like" system (like the Chicago folder or Techno folder), does it store all the songs individually on the device? Then you have to sort it by artist, album, or genre?
    Using your example, in the Music Library you have essentially three categories: Album, Artist, and Genre. So under Album you would see "Vegas" (the Crystal Method's album), under Artist you would see "The Crystal Method", and under Genre you would see "Techno" (and then either the album or artist under this... I forget which it is offhand).
    Make sense?

  • Question about using container class - Map

    hi all
    i have a question about the following :
    i have two sets of data, both use a common filed as key for the map:
    A = {a,b,d,f,g,h} and B = {a,d,e,g,i,k}, each key has a value associated with.
    i need to find out the commonality, and the difference - i.e fields are in map A but not in Map B, and some fields that are in B but not in A. is there any quick method that comes with the collection class that can calculate this? thanks

    yes, the keyset will be used to access values.
    so, SetA.retainAll(SetB) will modify the SetA so that it contains keys that are in both SetA and SetB - the intersection.
    and SetA.removeAll(SetB) will modify the SetA so that it only contains keys that are in SetA, but not in SetB?
    correct?

  • Question about sorting files in media library

    Hey,
    I'm Sam Hoste from Belgium and I have a question about sorting music files in my media library in iTunes.
    My music collection mainly exists of complete albums instead of individual songs. The problem is that I can not play the songs of an album in the same order as on the tracklist of the album in the media library of iTunes.
    I also take very good care of the ID3 tags from my mp3-files, but that doesn't help.
    For example, if I had an album with the following tracklist,
    01. Artist - Song 1
    02. Artist - Song 2
    03. Artist - Song 3
    04. Artist ft Otherartist - Song 4
    05. Artist ft Otherartist - Song 5
    06. Artist - Song 6
    07. Artist - Song 7,
    every music file would have an ID3 tag for tracknumber (1, 2, 3, ...), an ID3 tag for artist ("Artist" or "Artist ft Otherartist"), an ID3 tag for title (Song 1, ...) and an ID3 tag for album ("Albumname").
    When I load this album in my media library in iTunes, I cannot get them sorted by album and by tracknumber on that album. When I sort by artist I get this list:
    01. Artist - Song 1
    02. Artist - Song 2
    03. Artist - Song 3
    06. Artist - Song 6
    07. Artist - Song 7
    04. Artist ft Otherartist - Song 4
    05. Artist ft Otherartist - Song 5.
    But that's normal, but even if I sort by album I get the same list:
    01. Artist - Song 1
    02. Artist - Song 2
    03. Artist - Song 3
    06. Artist - Song 6
    07. Artist - Song 7
    04. Artist ft Otherartist - Song 4
    05. Artist ft Otherartist - Song 5.
    So the songs aren't in the same order as they are supposed to be on the CD. And I would really like my albums to play in the same order than on the tracklist on the CD.
    I think the problem is caused by the fact that when you sort by "album" in iTunes media library, iTunes first sorts by albumname, and second by artistname, and third by tracknumber. In stead of sorting first by albumname, and then second by tracknumber in stead of the artist.
    My question: Is there a way to make sure iTunes sorts by albumname, and then by tracknumber in stead of artist, so I can play my albums in the same order as on the CD? Or is there an other solution for this issue?
    Thanks and kind regards,
    Sam Hoste

    See my previous post on Grouping Tracks Into Albums, in particular the topics Use an album friendly view and
    Tracks out of sequence.
    tt2

  • About Collection and ForAll

    Dear Guru
    1) I have some documents about collection of 10g
    and example of Forall function.
    2) Question: I have procedure called Test_ps
    How to see the source code of the procedure
    A : User_source
    But i want to see how my parameter are there in procedure is there any option ?
    Advance Thanks..

    you can use DSEC <Procedure_Name> to see the list of arguments
    PRAZY@11gR1> create or replace procedure test_proc(a number,b number) is
      2  begin
      3  null;
      4  end;
      5  /
    Procedure created.
    Elapsed: 00:00:00.01
    PRAZY@11gR1> select text from user_source where name='TEST_PROC' order by line;
    TEXT
    procedure test_proc(a number,b number) is
    begin
    null;
    end;
    Elapsed: 00:00:00.01
    PRAZY@11gR1> desc test_proc;
    PROCEDURE test_proc
    Argument Name                  Type                    In/Out Default?
    A                              NUMBER                  IN
    B                              NUMBER                  INRegards,
    Prazy

  • Question about Everyone Group in SharePoint 2013

    Hi,
    I have couple of question about EVERYONE group below,
             - As per the best practice which Group we should use instead of EVERYONE group in Sharepoint ?
             - What is the difference between Everyone and All Authenticated Users Group
    We have added Everyone Group in different sites, now the question is if we hide this group showing up in sharepoint people picker, is there any impact interms of current site?
             - Is there any way we can hide Everyone group showing up in the people picker only for the site / Site Collection level.
    Please help.
    Thanks
    srabon

    There is no functional difference between the Everyone group and All Authenticated Users (after Active Directory has been upgraded to Server 2003 native schema).
    I'm not aware of any function to hide the group from the People Picker.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • A Question about LV Database Connectivi​ty Toolkit

    Hello everyone!
    I have a question about using LabVIEW DataBase Connectivity Toolkit 1.0.2 that eagerly needs your help. I don't know how to programmaticlly create a new Microsoft Access(.mdb)file (Not a new table in a existing Database)using LabVIEW Database Connectivity Toolkit1.0.2. As you know, usually we can set up the connection by creating a Universal Data Link (.udl) file and inputting the path to the DB Tools Open Connec VI in the LabVIEW DataBase Connectivity Toolkit. However, searching a table within an existing database containing a great many tables is a toilfulif job. If I want to use a new DataBase file with the date and time string as its name to log my acquisition data in each measurement process, how to do? I am sure someone of you must can resolve my question, and thanks very much for your help.

    I don't know what your real design considerations are here but, from I understand from your post, this is a really bad way to go about the process of logging data -- IF you want to be able to do significant ad hoc or stored procedures analyses after it has been collected.  Using separate MDB files for data that ONLY differs by one field (namely that date) is not the most efficient way to organize it.  What would be much more efficient would a joined table including the date and a reference ID of some sort for the various measurements that were done.  That way your stored procedures for looking at ALL measurements of type X would be very simple going across ALL dates.  Making such a comparison across multiple MDB files is a much more challenging process AND doing the original data collection in that way doesn't really gain you anything.
    Generally, if something is difficult to do in the DCT (Database Connectivity Toolkit) it's because it's a "not good thing" to do within MDBs.  I know that others probably disagree with that but I've worked with Access since it's initial release and other RDBMs prior to that both through compiled tools, Unix scripts, etc.  You may, of course, still choose to proceed in the way you've described and that may work excellently for you. 

  • Some questions about building  a plug in

    Hello,
    1.I'm trying to build a plug in ( for EM12c release 2 ) for my standalone java application - which exposes mbeans whom i want to collect some metrics with.
    It's been a while since i started to build it - and I asked quite a lot of quesions about it - because the documnets supplied with the EDK and
    the books ( ProgrammersGuide, ProgrammersReferece and the README file ) are not very clear to me ( I'm a newbie with EM in general .. )
    So far some of the questions got answered and were very halpfull with this long process. BUT, there are some questions that nobody answered yet.
    I'm quite "stuck" with it. I'm talking about the questions in : Re: A question about updating metadata files in plug in
    I have a deadline for this plug in ( which is very close ..) so this the reason I post this new message.
    I will appriciate any help about those questions .
    2. Regarding the above, ( hoping to have an answered soon ..) I'm trying another way to buils this plug in:
    In the README file there is this section( 3.6 : using MPCUI ) . I read the programmersReference ( chapter 8 ) and followed the instructions both in the README file and the ProgrammersReference .
    For a begining, I just wanted to modify a small thing in the example supplied ( Demo Host System ) just to get started with something .
    So i modify the file which contains the label ' Select member ... ' ( i don't remember the name of the file since the project is in my office , and I can't copy/paste ..- I think the the file icontians the name ' ConfirmationTarget .xml - it's one of the pages seen while adding a target ) .
    I i changed it , i build the project ( using FlexBuilder) but did not use ANT as it's says in the README - the eclipse IDE build this file automatically
    ( HostSystem.swf  in bin-debug dir as it says in the README ) . I copied this file to stage_dir/oms/metadata/mpcui .
    i build a new plug in ( i incremented the version of it ) - no errors, everty thing was fine .I also copied this file to the oms server ( it wasn't there before )
    and than run the commad ' emctl register oms ...' as it says in section 3.6 - and o got 'Success' eventually .
    Now, when i opened the EM console , hoping to see tge change i made ( again , it's just a change of the title of the step while adding the target , and adding another menuitem to the 3 item that were alreay there ( CPU, FS, etc ) .
    I believe wad i did is right- i mean changing in the right file and place ( there is no title like like this in any oter source file in the whole project )
    but still, I didn't see any change! it seems execatly as it was befoer the change ..
    Any idea?
    Thanks.

    Regarding your question #2. Please read my response here carefully as it covers a number of different issues.
    1. Ant is not required to build the SWF file in your plug-in. It is an OPTION. Section 8.27 describes the different development options using either Ant or FlexBuilder.
    2. You do NOT need to ever copy a SWF file to any location under the OMS runtime. You need to include it in the stage area and then either build an OPAR or use emctl to incrementally update the deployed plug-in. It has to either be deployed as part of the plug-in deployment or updated incrementally using emctl register oms metadata. Section 8.27.2.6 describes the specific steps to do this incremental update.
    Steps to update the SWF associated with demo_hostsample. These are covered in the README and in chapter 8.
    1. deploy the demo_hostsample plug-in as described in the README
    2. create an instance of the Host Sample target type through manually discovery (Add Targets->Add Non-Host Target Specifying Properties)
    3. using the demo_hostsample.zip project in Flex Builder, modify some part of the code, for example, modify the line containing label="Current Status" to label="My New Label"
    4. rebuild the SWF, to be sure you can to a Clean build of the demo_hostsample project
    5. ensure there is an updated copy of the HostSample.swf under demo_hostsample\mpcui\bin-debug (NOT bin-release, unless you Exported A Release Build)
    6. copy that updated HostSample.swf file to the location on the OMS machine where you unzipped and built the OPAR for the demo_hostsample plug-in
    7. cd to the stage/oms/metadata/mpcui directory and replace the current HostSample.swf with the one you just built (BE SURE ITS THE UPDATED FILE)
    8. execute the command "emctl register oms metadata -sysman_pwd sysman -pluginId oracle.sysman.ohs -service mpcui -file demo_hostsample_uimd_swf.xml (BE SURE TO USE THE CORRECT sysman_pwd)
    At this point you should be able to go to the homepage for the Host Sample target you created and see the changes.

  • Question about reports in sap fs-cd

    Dear all,
    I have got a question about SAP FS-CD (collection and disbursement)
    If I make changes to the master data (FPP2) is there a way to view the changes I have made in a report.
    It is possible to view the changes via tables but I was wondering if there is a standard transcation code in SAP-CD to view the changes
    Thanks

    You can find it in Information system from easy menu
    under this check for masters, you can find a report.
    Rgds
    Murali. N

Maybe you are looking for

  • ITunes and synching multiple iPods with same information

    Is there a way to synch multiple iPod touches, iphones etc. with exactly the same music, movies, apps?  The music can be done with a playlist but how do I set up my content once, save that setup and use it for multiple devices?  I am thinking some na

  • Photosmart C4780 on Mac OS X 10.5.8

    Hello, After replacing my black printer cartridge, all of a sudden my printer no longer works.  I tried turning it off and on, unplugging the computer, and rechecking the connection via USB to my desktop  computer.  I even re-loaded the cartridges in

  • Custom tag or help in reading an image file into the HTTP stream

    Since under WL we do not deploy our app physically there is no physical           directory to write our dynamic images to (via kavachart).           I can call their bean with:           response.setContentType("image/png");           ServletOutputS

  • Mac Pro Will only Load windows 7. Cannot get to Mac OS install boot

    Ok so I've had this problem going on for sometime now. My Mac Pro will not load Mac OS. When I try the computer shuts down and I have to remove the HD that mac os is installed on. Then the computer will automatically boot into windows and i can reset

  • Executing initjvm.sql

    Hi I execute the initjvm.sql file to install the jvm, but somewhere I got the following error. alter rollback segment monster offline Mon Sep 2 17:00:41 2002 ORA-1534 signalled during: alter rollback segment monster offline... Mon Sep 2 17:00:41 2002