Customization of the emailing of the alerts based on a specific group of servers?

Hello

I'm wondering how to set up electronic mail based on a specific service of Foglight? For example, I know that I can put "SYSADMIN" to an e-mail address and it becomes the email address golbal all alerts are sent to.

What I want to do, is keep global electronic mail as address, but take a few exclusions and have another set of servers to a diffferent e-mail address e-mail.

In this example I am using services that I created my groupings. For example, I have a FSM Service called "DHCP servers" I want alll alerts for servers in this group to go to another email address that defined globally in the sysadmin variable e-mail address.

Here's what I've tried, but alerts are not sent to "[email protected]".

How to achieve this?

Thank you

Tony

Hello Tony

This can be done with a service (as far as I know), but my requirements were much simpler.  I had three machines CRM and CRM team wanted to know when CRM Windows services had problems.

At the end of the day, I used two - general rule of 'The host Services' and a specific rule of 'Hosting CRM Services' rules.

My "Host Services CRM" rule has the following in the rule definition:

HostService where monitoredHost.name = "crm1.mycompany.com" or monitoredHost.name = "crmapp01.mycompany.com" or monitoredHost.name = "crmapp02.mycompany.com".

There is a variable in the Conditions tab, alarms & Actions for registry ("NewAddress").  In the registry, "NewAddress" is essentially "SYSADMIN" from the e-mail address for the CRM team.

To avoid duplicate emails, 'Host Services' rule has the following in the definition of the rule to exclude CRM systems:

HostService where monitoredHost.name! = "crm1.mycompany.com" and monitoredHost.name! = "crmapp01.mycompany.com" and monitoredHost.name! = "crmapp02.mycompany.com".

I'm sure (but does not ) that you can change monitoredHost.name to something like service. Name it extended to a service.  Obviously, it would be preferable to application domain service so that you don't have that one place to update unlike me, but my customizations refer only to three systems with two rules, so it's easy to keep up-to-date.

I hope this helps for you an overview on how to attempt it.

Brian

Tags: Dell Tech

