Dynamic membership for the HUM Poller?

Looking for a way for the HUM pollers to automatically poll a newly added device rather than having to explictly go through and update everything every time new devices come in to the DCR.
If you point HUM at a dynamic group will that work?
Or is there another way?
(fingers crossed)

This is not yet doable.  The ability to do this to some degree is coming in LMS 4.0 due out this summer.

Similar Messages

  • Dynamic configuration for the application

    I'm a newbie and trying to evaluate JSF. I took part in a project with struts framework and i could say i don't like struts cause of some limitation and i suspect that JSF has the same limitation. First of all, there are JSP pages. I can't use JSP pages/templates stored somewhere else except web application. I'd like to store my templates in the database. This will give me ability to add/change/remove jsp page without redeploying war-archive. Yes, i can use exploded war-archive and add JSP pages straight into file system, but i don't like this way. Next problem is the configuration file like struts-config (faces-config, whatever). I have to write down all my navigation logic and beans mapping to this file and it's really annoying me. This kind of project requires dynamic configuration for the all web application and i'd like to add/change/remove pages, beans, actions without restarting/reconfiguring webapp. Today, I looked thru documentation and source code and found that FactoryFinder class could use my own classes but i'm not sure it will be enough for the dynamic configuration for the beans. In any case, it's a huge problem with the templates.
    Right now i'm thinking about 1(one) JSP with XML/XSLT rendered HTML content and JSF for event/action handling. I mean, i'll use XSLT to render dynamic content and JSF for dispatching events. In that case i have to render form tag names in the HTML as JSF engine (i'm not sure if it possible). If it will take a lot of time to do this i'll have to switch a home-grown framework.
    So, i really need advices how to implement this sort of dynamic behavior in the web application.
    regars,
    anton

    A lot of what you're seeing are genuine limitations, but happily, JSF is so pluggable that you can overcome them.
    JSPs are problematic in exactly the way you describe - unless your app server has support for pulling JSPs out of a database, etc., you're SOL. JSF, however, lets you use something other than JSPs by replacing the ViewHandler. That's a fair bit of work, but it is doable.
    For navigation logic, you'd replace the NavigationHandler. As long as you're willing to write the code that can pull navigation rules from an external source, life is good.
    For managed beans, all you need to replace is the VariableResolver - again, if you can pull the rules from an external source, you have full control.
    This is all far from easy - and it's a huge amount of work for one person - but I'd imagine these pieces will become available from various sources. A core goal of JSF 1.0 was making the framework as a whole pluggable so that others can innovate on top of the framework.
    -- Adam Winer (EG member)

  • Dynamic selections for the FBL5N report

    Hi Experts,
    Can any body help how to add the account assignment group field in dynamic selections for the FBL5N report.
    rgds / Srini

    Hi Alex,
    Thanks for your quick response, here for the report FBL5N the logical database is DDF and the field which should be add in dynamic selection is (KTGRD) account assignment group is available in KNVV table but this table is not available in DDF logival database.
    Please suggest us how we can pickup this field into the report FBL5N for dynamic selections.
    regards / Srini

  • Dynamic name for the physical table

    Hi Guys,
    How to setup dynamic names for the physical table? Where it is useful?*
    Pls help me out on this.
    thanks

    Check this similar post which might be of help dynamic physical table source schema
    Cheers,
    KK

  • Hello. I ve got a question. I accidentally bought membership but it doesnt have Adobe Muse that I need. What should I do? Can I extend my membership for the right one, or should I first get the money back. What kind of membership do I need to have Adobe M

    Hello. I ve got a question. I accidentally bought membership but it doesnt have Adobe Muse that I need. What should I do? Can I extend my membership for the right one, or should I first get the money back. What kind of membership do I need to have Adobe Muse software?

    Plans are listed at Creative Cloud pricing and membership plans | Adobe Creative Cloud
    The drop down at individual plans does show that you may subscribe to only Muse
    You probably need to cancel what you have... You need Adobe support to cancel a subscription
    -start here https://forums.adobe.com/thread/1703848
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    --and two links which may provide more details, if the above links don't help you
    -http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

  • Hi:) I want to cancel my "one year membership" for the education-programm without loosing to much money. Are there any good ideas?

    Hi:) I want to cancel my "one year membership" for the education-programm without loosing to much money. Are there any good ideas?

    You paid for one year and that's just it. If you don't use it then that's nothing anyone can change. feel free to contact sales support.
    Mylenium

  • Dynamic URLs for the mx:HTTPService component

    I am looking to make the url property of an mx:HTTPService
    component dynamic.
    <mx:HTTPService
    id="srvDivision"
    url="
    http://prodserver/prod/get_division.jsp"
    useProxy="false" method="POST">
    </mx:HTTPService>
    I would just like to have an environment property or some
    other way where the value is not compiled into the code but derived
    at runtime. I am sure this quesiton has been asked before but I
    couldn't find a direct answer. I currently use a ResourceBundle
    (and properties file) but this is done at compile time. I would
    like to change the value of the "
    http://prodserver/prod" on the
    fly, depending on what environment I am working in...dev or test or
    whatever. I am not necessarily looking for the fastest way to do
    this, but the right way to do this. Is Data Services the way to
    go?

    How about when i wanted my HTTPService url to become dynamic
    that it gets from an external text file or xml file. Here is an
    exampl...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns:remoting="com.oreilly.
    programmingflex.rpc.*" layout="absolute"
    initialize="initializeHandler(event)">
    <mx:Script>
    <![CDATA[
    private function initializeHandler(event:Event):void {
    textService.send( );
    private function resultHandler(event:Event):void {
    textArea.text = String(textService.lastResult);
    ]]>
    </mx:Script>
    <!--<mx:HTTPService id="feedRequest" url="ip.txt"
    result="resultHandler(event)" useProxy="false"/>-->
    <mx:HTTPService id="textService" url="
    http://123.136.72.41/mashupdemo/ip.xml"
    result="resultHandler(event)" />
    <mx:TextArea id="textArea" width="500"/>
    <mx:VideoDisplay id="vid"
    source="{textService.lastResult.subscribers.thevideo}" width="450"
    height="338" x="20" y="75" />
    </mx:Application>
    As you can see my HTTPService URL points to a file named
    ip.txt, the file includes my database URL where i will get my files
    to be played in my VideoDisplay. Is there anybody who can help me
    with this stuff. any reply would be very much appreciated.
    thanks!!!

  • Dynamic Selections for the F.42 report

    Hii Experts,
    I want to add a field called Business Place(BUPLA) in dynamic Selection in tcode F.42.
    So, in F.42 KDF Logical Database is used, so i make a Custom Selection view for KDF database.
    Business place is successfully added in Dynamic Selection, but it doesn`t reflect when i execute F.42.
    When i test from SE36, it reflects.
    Nitin Garg

    Note 50370 explains in full detail how the system works for selecting the documents with dynamic selection.
    Balance report reads the transaction figures which are stored with the help of several different fields, so the selection according to further fields cannot be proceed. This is standard design.
    The dynamic selection for Document Data does not work for reports which use customer / vendor transaction tables (KNC1 LFC1),i.e., document data like doc.number and Doc.date is not stored in transaction tables.
    Dynamic selections can only be used with customer / vendor, company code
    or fiscal year fields.  The following reports are affected by this
    program design.
    S_ALR_87012186 - Customer sales
    S_ALR_87012082 - Vendor Balances in Local Currency
    S_ALR_87012093 - Vendor Business
    S_ALR_87012079 - Transaction Figures: Account Balance
    S_ALR_87012080 - Transaction Figures: Special Sales
    S_ALR_87012081 - Transaction Figures: Sales
    S_ALR_87012105 - List of Down Payments open at Key Date - Vendors
    S_ALR_87012172 - Customer balances in local currency
    RFKSLD00       - F.42
    RFDSLD00       - F.23
    Hope this clarifies.
    Kind Regards
    Soumya

  • Dynamic tabs for the user who is logged in?

    Hi!
    Is it possible to create dynamically tabs for a TemplateTabContainer or JSPTabContainer during the time a user is logged in?
    I know that it is possible for example with the dpadmin command or with the DSAME console but is there another way (for example a programming way)? I don't want to wait for the deployment. Also, it needs to many resources.
    If yes do I have to extend this providers (TemplateTabContainerProvider) or is there a way to access on the right instance and can I use the methods? If yes , then which?
    Any help is very much appreciated!
    Andreas

    Hi,
    Have a look at the following threads.
    USERS CONNECTED
    Re: USERS CONNECTED
    Trace Users Currently Connected to Application
    Trace Users Currently Connected to Application
    Regards,
    Hussein

  • Dynamic Names for the Outputs

    Hi,
    I was wondering if it would be possible to name the PDF outputs dynamically?
    Say for example, I have a tag in the XML <TemplateName>ABC</TemplateName>. Can I have the output PDF with the name 'ABC'?
    And
    Is it possible to explicitly specifiy the name 'ABC' somewhere in the INI file so that the outputs generated will be multiple versions for 'ABC' (like ABC001, ABC002 etc)?
    Many Thanks,
    Phew

    Phew,
    As mentioned earlier, in order to rename the file you have two steps:
    1) Make the input data value available to genprint - this is normally done by creating a global variable.
    2) Configure the PDF print driver. Depending on the version of Documaker you are using you can refer to one of the following manuals:
    a) 11.5 - Using the PDF Print Driver - http://docs.oracle.com/cd/E16256_01/pdf_book.pdf (see section "Generating Separate Print Files")
    b) 12.x - Printers Reference - http://docs.oracle.com/cd/E22582_01/printers_rg.pdf (see section "Generating Separate Print Files")
    Essentially you will configure the INI like so:
    < BatchPrint >
    PDF = ~FUNCTION .PDF
    Where ~FUNCTION is an INI Built-in function like one of these:
    ~DALRUN {function name} - executes a DAL function to return a string which is used to name the file.
    ~DALVAR {variable name} - returns the value of a DAL variable which is used to name the file.
    Don't forget the space after the built-in function before the static bit of the filename...
    Best,
    Andy

  • Need to execute Dynamic query for the report

    I was wondering if we can have the option of choosing at runtime from the report builder parameter so that if the end-user selects 'Yes' then the report will run one specific query and if he chooses 'No' then another particular query is invoked. What I mean to say that by choosing between Yes and No at runtime one should have the option of returning query results based on the same table but having different columns selected via the SELECT statement
    means we have two querires on our report & upon the chosen parameter we should execute only one of them ... wht should i do to apply tht ???

    As the previous post noted lexicals are a terrific way to accomplish dynamic queries in Oracle reports.
    Another way you could accomplish this would be to use a UNION, whereas the first select in the UNION represents one user option, then second query represents the second option.
    For example:
    SELECT customer_name name, customer_address address
    FROM customer_table
    WHERE :p_choice = 'Customer Info'
    UNION
    SELECT employee_name name, employee_address address
    FROM employee_table
    WHERE :p_choice = 'Employee Info'If when running the report, the user chooses 'Customer Info' the first query would return results, if the user chose 'Employee Info' then just information from the second query would return information.
    So there are different ways to accomplish what you are looking for, you just need to find which is going to work best for you.
    Hope this helps!

  • How can I go about acquiring my second copy of my prepaid 12 month membership for the creative suite?

    My prepaid 12 month creative suite membership says it can be used on up to 2 computers, and I have installed one copy on my desktop computer. When I get on to my laptop, where I would like to install my second copy, it says that the serial number has already been used. How do I go about getting the software on my laptop as well?

    Browna72062221 if you are being prompted to enter a serial number it is due to the computer not being able to authenticate your membership.  Please see Sign in, activation, or connection errors | CC, CS6, CS5.5 - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html for information on how to resolve the connection error preventing authentication.

  • How could I downgrade my existing CC membership for the Light-room/Photoshop combo package?

    I was hoping to do this and not lose my student membership pricing

    Because it is already discounted, I do not think the special photography plan has an education discount
    Cloud Plans https://creative.adobe.com/plans

  • Dynamic configuration for the remoteworkflowclient not wf_client_Config.xml

    I need to connect to multiple servers(hosting the bpel workflow) based on input of the IP address of the server at runtime.
    I cannot modify the wf_client_config.xml at runtime as it will be within the client jar.
    Is there any other mechanism of connecting to mulltiple servers to get List of Tasks or any such functionality.
    Currently it seems that the IP and other configuration needs to be hard coded into the .xml file and i am unable to any mechanism where this information can be provided at runtime.
    Any help will be appreciated

    Hi,
    Did you ever find out a solution to this problem?
    If so, it would be much appreciated if you could post it.
    Thanks in advance,
    Aagaard

  • I would like to pay off the remaining membership fee for the rest of the year.

    I would like to pay off the remaining membership for the rest of the year.  I have some extra money right now and would like to pay the remaining amount of my account. So that I do not have to worry about it and I know it is paid for the year. Showing that I am committed for the year. You should also have it so I can pay in full more years to come. Adobe does have some crazy polices and needs to think more about how to help its members.

    I would like to do this also. The monthly transactions are inconvenient.
    Dennis

Maybe you are looking for

  • New iPad 3rd Generation display not coming on.

    I have had this issue twice now and can't find a solution.  The first time my display went out I couldn't get any response by holding down the power and home button so I restored it from itunes to factory settings.  That did nothing until miraculousl

  • Saving Jpeg crashes Finder in Thumbnail View Mode

    Hi all. Anyone have this happen to them? My finder crashes and relaunches itself when I do the following: Have a finder window open in thumbnail view mode, open a jpeg image in Photoshop, then resave it. It happens without fail EVERY time I do this.

  • I GOT my first mac

    Hey guys, I just got my macbook yesterday. Really excited and played around the cool features for hours, no problem at all. Although I notice the edge of the palm rest is not perfectly aligned, I can live with it happily. Nothing is perfect, right? G

  • IDSM-2 Inline mode operation - cat6000 Hybrid

    Hello, is the inline mode operation on the IDSM-2 IPS 5.1 only supported with catos 8.4(1)? Thanks!

  • Where are the profiles stored for Profile Manager.

    Where are the profiles stored for Profile Manager? I created a profile attached to a user group and then made the mistake of removing the group without first deleting the profile. Now the orphan profile can't be managed (it's no longer visible) and i