Set alerts for resource profiles

How can I set alert in 10g OEM grid alerts for resource limits set in for a particualar user profile.
Let's say we want to get an alert when sessions_per_user reaches a value of 90 if sessions_per_user has been set to 100.
Kindly guide and provide navigation if possible.
Regards

If the existing metrics don't cover what you need you'll have to create a user defined metric. read the documentation on metrics, and shout if you still need help

Similar Messages

  • Setting Alerts for emails

    I'm trying to set an alert for a SharePoint list. I can set the alert for myself and other users (which worked fine) but I cannot set an alert to a helpdesk email. I think it has something do to with licensing. Does the helpdesk need an exchange
    email to get alerts?  - we're in the process of migrating everybody to 365 as we speak.   
    Thanks!
       

    Hi,
    Thanks for posting this issue,
    Kindly find the below mentioned steps to solve this
    1. Go to Exchange Management Console -> Recipient Configuration -> Distribution group.
    2. Right-click on the problem group and choose properties.
    3. On the Mail Flow Settings tab, double click on Message Delivery Restrictions.
    4. Uncheck the check box “Require that all senders are authenticated”.
    Also, check out the additional details in below mentioned  URLs
    http://joyknows.wordpress.com/2011/01/12/sharepoint-alerts-not-working-for-group-recipients/
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Set alert for log file free space

    We need to set an alert in case the log file fills up to a certain level (ST04 - Space usage - Total log size / Free space)
    Which parameter should we set in solman for this?
    Thanks in advance

    setup your CCMS agents to monitor the log files
    http://help.sap.com/saphelp_nw04/helpdata/en/65/f3156d443e744abe15dbe14e4e32b5/content.htm

  • QM layout set QM_QCERT_01 for certificate profile

    Experts,
    I'm creating a certificate profile in QC01 and I want to assign form QM_QCERT_01 as a layout set. It's the standard SAP form for the quality certificate.
    But I get the error message: "Text QM_QCERT_OFF_SPEC_TEXT not available for layout set QM_QCERT_01" (Message no QC 094).
    Diagnosis: In the form QM_QCERT_01, a reference exists to text QM_QCERT_INSPECTION_METHOD (text ID ST, language EN). However, this text is not available in the current client. This may be due to one of the following reasons:
        o  The text is only available in the original client.
        o  The text is not available in either the original or the current client and should therefore be created.
    System Response: The text cannot be evaluated while the certificate is being created. Information and logical queries could be lost for this reason.
    Procedure: Check your entries in form QM_QCERT_01. If required, create the text QM_QCERT_INSPECTION_METHOD.
    If the text is only available in the original SAP client, copy it in all languages (if necessary) from the original client to the current client. To do this select Tools -> SAPscript -> Standard text -> Utilities -> Copy from client.
    How do I check if the text is available in the current client? How do I add or create the missing text?
    Thanks. Rgds

    If you are not sure then you can copy the std form and text in SPRO>QM->basic settings>
    Transfer QM Standard Texts  
    Transfer QM Forms.
    hence from 000 client this will be copied and then you can check it once again..if still problem persistis then it is sure that it is not available in std sytsme and you need to talk to ABAPer to cretae a text element  QM_QCERT_OFF_SPEC_TEXT .
    This may be created in your client and assigned to layout...just check

  • Set alert for tablespace in grid control when tablespace get 85% full.

    Hi,
    I want to set a tablespace alert in grid control when the tablespace in database get 85% full.
    We should get a alert through a grid control.
    Could you please let me know how to set a alert in grid control for tablsepace usage?
    Thanks,

    HI
    Thanks for the reply.
    I have set the alert the way you asked me do.
    However i am not getting an alert when the tablespace get full by 85%.
    I am not getting alert to our mail.
    Could you please let me know do we need to do anything else.
    I tried using through user defined sql metrics.
    The query which i am using is
    DECLARE
    Type v_filenames is table of dba_data_files.FILE_NAME%type
    index by pls_integer;
    filename v_filenames;
    type v_currsize is table of dba_data_files.BYTES%type
    index by pls_integer;
    currsize v_currsize;
    type v_maxsize is table of dba_data_files.MAXBYTES%type
    index by pls_integer;
    maxsize v_maxsize;
    mark75 number;
    mark500 number;
    n_maxsize number;
    i pls_integer default 1;
    total_files sys.dba_data_files.BYTES%type;
    SUM_BYTES sys.dba_data_files.BYTES%type;
    SUM_MAXBYTES sys.dba_data_files.MAXBYTES%type;
    BEGIN
    SELECT SUM(BYTES)/(1024*1024),SUM(MAXBYTES)/(1024*1024) INTO sum_bytes,SUM_MAXBYTES FROM DBA_DATA_FILES WHERE TABLESPACE_NAME='&&1';
    select SUM(bytes*4/3-maxbytes)/(1024*1024),500-SUM(MAXBYTES)/(1024*1024) into mark75,mark500 FROM DBA_DATA_FILES WHERE TABLESPACE_NAME='&&1';
    if mark75>=mark500 then
    n_maxsize:=mark75;
    else
    n_maxsize:=mark500;
    END IF;
    will the above query will work.
    I dont what condition to put in my case.
    I want to put this condition
    if mark75>=mark500 then
    n_maxsize:=mark75;
    however i am not using it in where clause.
    Thanks.

  • Setting Alert for Project Plan deviation and changes

    Hi
    I am trying to figure out if there is any alert function (automatic email sent) for project plan deviation
    For example:  original planned milestone date reached while the status has not yet marked complete
    Also, I would like to check if there is any notification to senior management can be set if somebody change the project plan.
    Many thanks,
    Norine

    You need to create a UDM based on a SQL Query.
    If you want an alert of elapsed_time of a sql query, you can to query the v$sql and if you want history results you can query the dba_sql_history.
    If you need help with the sql send me a mail to [email protected]

  • Setting locale for resource bundle

    hi,
    i have a problem setting the locale for my recource bundle.
    That's the piece of my source:
                   System.out.println("textLocale lang: " + textLocale.getLanguage());
                   System.out.println("textLocale: " + textLocale.toString());
                   ResourceBundle trb = ResourceBundle.getBundle ("resources/languages", textLocale);
                   System.out.println("trb locale: " + trb.getLocale().toString());
                   System.out.println("trb lang: " + trb.getLocale().getLanguage() + " trb country: " + trb.getLocale().getCountry());and the output is:
    textLocale lang: lt
    textLocale: lt_LT
    trb locale: lv
    trb lang: lv trb country:
    why it was changed from lt to lv if i set it to lt?

    Hi Steven,
    Seems i figured out what's going on.
    As far as I can understand, all characters in file GeneratorText_el.properties are ideally, uniformly coded with escape unicode sequences in the following pattern \u0xxx where xxx are the hex code numbers for each greek character.
    Now, there are entries in the above file, such as the CASE_SENSITIVE entry where some characters are missing the padding zero. As soon as I added these zeroes, the JAG ran normally and produced the expected ApplicationResources_el.properties file.
    Hope this helps
    Dimitris

  • How to set an alert for unauthorized ClearPass login

    Q: As a network administrator, how do i set alerts for a unauthorized access to ClearPass server (via SMS or Mail) ?
    A: A network admin would want to know, if someone unauthorized is trying to access the ClearPass server. The solution below explains, how a SMS/Mail alert can be set on ClearPass server for the same.
    Manual to way for a admin to check ClearPass login is via Event Viewer. Here the Alert level is WARN  for a invalid login.
    However for an automatic alert, we need to take following steps:
    In order to send alerts via Mail, we need to configure SMTP server on ClearPass
        2.  In order to send alerts via SMS we need to configure SMS gateway
      3.   Now once the Mail and SMS config is done, we need to set Alerts. For that we need to navigate to CPPM > Administration > Server Manager > Server Configuration > Cluster-Wide Parameters > Notifications
     4.   Here the system alert level is set to WARN (same for a Invalid login attempt) to capture unauthorized ClearPass login attempts.

    Thank you for the code.
    Is it correct to put that code under VALIDATE > run custome validate script, within the Properties box?
    Because I tried it, and it worked only AFTER I typed a number onto the field.
    Since my goal is to have the alert BEFORE, so if someone typed in a text, they should see the alert and correct themselves to type in a number instead.
    Please clarify.
    Thanks!

  • Can you set alerts specific for different calendars so when you create an event, the alert for the event is already set?

    On google calendar if you had a calendar for work and one for school, you can set alerts for earch so when you add a class or work related event, the event is set with alerts for that calendar. Can you do that with iCal?

    Hi Steven,
    This is one of the reasons why I wrote Dates to iCal.
    As well as automatically syncing birthday dates from Address Book, Dates to iCal can sync anniversary and custom dates. It can set up to five alarms for each date in iCal and can also set different alarms for birthdays and anniversaries.
    Best wishes
    John M
    <hr/>As I sell software on my site and ask for donations, the Apple Discussions Use Agreement requires that I state that I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Best Practice for Roaming Profiles over Branch Offices

    Hello Everybody,
    I was hoping I could gain advice from experienced engineers on an issue me and my team are currently experiencing.
    The issue:
    We have a client that has their main office in London and this company has other remote offices over the world, Paris, Milan, Luxembourg etc.. Each remote office has a local DC&file server installed as two separate servers or both roles on the same
    server. Everything is central to London, all the main file shares that the company uses is based in London and the terminal server's are based in London too.
    We have DFS-R & N set up on the London File servers to replicate the dfs shares over the remote offices which works fine and we don't generally ever have any issues with this and works well when user's in remote offices access file shares from
    London.
    However and I didn't set this up but this client also has DFS-R & N set up for roaming profiles!!! The issue we are having here is only with the terminal servers. For example I will log in as one of the users from London on the terminal server and will
    load the profile fine, I will log that user off and log in as the admin and remove the profile through advanced system settings. I will then log back on as that same user and will be given a temporary profile, I repeat the first step and the profile loads
    fine, so every other log on will load the user with a temporary profile. I know this is the case because for that user, if I change the profile path in AD from
    \\xxxx.com\public to
    \\lon-fs3v\profiles$\user it then loads every time with no issues. Before anyone asks I have rebuilt the terminal server(s) to rule out if they were misconfigured. You may ask why not do that for everyone? We can't do that for people based in Milan otherwise
    their profile will forever take time to load and that's where the dfs replication comes into play for the profiles.
    Unfortunately they are a very stubborn client so some users (important people) have very large profiles which sometimes takes a while to load up.
    I have done some reading already on the web and have seen the unsupported scenario from Microsoft regarding this (
    https://support.microsoft.com/en-gb/kb/2533009 )  so unsure the best way to do it. The link I've put in does say you can have issues with the profiles loading (which we do) if there are too many
    connections which we have 10 to replicate profiles around the remote offices.
    I have done some reading into the hostedbranch cache method but not sure if you can do this with roaming profiles or not?
    We generally want to eliminate the issue for users when logging on remotely with getting a temp profile every other log on attempt. I must add though this issue never occurs on the workstations just the terminal server, our client is in the private equity
    market so one user may just spend one day in a remote office and then come back to London to carry on as they normally would.
    So that's the background to the issue and I was generally trying to work out what methods or if this is possible with the branch cached method for roaming profiles ?
    Thank you to anyone who replies.
    Best,
    Liam

    Hi UC3ngineer,
    Agree with Luca.
    If the branch users need to do lot of conferencing, the best practice is to deploy an new Front End Pool and an Edge Server in Branch Office; Otherwise you must have a 100%
    reliable WAN connection to your central site.
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Alert for HR module

    Hi all,
    I want to set alert for following scenario.
    we have employees who are outsourced to third party on contract basis.
    Let say Emp A has contract from 1st Jan 2009 to 31 Oct 2009.
    Now the HR manager must alert message before the contract ends lets say before 10 days ie on 21st Oct that the contract for Emp A will be over.
    How to manage this in alert ....?
    Regards
    Harish

    Write a query based alert like this
    SELECT 1 from OHEM T0 where DATEDIFF(day,getDate(),T0.U_ConEnd)=10
    Here I assumed that there is an UDF created in  Employee Master called U_ConEnd which holds the End date of contract of the employee.
    Replace this with appropriate field in your context.

  • BBC email alert for folders

    Does anyone know if it's possible to set alerts for individual folders within the inbox? I sync'd my BB with the enterprise server, where I have several folders inside my inbox, I want to set alerts for one of these sub folders. I have filters set on the BB and my enterprise folder to sort emails into these folders.
    Any help is appreciated.

    no there is no options to set alerts for subfolders.
    Click on KUDOS to appreciate our efforts and mark the thread RESOLVED if your issue is resolved.

  • 206 unable to set alert only for certain group

    Hi,
    is it a symbian unwanted feature that user is unable to set Nokia 206
    profile to alert for certain group (even though this kind of functionality is
    available on this phone)?
    To be more precise user is able to set profile to alert only for certain
    group but this setting has no effect (phone rebooted, groups recreated, etc. no effect)
    This feature has been available and workin in previous Nokia phones
    since last decace - is it a software quality issue or what.
    Best regards,
    Hez

    It is the Application Pool account making the query to retrieve the groups, so you would need to establish a trust from Domain B -> A.
    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.

  • Have problem setting Email alerts for Calendar events. Warning message says I need to set up a card in Contacts with my email. I do but it doesn't recognize it. How do I indicate the email I want alerts sent to?

    The system of setting up email alerts for Calendar events worked fine in Snow Leopard but since I upgraded to Mt. Lion Calendar won't let me set email alerts. When I try, I get an error message saying I need to set up a card in Contacts for my email. I have a card set up in Contacts for both of my email addresses but it doesn't recognize them. Perhaps the name I have on the card doesn't match a name that Calendar is looking for. Calendar doesn't seem to have a way in Preferences or elsewhere to indicate the email I want alerts sent to. Any ideas how I can get this system working again? Thanks for your help.

    You might want to consider starting a new discussion. Since this one is marked solved, less people are likely to look at it. You can link to this one.
    See if another contact is marked as this is my card.

  • How do I set up multiple alerts for one event?

    So, I'm currently using MS Exchange to sync my google calendar with my iphone5, and almost everything's working pretty nicely, events would get pushed to my phone right away as I put it on my computer. But the thing is, my phone will only alert me for the earliest alert if I had multiple alerts set up for one event on google calendar. How can I fix it? Any advice would be appreciated!

    I have a similar issue with a slight twist.
    I have 'My Card' setup properly, however, I do have 5 email addresses that I use and these are listed on 'My Card'.  When I select the option to add an email alert on a calendar event, the app is picking up two addresses from the set of 5 and makes me pick one.
    I would like to select one of the other addresses to be the default for sending out the alerts.  Is there a way to do that.  If it is helpful, the app is picking up 2 of the 'Work' email addresses.  I don't know if the home vs work designation would make a difference.
    Note: I am looking for a solution to pick one a specific address from the contact card to send out the alert email.  I am NOT looking to have a discussion as to why I have 5 addresses.
    Thanks

Maybe you are looking for