Similar Questions

  • How to check the roles agreed on a specific group?

    Hello

    How to check the roles granted to a specific group?

    If a user belongs to this group in particular, will have the same roles granted so much that the Group?

    Thank you.

    SQL> select grantee
      2  from dba_role_privs
      3  where granted_role = 'DBA';
    
    GRANTEE
    ---------------------------------
    SYS
    SYSTEM
    
  • Refuse the AAA Clients to a specific group of users GBA v4.1

    With the help of 4.1 is there a method 'simple' simply deny a user group the ability to connect to specific clients of AAA? Customer has a group of phones they want to allow them to Telnet and check in all routers of the voice, but not other routers, they have sets of orders and that the installation but I wanted to see if a way to push this group simply to voice only routers?

    Thanks in advance,

    Dave

    You can configure using NAR GBA.

    http://www.Cisco.com/en/us/products/sw/secursw/ps2086/products_tech_note09186a0080858d3c.shtml

    Kind regards

    ~ JG

    Note the useful messages

  • The value of Hours in specific groups of aggregate

    First of all, I have some documents after you have used a SQL like this:
    YEARS MONTHS SUMMONTH SUMQUARTER SUMYEAR
    ----- ------ -------- ---------- -------
     2009 Jan      153904     459909 1692462 
     2009 Feb      144643     459909 1692462 
     2009 Mar      161362     459909 1692462 
     2009 Apr      133407     423148 1692462 
     2009 May      148397     423148 1692462 
     2009 Jun      141344     423148 1692462 
     2009 Jul      136838     428743 1692462 
     2009 Aug      139550     428743 1692462 
     2009 Sep      152355     428743 1692462 
     2009 Oct      122030     380662 1692462 
     2009 Nov      121963     380662 1692462 
     2009 Dec      136669     380662 1692462 
     2010 Jan      139709     430608 1747257 
     2010 Feb      143226     430608 1747257 
     2010 Mar      147673     430608 1747257 
     2010 Apr      155311     441330 1747257 
     2010 May      143274     441330 1747257 
     2010 Jun      142745     441330 1747257 
     2010 Jul      137887     422751 1747257 
     2010 Aug      130827     422751 1747257 
     2010 Sep      154037     422751 1747257 
     2010 Oct      138790     452568 1747257 
     2010 Nov      162764     452568 1747257 
     2010 Dec      151014     452568 1747257 
    Just explain briefly,
    The column SUMMONTH is a dynamic that is the total value of a month
    The column SUMQUARTER is a dynamic column means that the total value in a quarter of the year (January-March, April-June, July, sept, Oct - Dec)
    The column SUMYEAR is a dynamic that is the total value of the year

    In addition, the data (value) are calculated by each hour per day and combine them to a certain amount.
    You can assume that the structure of the table have a field call 'HOURS', which has preserved a number (for example 00,01,02, 03,..., 21, 22, 23) and a 'VALUE' field that stored the data respectively.

    This can be easy understand later with my SQL provided.


    Now, the essential problem is "HOW to calculate a specific group of hours"...?

    There are groups of serval of hours:

    Group1. 08-20 (08:00-20:00)
    Group2. 20 / 08 (20:00-08:00)
    Group 3. 20-24 (20:00 to 12: 00)
    Group 4. 24 / 08 (12:00 to 08:00)

    You can see a little duplicated (Group2 = Group 3 and group 4) but it's ok...

    Here's the SQL code that I use now:
    select years,
            months,   
             summonth,
             sum(summonth) over(partition by years || to_char(ym, 'Q') order by years || to_char(ym, 'Q')) sumquarter,
             sumyear       
    from(
    select years,months,summonth,sumyear,to_date(years || months, 'YYYYMon', 'NLS_DATE_LANGUAGE=American') ym
    from(
    select years, months, days, hours, mins, sumHour, SUM (sumHour) OVER (PARTITION BY years,months,days) sumDay, SUM (sumHour) OVER (PARTITION BY years,months) sumMonth, SUM (sumHour) OVER (PARTITION BY years) sumyear
    from (SELECT x.years, x.months, x.days, x.hours, x.mins, sum(x.value) as sumHour
    FROM xmltest, 
    XMLTABLE ('$d/cdata/name' passing xmldoc as "d" 
       COLUMNS 
      years integer path 'year',
      months varchar(3) path 'month',
      days varchar(2) path 'day',
      hours varchar(2) path 'hour',
      mins varchar(2) path 'minute',
      value float path 'value'
      ) as X 
      group by x.years, x.months, x.days, x.hours, x.mins
      order by x.years, x.months, x.days
      )
      )
      )
      group by years,months,summonth,sumyear
      order by ym
    Using a 'Q' parameter so I can force the month of a quarter...
    but I don't really know how about the value of a specific group of hours group...

    Output final format may be something like this:
    YEARS MONTHS SUMMONTH SUMQUARTER SUMYEAR   8AM_20PM  20PM_8AM  20PM_00AM  00AM_8AM
    ----- ------ -------- ---------- ------- ---------- ---------- ---------- ----------
     2009 Jan      153904     459909 1692462      15000       3904       3000        904
     2009 Feb      144643     459909 1692462 
     2009 Mar      161362     459909 1692462 
     2009 Apr      133407     423148 1692462 
     2009 May      148397     423148 1692462 
     2009 Jun      141344     423148 1692462 
     2009 Jul      136838     428743 1692462 
     2009 Aug      139550     428743 1692462 
     2009 Sep      152355     428743 1692462 
     2009 Oct      122030     380662 1692462 
     2009 Nov      121963     380662 1692462 
     2009 Dec      136669     380662 1692462 
     2010 Jan      139709     430608 1747257 
     2010 Feb      143226     430608 1747257 
     2010 Mar      147673     430608 1747257 
     2010 Apr      155311     441330 1747257 
     2010 May      143274     441330 1747257 
     2010 Jun      142745     441330 1747257 
     2010 Jul      137887     422751 1747257 
     2010 Aug      130827     422751 1747257 
     2010 Sep      154037     422751 1747257 
     2010 Oct      138790     452568 1747257 
     2010 Nov      162764     452568 1747257 
     2010 Dec      151014     452568 1747257 
    Thanks that helps everyone!

    Hello.

    Here is a way.

    WITH data AS
    (
         SELECT '01' hour, 10 val FROM DUAL UNION
         SELECT '18' hour, 12 val FROM DUAL UNION
         SELECT '01' hour, 14 val FROM DUAL UNION
         SELECT '17' hour, 15 val FROM DUAL UNION
         SELECT '03' hour, 17 val FROM DUAL UNION
         SELECT '20' hour, 16 val FROM DUAL UNION
         SELECT '03' hour, 14 val FROM DUAL UNION
         SELECT '21' hour, 15 val FROM DUAL UNION
         SELECT '04' hour, 13 val FROM DUAL UNION
         SELECT '23' hour, 12 val FROM DUAL UNION
         SELECT '20' hour, 13 val FROM DUAL UNION
         SELECT '06' hour, 16 val FROM DUAL UNION
         SELECT '24' hour, 17 val FROM DUAL UNION
         SELECT '07' hour, 18 val FROM DUAL UNION
         SELECT '08' hour, 14 val FROM DUAL UNION
         SELECT '09' hour, 15 val FROM DUAL UNION
         SELECT '21' hour, 16 val FROM DUAL UNION
         SELECT '10' hour, 16 val FROM DUAL UNION
         SELECT '21' hour, 17 val FROM DUAL
    ),
    data_2 AS
    (
         SELECT
              SUM(CASE WHEN TO_NUMBER(hour) BETWEEN 8 AND 20 THEN
                   val
              ELSE 0
              END) r8_20,
              SUM(CASE WHEN TO_NUMBER(hour) BETWEEN 20 AND 24 OR TO_NUMBER(hour) BETWEEN 0 AND 8 THEN
                   val
              ELSE 0
              END) r20_8,
              SUM(CASE WHEN TO_NUMBER(hour) BETWEEN 20 AND 24 THEN
                   val
              ELSE 0
              END) r20_24,
              SUM(CASE WHEN TO_NUMBER(hour) BETWEEN 0 AND 8 THEN
                   val
              ELSE 0
              END) r0_8
         FROM data
    )
    SELECT * FROM data_2;
    
         R8_20     R20_8       R20_24       R0_8
    ---------- ---------- ---------- ----------
           101       222          106     116
    

    I hope this helps.

    Kind regards.

  • Trigger the alert based on the data in the Table

    Hello

    Need your help on how to proceed on the scenario below.

    I have a table that stores some of the newspapers that has an attribute date, name, name of the table and the count attribute to load the batch for each race counts.

    I need to compare the counts of Eve with the current day counties and trigger an alert if there is a gap in the counties (as say if there is more than 30% of the deviation of County which we set up in the parameter value)

    How can I get above, that I must write a procedure, or sent using sql.

    Please suggest.

    Thank you and best regards,

    Jessica

    If compared with the previous run using only data from yesterday and today:

    with

    run_stats as

    (select 'CDR_SCAN' job_name, systimestamp - 1 last_update_dt, 'CDR_MASTER' table_name, 1000 row_count union double all the)

    Select 'CDR_SCAN', systimestamp, 'CDR_MASTER', 700 dual Union all

    Select 'CDR_DETAIL_JB', 1-systimestamp, 'CDR_DETAIL', 2000 of all the double union

    Select 'CDR_DETAIL_JB', systimestamp, 'CDR_DETAIL', double union all 0

    Select 'CDR_DETAIL1_JB', 1-systimestamp, 'CDR_DETAIL1', 1000 Union double all the

    Select 'CDR_DETAIL1_JB', systimestamp, 'CDR_DETAIL1', double union all 800

    Select 'BILLING_JB', systimestamp-1, "BILLING", 1000 dual Union all

    Select "BILLING_JB", systimestamp, "BILLING", 600 double Union all

    Select 'CDR_DETAIL_JB1', 1-systimestamp, 'CDR_DETAIL', 2000 of all the double union

    Select 'CDR_DETAIL_JB1', systimestamp - 2/24, "CDR_DETAIL", 5000 Union double all the

    Select 'CDR_DETAIL_JB1', systimestamp - 1/24, "CDR_DETAIL", 3000 Union double all the

    Select 'CDR_DETAIL_JB1', systimestamp, 'CDR_DETAIL', 2500 double

    )

    Select job_name, last_update_dt, table_name, row_count,

    -case when row_count / lag (row_count) over (partition of the table_name, job_name arrested by last_update_dt)<>

    then more "decrease of 30%.

    When row_count / lag (row_count) over (partition of the table_name, job_name order of last_update_dt) > 1.5

    then more "increase by 50%.

    end alert

    of run_stats

    where last_update_dt > = trunc (systimestamp) - 1

    JOB_NAME LAST_UPDATE_DT TABLE_NAME ROW_COUNT ALERT
    BILLING_JB 07.04.23.000000 2 DECEMBER 14: 00:00 BILLING 1000 -
    BILLING_JB 07.04.23.240081 3 DECEMBER 14: 00:00 BILLING 600 reduction of 30% more
    CDR_DETAIL_JB 07.04.23.000000 2 DECEMBER 14: 00:00 CDR_DETAIL 2000 -
    CDR_DETAIL_JB 07.04.23.240081 3 DECEMBER 14: 00:00 CDR_DETAIL 0 reduction of 30% more
    CDR_DETAIL_JB1 07.04.23.000000 2 DECEMBER 14: 00:00 CDR_DETAIL 2000 -
    CDR_DETAIL_JB1 05.04.23.000000 3 DECEMBER 14: 00:00 CDR_DETAIL 5000 more 50% increase
    CDR_DETAIL_JB1 06.04.23.000000 3 DECEMBER 14: 00:00 CDR_DETAIL 3000 reduction of 30% more
    CDR_DETAIL_JB1 07.04.23.240081 3 DECEMBER 14: 00:00 CDR_DETAIL 2500 -
    CDR_DETAIL1_JB 07.04.23.000000 2 DECEMBER 14: 00:00 CDR_DETAIL1 1000 -
    CDR_DETAIL1_JB 07.04.23.240081 3 DECEMBER 14: 00:00 CDR_DETAIL1 800 -
    CDR_SCAN 07.04.23.000000 2 DECEMBER 14: 00:00 CDR_MASTER 1000 -
    CDR_SCAN 07.04.23.240081 3 DECEMBER 14: 00:00 CDR_MASTER 700 -

    Concerning

    Etbin

  • How can I check if a user belongs to a certain group of field and see what are the permissions that the user has on a specific group "administrator, user and guest"?

    I can't check in a group of area if a user is "administrator, user and guest.

    I'm using labview 2012 in the windows domain.

    I think that there are tools. NET to resolve this, but could not yet.

    Attached a file that checks if a user belongs to a group in the area, but without the information of privileges.

    In the past, I used the command line.  Use ' Net User % username / Domain % domain % ' to get information about the user.  Actually, I don't have the right to see the other commands, so I don't know how it works now.  .NET looks more elegant, but I never used it for that.

  • Assign the radius server to specific groups of VPN 3000

    Last week, I assigned a test Cisco ACS server to be used for authentication and device of accounting for a specific group on a Cisco VPN concentrator 3060. When I looked at ACS, it appears that not only the Group was to go there but others through this way and using the default values on the Cisco Secure ACS. Is it possible that I can make sure only the traffic assigned to this specific group of VPN using the ACS server defined?

    Thank you

    Hello

    Not sure about your implementation. But you must configure the group for this specific ad group map can only authentication.

    In the external group map db, map

    Group ACS VPN---> with<---- ad="" vpn="">

    Any other combination should point to any access group.

    Kind regards

    ~ JG

    Note the useful messages

  • BlackBerry Smartphones turn off the alerts by email on phone

    Can someone tell me how I can disable the alerts by e-mail on my phone?

    Thank you.

    For the brightness of the screen, look at the options > screen/keyboard > backlight brightness

  • Customize the Alert popup

    Hello Flexers

    The following works by changing some of the properties of the alert

    < mx:Style >

    {Alert
    backgroundColor: yellow;
    color: Blue;
    cornerRadius: 10;
    headerHeight: 30;
    shadowDistance: 5;
    highlightAlphas: 0,0;
    headerColors: white, red.
    fontSize: 13;
    fontFamily: Georgia;
    }

    < / mx:Style >

    Please advise on the following:

    (1) fontFamily: Comic without MS. don't give me the police, than I expected. Flex does it take?
    (2) the yellow background color looks good, but I could not get rid of the default gray border. How can I activate the whole backgroud in the color I want?
    (3) can I increase the margin between the button and the border? The default margin was too narrow.

    Look forward to hearing of your part I have Fung

    Try this:

    {Alert
    backgroundColor: yellow;
    color: Blue;
    cornerRadius: 10;
    headerHeight: 30;
    shadowDistance: 5;
    highlightAlphas: 0,0;
    headerColors: white, red.
    fontSize: 13;
    fontFamily: Georgia;
    message-style-name: "messageStyle;
    border-thickness: 0.
    padding-bottom: 10;
    }

    {.messageStyle}
    fontFamily: "Comic Sans MS";
    }

    The message-style-name allows you to set properties of text for your alert message. You can set the fontFamily, fontSize, color etc.

    The border-thickness set to 0 will remove the grey border by default. Or you can set the border color, change the color to something that matches your yellow background.

    The padding-bottom property will increase the margin between the alert buttons and the bottom of the container. Similarly, padding-top will increase the margin above the alert text.

    I hope this helps.

    Vygo

  • iCal open the alert file does not

    I have installed 10.11.3. iCal Prefs are set correctly according to the suggestions of Apple.

    However, if I set an alert to open the file in the section 'Custiom', the alert does not open the file or reacts in any way in time. What's most frustrating is when I open the same file again to check if I did something wrong, the field 'alert' is 'None' showing!

    What I want to buy Fantastical2 app (tested, it turns very well), although iCal played perfectly for years on different platforms of OS X, I used?

    Hello there, Bob.

    It seems that you encounter no success with the calendar to inform you with alerts personalized on your MacBook Pro. One thing to try is to test the behavior in a new user. This testing process is described in the following Knowledge Base article:

    How to test a question in another account on your Mac.

    Before you try a different user account

    If you see unexpected behavior on your Mac to first try the following steps:

    Try to search the base knowledge of Apple for the specific symptom or an alert message you see. There could be more simple measures that you can take to solve the problem.

    Try to boot your Mac in Mode safe. Restart your computer. Hold the SHIFT key when you hear the startup sound. Release the SHIFT key when you see the Apple logo appears. Your Mac starts up in Safe Mode. Safe mode performs a check of your startup disk directory and removes data from the cache. Once your finished Mac commissioning, restart the Mac normally (without hold the SHIFT key) and see if the problem is resolved.

    Make sure your software is up-to-date. The question that you see can be addressed by installing the available updates.

    Check to see where the problem occurs. If a problem arises until you see your desktop, it is less likely that it is related to a setting or a user account. If a problem occurs with a Web site, see if the pages of other websites correctly first load. There could be a problem with the site and not your Mac.

    How to test with another user account

    You can find out if unexpected behavior is related to the user file or a parameter in trying to reproduce the problem to a different user account. This process includes creating a new user account, connect to it and test for the issue.

    Create a test user account

    1. In the Apple menu, choose System Preferences.
    2. Click the users and groups in the System Preferences window.
    3. Click the lock icon and enter an administrator name and password.
    4. Click on the button Add (+) below the list of users.
    5. Choose a type of user in the new pop-up menu.
    6. Give the user a name and first name, account name, and password.
    7. Click OK.
    8. Close the System Preferences window.

    If there are documents from your user account that you want to test with original, place a copy of these items in the shared folder in the users folder. Press the Option key while dragging a file in this folder to create a copy.

    Connect to the test user account

    Log out of your current user account by choosing logout in the Apple menu, and then open a session the new account that you created. If you are prompted to login with your iCloud or Apple ID account when you log in, skip this step.

    Try to reproduce the problem

    Try the same steps that caused the unexpected behavior to appear. For example, if you are unable to print, try printing from this user account. If you were unable to connect to the Internet, try to navigate on a website of this user account.

    If you use specific test settings depends on (for example using a specific e-mail account or an account iCloud) implemented the same test user account. For email and other parameters, you can use the Internet accounts pane in system preferences to set up these types of accounts. If your home folder files are necessary for tests, copy them into the shared folder in the users folder (/ Users/Shared). After you connect as a user test, copy these items to the same location in the test user home folder to test with.

    If a problem occurs in account only one user

    Is using the same steps in a user account test does not cause the same unexpected behavior, most likely you don't need to reinstall applications or OS X.

    • If a problem occurs only in a single application, check the documentation or Web site for instructions on troubleshooting specific preferences or the definition of the application files.
    • If you need help with a problem or a specific alert message, search the Apple support Web site for the text of the alert message you see.

    If a problem occurs in more than one user account

    If the same unexpected behavior occurs in more than one user account on your Mac, try checking for software or hardware problems.

    Thank you for reaching out to the communities of Apple Support.

    Kind regards.

  • How to send emails to the MS Exchange Server 2010 distribution group?

    Well, I'm not well versed in Exchange, (that I'm learning) so please forgive me for the lack of details correct / lingo.

    I try to create email for my church, distribution groups.
    We must be able to send a single email to a group and do it before out to all members of this group.
    For example: if I send an email to * address email is removed from the privacy * ", the email needs to go to each (even personal) email address that is in the distribution group"deacons".

    So far, I can do where ONLY the people on the network of the Church can send to distribution groups, and then ONLY the emails that are created from the Church network can receive them.

    Obviously, there is some progress, but I'm just at a loss on how to 'open' of this group until the 'general public'.

    I need to have server-based distribution groups and NOT people's individual e-mail / accounts Outlook, because the Congregation members need to be able to send messages to these emails as well. I can't create individual distribution to 1000 prospects people groups.

    Any help would be spectacular.

    Post in the Forums of Exchange Server:
    http://social.technet.Microsoft.com/forums/Exchange/en-us/home?category=exchangeserve

  • Customization of the insertion in a custom user interface palette

    Greetings,

    I am working on a custom for Teststand application user interface and I want to give the user the ability to edit files in sequence using a simplified subset of the predefined types step.  I based user interface custom off the Labview FullOI example in the teststand 4.2 folder.

    I found the context menu item 'Customize' out of the palette of insertion and who seems to get most of what I'm looking for (hiding like IVI and synchronization of files and the individual steps as the FTP files and call executable), but what I really want to know, is if I can remove it to the different symbols of 'top' that choose between adapters.  I wish that the customer must only see Labview and none and RID where hide the CVI, C/C++ DLL, .NET and ActiveX.

    Where, moreover, are the options that you set in the menu customize stored user interface custom compared to the sequence editor own right?  I want to make sure that I have a good list of all of my modified files I create a CD of deployment of work later on the road.  I'm assuming that to change the visible categories in the interface custom user won't change their visibility in the application of the sequence editor.

    Personalization step insert palette changes affect the sequence editor and the user interface. The settings are stored in testexec.ini in the cfg directory.

    You can hide the adapters using the card configuration window in the config menu

    You can simply keep separate versions of your testexec.ini, one for when you want the customizations and the other for when you don't have, assuming that you do not use the machine even for both. If you use the same machine for both you can implement some sort of automated way of switching on which version of the file that you are using.

    Hope this helps,

    -Doug

  • IOM 11gR2PS1 - customization of the catalogue-marking on the category of the Application

    Hi all

    I'm looking for a 'how to attribute of tag for catalog search. I came across a scenario where I have to search based on attributes other than 'Rôle', 'Instance of Application' and 'Right' are provided as OOTB by synchronization by default form Catalog task catalog.

    When I read through these docs:
    http://docs.Oracle.com/CD/E27559_01/admin.1112/e27149/reqcat.htm
    http://fusionsecurity.blogspot.in/2012/12/OIM-11g-R2-UI-customization-tips-and.html?GoBack=.gde_98999_member_200577979

    I discovered that marking capibility of OIM catalogue can be used for customization of the search without making no ADF in JDev or Sandbox UI customization.

    But I still haven't how to mark a particular attribute through role administratot catalog.

    Please provide any input which is useful for this scenario. Any doc or blog with good screenshot of the same will be very useful to understand.

    Thank you
    RADIATION PROTECTION BUREAU

    Published by: RPB25 on June 7, 2013 01:20

    If I understand your query, you can connect as administrator catalogue identity self-service. Then look for the name of the instance of app/role and click the desired instance role/app. After that, you can add your own label in the user defined Tags text box. Click on apply. You can search with the specific tag you added instead of the name of the app instance/role. It will work. In the API you can also pass this tag as search criteria to identify the specific entity. Hope this helps

  • Customization of the EO validation messages

    (11.1.1.6 JDeveloper) example use case:
    -J' have an EO that maps to a VO that is displayed in two tabs different jsff (tab1, tab2).
    -L'EO has an attribute (say Myint of type oracle.jbo.domain.Number which is a type of db NUMBER (10,0)).
    -Myint appears in two tabs, but in tab1 he is referred to as "int1" and tab2 as "int2".

    -L' attribute has a validation rule (at the level of the EO) based on the type of the corresponding db (essentially asking that it is an integer).


    I read / believe that validation, if possible has to be done at the level of the OS (and it is logical that you set once and reuse it in all screens).
    Here are my questions:

    (1) in the pop-up "Edit Validation rule" (EO), I can set an error message according to a key of rb.
    In my case, I have a generic message like "an integer value is required for the field 'Myint'."
    How do I customize the messages for specific jsff tabs, for example, receive messages such as:

    Integer value is necessary for the field 'int1'.'
    Integer value is necessary for the field "int2". "

    I want to avoid customer validation; but I would also be able to customize my error message. Is there a way to do this?
    I know that I can get an expression for the text of the message, but still it does not really help me.

    Now if I can't do that, not this limits the use of the validation of the EO?

    (2) is it possible to have the ADF to create the red box around the wrong field. In my view, it's nice to have because it directly identifies the question.

    Thank you

    Hello

    I use JDev 11 g R2 and it has a red box has highlighted for any failure of the validation of the attribute (your point No. 2) but don't know if that's where your jdev version :)

    Coming to your question,

    EO, it's always the same field is independent from vo1 or vo2 and you don't have control of the vow/vo2 directly on EO validation messages, but you can get your condition in two ways

    Option #1. You can have a custom entity-level validation (call your custom method with the message that you ever want to throw)
    Option no. 2: you can create a transient attribute in your EO chain type and update your VO1 and VO2 to add the new transitional attribute and always keep this transient int1 and int2 attribute (depending on your use of VO)
    and now, in your attribute validation error message, you can use placeholder to read the value of the transient attribute

    for example error message like you to "Please fill the value for the field {field}".
    and it will fill the field in the list of the tokens in the same window of the editor, he value of field give him like name of the attribute of the transitional attribute.

    Kind regards
    Delighted Nuka.

  • Error with IP customization using the CSV method

    This error is similar to the pulse of the OS error that has been well documented here, but I can't find something specific for the moment of customization of IP address which is my problem.

    I got this working yesterday, and then I applied the latest patches and my ESX servers today and now the recovery test always comes to about 50 or 60 percent of stage of change network and then expires. I extended the timeout to 1000 and it does not help. When the step times out trial and error. If I manually by removing the step of customization of the virtual machine complete the recovery without problem.

    Does anyone know what patch may be at fault or if there is another possible cause of this problem? I'm under VC 2.5 build 104215 and ESX 3.02 build 95415 with just about every available patch installed.

    What version of the OS are the virtual machine is your trying to recover?

    your customization comments journal suggests that the version of sysprep using is Windows 2000 Sysprep (Sysprep version 5.00.2195.2104).

    If Windows 2000 is NOT to your virtual machine under restoration in the stimulus plan, then comments customization will fail. If that's the case then looks that your VC server on the recovering site doesn't have access to the necessary sysprep files for all versions of Windows, you use.

    You get the sysprep from microsoft, for most builds of windows, you can extract them from the deploy.cab file located in the Tools folder of deployment of OS CD/DVD media. Once you have necessary deploy.cab to the version of windows that you want to customize in virtualcenter, you must extract the contents of the the.cab file to the correct location on your virtualcenter server.

    If you connect to the recovery site virtualcenter Server navigate to this folder: C:\Documents and Settings\All Users\Application Data\VMware\VMware VirtualCenter\sysprep under here you will see the subfolder "heels" for the different windows builds. Initially these subfolders will be empty until what download you / locate the deploy.cab files that correspond to the version of the OS for that void / folder and then extract the content in this folder.

    This Web page has some info and links to major releases:

    http://www.VM-help.com/ESX/other/sysprep_download_links.html

    I would say, based on the errors that you check first the version of windows, your recovery that hangs on "change network settings" and then make sure you have the necessary sysprep files in C:\Documents and Settings\All Users\Application Data\VMware\VMware VirtualCenter\sysprep\ < youOStype > on site VC recovery file server.

    hope this helps,

    Lee Dilworth

Maybe you are looking for