Alert advanced condition

Hi,
when I want to raise alert when logon user with specific ip address, I write:
#SOURCE_EVENTID# ='100' and #HOST_IP# like '147.228.%'
but this condition is not accepted (OAV-46562: error in Alert condition), what is wrong on this condition?
When I write
#SOURCE_EVENTID# ='100' and #HOST_IP# = '147.228.%'
it is accepted but doesn't work...

Will note# 876546 help you?
- Kannan

Similar Messages

  • ATG Promotion  item discount  (Advance condition and Offer template)

    Hi Team ,
    We are using ATG Item Discount (Advance condition and Offer template ) .  Under this template we have Condition and Offer  .
    In condition we have specified ,   Apply Offer when  Order Quantity   =  3   and Order contains say SKU1 , SKU2,SKU3
    In Offer we have specified ,  Item to discount up to  = 9   and item to discount are  SKU1 , SKU2,SKU3
    We have a tricky requirement here  where customer wants Number of Items to discount should always  be multiple of  quantity that we specified in  Apply Offer when  Order Quantity field   based on how many quantities customer have added in the cart .
    Minimum quantity to qualify the offer would always be 3  and maximum item to discount would always remains 9 .
    If user add  quantity in the cart as 3   , then it should discount  3 Only .
    If user add  quantity in the cart between 3(exclude ) and 6(exclude) , then it should discount  3 quantities .
      If user add  quantity in the cart as 6  , then it should discount  6 quantities .
    If user add  quantity in the cart between 6(exclude ) and 9(exclude) , then it should discount maximum of 6 quantities .
    If user add  quantity in the cart as 9  , then it should discount maximum of 9 quantities
    > 9 items in the cart  , then it should discount only 9  .
    I am not able to map condition like this in this template  . Can you please guide me how we can achieve requirement like this in ATG  OOTB or by doing some sort of customization ?

    Hi ClareR
    Yes, I did. Here is the PMD rule
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE pricing-model SYSTEM "dynamosystemresource:/atg/dtds/pmdl/pmdl_1.0.dtd">
      <pricing-model>
        <qualifier>
          <iterator name="next" number="2" sort-by="priceInfo.listPrice" sort-order="descending">
            <collection-name>items</collection-name>
            <element-name>item</element-name>
            <element-quantity-property>quantity</element-quantity-property>
          </iterator>
        </qualifier>
        <offer>
          <discount-structure calculator-type="standard" discount-type="fixedPrice" adjuster="0">
            <target>
              <iterator name="up-to-and-including" number="1" sort-by="priceInfo.listPrice" sort-order="descending">
                <collection-name>items</collection-name>
                <element-name>item</element-name>
                <element-quantity-property>quantity</element-quantity-property>
              </iterator>
            </target>
          </discount-structure>
        </offer>
      </pricing-model>
    And in my cart I have 4 items
    Item 1 $22
    Item 2 $46
    Item 3 $24
    Item 4 $22
    The items that got the discount were Item 2 and Item 3, but we want to give as free item 3 and item 4 or 1 (because they have the same price). As you may see the BOGO is set up buy 2 and get one free. Someone told me in the version 10.1.2 you can set up Buy 1 and get one free, I am not sure if it is an issue on ATG 10.0.2 and if it is, do they have a path?
    Thanks,

  • Advanced conditional action issue

    I am using Captivate 7. I am experimenting with Advanced conditional actions.
    I am simulating a numerical keypad (0-9) with each number assigned to a click box.
    working with 4 digits.
    I need to impose limits for each of the 4 digits.
    Example:
    Digit 1 can only be a 0 or a 1
    Digit 2 can only be 0-5
    etc.
    I trying to prevent going to the next action when a wrong number is clicked.
    Looking for examples on how to properly implement this.

    Hello and welcome to the forum,
    Some years ago I created such a use case, would certainly change several things now with Captivate 7. I would recommend to make ieach key a shape button, so that it looks like a pressed key if the user clicks it. And I would also use shared actions without any doubt. But no time to work this out, sorry.
    Certainly not totally your use case, but perhaps have a look:
    http://blog.lilybiri.com/create-a-keypad-simulation-using-advanced-act
    Lilybiri

  • Advanced Conditions causing ORA-00904 invalid identifier

    I have another weird thing going on...
    It may be the complexity of the data I'm pulling, but I'm going to simplify the problem first...
    I have several conditions in my workbook that I need to be true regardless then I need the following (this is a payroll thing):
    ((Total Regular Hours > 40 AND Total Overtime = 0) OR (Total Overtime > 0 AND (Total Regular Hours - Total Overtime Hours) <> 40))
    So, I'm using Discoverer Plus 10g and if I create separate conditions for Total Overtime > 0 and (Total Regular Hours - Total Overtime Hours) <> 40) it will work, but if I try to combine them into one condition (so I can then add my OR and the other 2 conditions) it gives me the "ORA-00904 invalid identifier" error and will not run.
    The only way I've been able to do it is to create 3 conditions and 2 worksheets. That way, I can add (Total Regular Hours > 40 AND Total Overtime = 0) in one condition and apply it to one sheet; then I the other 2 separate conditions can be applied to the other worksheet.
    I hate having to have 2 worksheets when I should be able to create an advanced condition... anyone have any ideas?
    Regards,
    Emily

    It is actually a typo in the message because I have a calculated column that calculates the difference... sorry.
    I did try the idea of running the SQL that was generated in SQL Developer and it doesn't look right.
    It did all my other conditions under the where, but then where I would have thought it should do another and it did a WHERE.... see below. (I only pasted from the from statement on to save room)
    FROM HRBG_PEOPLE_ASSIGNMENT o393615, APPS.PTEN_PAY_BEE_V o393616
    WHERE ( (o393616.ASSIGNMENT_ID = o393615.ASSIGNMENT_ID))
    AND (o393615.BG_SECURITY_FLAG_CODE = 'Y')
    AND (o393616.DATE_EARNED BETWEEN o393615.ASSIGNMENT_START_DATE AND o393615.ASSIGNMENT_END_DATE AND o393616.DATE_EARNED BETWEEN o393615.RECORD_START_DATE AND o393615.RECORD_END_DATE)
    AND (o393616.DATE_EARNED IN (:"Date Earned Dates"))
    AND (o393616.EFFECTIVE_DATE = :"Period End Date")))))
    WHERE ( ( NP100 ) > 40 AND ( NP101 ) = 0)
    AND ( ( NP104 ) <> 40 AND ( NP105 ) > 0)
    ORDER BY E393849 ASC ;
    Do you see the WHERE that I marked in BOLD? That should be an AND...
    I even tried creating one crazy long condition to include everything in one and still got the same error and it produced the same SQL. I am thinking it has to do with the fact that I'm actually showing group totals for Regular Hours and Overtime and then subtracting them to get the difference. It all breaks when I add that difference in with the others. If I keep it separate, it does fine.
    By the way, the error I get when running just the SQL is "not all variables bound"
    Thanks,
    Emily

  • Advanced Conditional Action does work when I add second condition

    I am using CP 8. I can't figure out why I'm running into this problem. I have a series of If-Then conditional actions, but I'm running into problems. I've narrowed it down to this one problem.
    This is a simple check mark box that should either show the check mark or not.
    As long as I only have one condition, it works fine. As soon as I add the second condition, it stops working.
    Any suggestions? I appreciate the help!

    I have 6 statements. Some are true and some are false. I'm trying to communicate that the more false statements they assume, the bigger their problem. The size of the problem is represented by my "Hope" variable. This is used to show / hide a meter with 6 levels.
    Checkbox - 1. False Statement - Decrement Hope if they check
    Checkbox - 2. False Statement - Decrement Hope if they check
    Checkbox - 3. True Statement - Increment Hope if they check
    Checkbox - 4. False Statement - Decrement Hope if they check
    Checkbox - 5. True Statement - Increment Hope if they check
    Checkbox - 6. False Statement - Decrement Hope if they check
    My head started to spin when I thought about all the possibilities, so I was going to write an advanced action for each statement.
    Since my meter has 6 levels, I numbered them 5-10. Above, I show the one that is they are 10 or higher, then show all the meter levels. I thought I could add the additional condition that if the checkbox is 0 or 1, then, I'd either do the opposite of the score: decrement or increment. So, each checkbox would have 12 conditional statements:
    Statement One (False Statement) would be:
    Check Box, Hope = 10. Decrement. Show 4 Meters.
    Check Box, Hope = 9. Decrement. Show 3 Meters.
    etc.
    Uncheck Box, Hope = 10. Increment. Show 5 Meters.
    Uncheck Box, Hope = 9. Increment. Show 4 Meters.
    etc.
    It seems like that is causing problems in my sequencing for me. Which ever one I put first, it's going to go to the next one.
    Is this clear? I'm happy to send you the file if that helps.
    Thanks for the help!

  • Advanced Conditional biuld expression

    I realise this should be in a "new request" section of the
    forum but did not seem to find it.
    I extensively use conditional tags to not only differnatiate
    between content but also to biuld pages in order to include or
    exclude scripts and hyperlinks.
    The simple "exclude from output" is therefore not sufficient
    for me and need to use the advanced feature.
    Only problem is that it does not support parenthesis which
    makes conditions super long and only suport the operators AND, OR,
    AND NOT, OR NOT.
    Would be really nice if future updates would support more
    advanced boolean operators such as NOR, XOR, IN etc and more
    cruicially support the use of parenthesises.
    It does seem to respect the priority of an AND over an OR
    which is "nice"...

    This is the link you want.
    Rather than try to remember it, if you type "feature request"
    or "bug report" into the search field top right, you will be
    presented with a link to this page.
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Advanced Conditions

    I have a web form that sends an email to a user after successfully registering. Since this particular form allows empty email accounts, I have a condition that send them an email ONLY IF the email is not empty.
    Email Condition = {email}!= ""
    This works perfectly fine, but I now need another condition added. I do not want the auto email to send to anyone with an AOL address.
    I have tried: {email}!="" && {email} NOT LIKE "%@aol.com"
    (this is similar to what I would use in a standard SQL statement) but it does not work at all. It doesn't seem to accept the "NOT LIKE" statement. Obviously the "!=" will not work in the latter since it then looks for the wildcard symbol in the email :)
    Does anyone have any suggestions?

    Hi Sean,
    SQL like comparison parameters don´t work when PHP is supposed to examine a text string ({email}) for a given substring (aol), so you´ll need to help yourself with PHP´s stristr() - function: http://de.php.net/manual/en/function.stristr.php
    On that page you´ll find an "Example #2 Testing if a string is found or not", and I´d use this example in a modified form
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Newbie alert spry conditions question

    I am trying to use an XML dataset to draw data for my
    application pages. I have some XML fields, (in this case {helpurl}
    and {moreinfo} ) which may or may not have a value assigned to them
    in each record.
    My question is simple, but I can't find the answer... where I
    originally would write it this way in CF, what is the equivalent in
    CS3/Spry?
    <cfif (#helpurl# is not "")>
    <a href="#helpurl#">HELP</a>
    </cfif>
    <cfif (#moreinfo# is not "")>
    <a href="#moreinfo#">MORE INFORMATION</a>
    Thanks so much!!

    You need to use Spry:if like below
    <p> {Description} <a href="{Link}" target="_blank"
    spry:if="'{Link}' != ''">MORE..</a></p>
    Regards
    Phil

  • Combining Conditional Actions in Advanced Actions

    I have created a Jeopardy game in Captivate.  There are 16 questions.  I have set an Advanced Action so that
    when all 16 questions are clicked on the user will go to "final Jeopardy".  What I can't figure out is to add that after 5 questions are clicked on for the user to go a different slide before they go back to the gameboard.  Can you add two conditional statements in one advanced action?

    Hello,
    You can combine as much decisions as you want in an Advanced Conditional action. Although the default number is 3, you can add as many as you want. Perhaps this video tutorial could help you:
    Customized feedback
    In my blog you can find quite a lot of examples of condtional actions with multiple decisions as well:
    lilybiri's posterous
    Lilybiri

  • Alerts not getting triggered for invalid receiver receiver

    Hello,
    My scenario is IDoc to HTTP.I have defined alert rules for my scenario.
    I have condition mentioned in receiver determination.Depending on vendor number data is sent to corresponding receiver.
    But when i send IDoc is sent with invalid vendor number,it is failing in XI system with error as :No receiver could be determined but not alert is being thrown or triggered.
    Same situation is working in Dev and quality but not in production.
    I ahve checked the alert rules thorughly in all the 3 environments and they are all perfe

    does the error"RCVR_DETERMINATION.NO_RECEIVER_CASE_ASYNC" gets triggered only when reciever service is not
    mentioned in alert rule condition?
    This error gets triggered when no receiver matching with the mentioned Condition is found.....the Condition in Receiver Determination OR if no receiver service exists.
    I hope you have created a rule in Alert Rule section of RWB and have unchecked the Suppress Multiple Alerts options.
    When you get the above error in SXMB_MONI you should get an alert
    Regards,
    Abhishek.

  • Negative  values in red and Positive values in black CONDITIONAL FORMATTING

    Hi ... Everyone
    I have to show Negative values in red and Positive values in black in one of my report.
    i tried these conditions
    1. <?if:GAIN<0.00?><?attribute@inlines:color;'red'?><?end if?>
    but it shows negative values only in red ,positive values in black are missing
    2. <?if:GAIN<0.00?><?attribute@incontext:color;'red'?><?end if?><?if:GAIN>0.00?><?attribute@incontext:color;'black'?><?end if?>
    This gives the exact result what i wanted ...but the problem is i have five tables in my report ... so the above condition only allow changes in ONE TABLE ONLY. :(
    Plzzzz anyone who can help me to sort out my problem or else SUGGEST ANOTHER WORKING CONDITION
    Regards
    Subham Mittal

    Subham,
    This should not be difficult and moreover the BI Publisher Desktop installation comes with a set of examples:
    Start -> Programs -> BI Publisher Desktop -> Samples -> RTF Templates -> Advanced -> Conditional
    There you can find two templates with the exact same situation like yours, highlighting either the foreground color or background color.
    regards
    Jorge

  • Setting alert rule in RWB

    Hi Experts,
    i am working on ccms alerts. am done with the alert configurations now. Am at the final stage -ALERT RULE. now i want to receive alerts for all channels except for one particular sender and receiver service. please let me know how do i exclude this. Like if i give " * " in all the condition, everything will be included. Do i have to specify not equal to SENDER1_BS something like that?
    thanks.
    kanan

    hi all , please respond on how to exclude particular Buss Service in the Alert Rule "Condition". I am setting alert only for channels.
    thanks.
    kanan

  • [svn] 4756: Bug fix for universal Advanced CSS selectors.

    Revision: 4756
    Author: [email protected]
    Date: 2009-01-30 07:58:55 -0800 (Fri, 30 Jan 2009)
    Log Message:
    Bug fix for universal Advanced CSS selectors.
    1. In CSS, the universal selector * matches any element. It is often implied in selectors, such as the .foo class selector would formally be written *.foo { }. So, what we were previously calling "global selectors" will now be referred to as universal selectors. Flex retains its own special top level "global" selector to function as the root of the inheriting style prototype chain, but other universal selectors will not be associated with this special subject.
    2. When looking for universal selectors, we now match against all possible selectors that have * as the subject rather than trying to pick out specific styleName (class), id or pseudo conditions. This is needed as there may arbitrary advanced conditions in the selector chain, for example, descendant selectors that have a universal subject. Note this was the actual cause of the bug - but the other fixes were needed to separate "global" from "*".
    3. In the compiler, we'll still use the generated _globalStyles.as (i.e. from the "global" StyleDef collection of style declarations) as the place holder for universal selectors (as _*Styles.as would be an invalid ActionScript class name), though these universal selectors will report their subject as "*".
    4. When representing a selector in full as a String, we'll continue to omit "*" as the subject and substitute the empty string, so "*.foo" will be printed as ".foo".
    QA: Yes
    Doc: No
    Checkintests: Pass
    Reviewer: Paul
    Bugs:
    SDK-18196 - [Advanced CSS] Descendant selectors with class selectors like VBox .greenBox are not working correctly.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18196
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/CSSSelector.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleDef.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleDef.vm
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleModule.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleModule.vm
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StylesContainer.java

    Change this:
    <div class="mainnav">
    <li id="width-HealthWellness"><a href="#">Health/Wellness</a></li>
    <ul>
    <li>Flu Section</li>
    <li> Infection Control</li>
    <li> Nutrition</li>
    <li> Physical Fitness</li>
    <li>NIH Newsletters</li>
    </ul>
    to this:
    <div class="mainnav">
    <li id="width-HealthWellness"><a href="#">Health/Wellness</a>
         <ul>
         <li>Flu Section</li>
         <li> Infection Control</li>
         <li> Nutrition</li>
         <li> Physical Fitness</li>
         <li>NIH Newsletters</li>
         </ul>
    </li>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Problem with advanced action and a counter.

    Hi!
    I got a problem on a project with a counter and advanced action.
    I got 7 words (3 wrongs and 4 rights), each associate with captions that shows on click
    When the students had clicked on the 4 rights (and their captions are shown), the 3 wrongs captions are shown.
    variable:
    v_count
    on wrong words:
    simple action: on click, show captions
    on good ones:
    advanced conditional actions:
    1) IF 1=1, THEN show > caption and v_count = v_count + 1
    2) IF v_count=4, THEN show> all captions of the wrongs
    The problem is: (Only when seen in browser) when I click on 3 rights (and not 4), all captions are shown! I have tried to put v_count=5, but then nothing happens.
    Really, I'm lost! Have an idea of what could cause that problem?
    Thanks
    Laurie-Anne

    You already posted this question, thought I asked you if I could have access to your file, because with this explanation only it is a bit difficult to answer. But I cannot find the thread anymore...
    Maybe I'm wrong, or you did not see this answer?
    Lilybiri

  • Adding new Condition Rule attribute for "ICRULE-Intent Driven Interaction"

    Hi Experts,
              I want to add a Z attribute for context "ICRULE- Intent Driven Interaction".
    Under SPRO path Customer Relationship Management->E-Mail Response Management System->Define Repository
    I define new Condition Attribute Z_BP_NUMBER with is the copy of BP_NUMBER Attribute.
    1. if i define a Rule to trigger the Alert with Condition Attribute BP_NUMBER is XYZ. then Alert gets Triggered.
    2. if i define a Rule to trigger the Alert with Condition Attribute  Z_BP_NUMBER is XYZ. then Alert is not Triggered.
    After defining Condition Attribute Z_BP_NUMBER at Define Repository (spro) do i need to include at any other placel?
    Please help me with your valuable input.
    Thanks and Regards,
    Vimal

    Hello Vimal,
    Yes, you also need to create your own data collector class and fact gathering service to use your new attribute!  If you have a subscription to CRM Expert, you can read this detailed article that I co-wrote on using your own custom attributes: http://www.crmexpertonline.com/article.cfm?id=5475.
    Regards,
    John

Maybe you are looking for

  • Photoshop 7 (& other old Adobe programs) installation in Windows 7 Pro 64 bit

    Recently I purchased a new computer running Windows 7 Pro (64 bit) with 2 TB hard drive and 16 GB memory and faced the task of trying to install Photoshop 7, Illustrator 8, Acrobat 8 Pro, and Dreamweaver CS3 that I had used very satisfactorily on my

  • Number range for Invoice & Accounting document to be same

    Forum Members The client requirement is to have same document number for both invoice & Accounting document. Earlier for fiscial year 2006 it was same where as for fiscial year 2007 it is coming as different. Can somebody help in providing the detail

  • Transferring files to a new computer

    I have both an IPOD 20G and a Nano. On my old computer, the Nano is its own playlist within my library. I got a new computer and want to transfer files for both. I have so many songs that I do not wish to burn them all on cds and reload. Not all of m

  • You Tube does not work!

    I have a new build and flash player does not work, it is loaded as I can see it in Manage add-ons.  you tube will not see flash player as I keep getting an error message saying "The ADobe Flash Player is required for video playback" with the option "

  • Maintenance orders (0PM_OM_OPA_1)

    Hello SDN, We have a full load on the extractor 0PM_OM_OPA_1 (Maintenance orders). Due to archiving in R/3, we need to enable the delta capability for this extractor. Can any body suggest how to proceed.? Thanks for your replies. Kalyana