Using warning events in combination with temporal reasoning

OPA settings and environment settings
OPA version
10.3.0.77
OPA Project properties
Rule language: Dutch
Region: Netherlands (Dutch)
We are using temporal reasoning to make decisions. Example: 'Decision X' is initially 'uncertain', from 01-01-2012 'true' and from 31-12-2012 'uncertain'.
Now we want to use an warning event in case Decision X is uncertain between a certain relevant period, for example between 01-01-2012 and 31-03-2012.
something like
warning("decision could not be made") if
decision is uncertain between 01-01-2012 and 31-03-2012
Is this possible?
In case it isn't possible, is there another solution for this problem?
Thanks in advance.

For the purpose of this explanation, 'Decision X' is 'the person is happy'. Here's an idea to try...
Create a regular rule which checks whether 'the person is happy' is uncertain at any point in the specified interval:
the warning message should be triggered if
IntervalSometimes(2012-01-01, 2012-03-31, it is uncertain whether or not the person is happy)
Then create a Warning event rule, e.g.
Warning("Decision could not be made.") if
the warning message should be triggered
You could combine these two rules into one rule, but it will be easier to test if you add an intermediate attribute, e.g. something like 'the warning message should be triggered' I used above.
For more information about the IntervalSometimes function, search on "IntervalSometimes" in the OPM Help.
Cheers,
Jasmine

Similar Messages

  • Can i keep using bridge cs3 in combination with photoshop cs5

    can i keep using bridge cs3 in combination with photoshop cs5

    I have a question sort of relevant to this discussion. Had my 8800GT start to fail on me in my MacPro1,1 - in desperation I disassembled the card, cleaned it, applied fresh thermal compound/padding, and stuck it back in. To my amazement the card actually began working again! Before failing a few days later ; ;.
    I ordered a replacement 8800GT on ebay for a considerably low cost, but before it arrived my computer began behaving normally again. From what I'm understanding from this thread, there is absolutely no benefit to installing both cards in my computer at the same time? If that's the case, I'm going to tuck the backup card away and keep riding my self-repaired card until it crashes again.

  • How to use the eventing and databag with a WAS 6.20 ?

    How to use the eventing and databag with a WAS 6.20 ?
    Is what there is a good guide for these services?
    Thank's

    In the raise event you can pass the value
    like below.
    <SCRIPT>
    function raiseEvt(value1){
    if(window.document.domain == window.location.hostname){
    if ( document.domain.indexOf(".") > 0 ) document.domain = document.domain.substr(document.domain.indexOf(".")+1);
       EPCMPROXY.raiseEvent( "urn:com.sap:BWEvents","BWiViewevent", value1, null );
      // alert('tree domain'+document.domain);
    </SCRIPT>
    and in the
    subscribe event you can get the values like below.
    <script language="javascript">
    if(window.document.domain == window.location.hostname){
    document.domain = document.domain.substring(document.domain.indexOf('.')+1);
        EPCMPROXY.subscribeEvent("urn:com.sap:BWEvents","BWiViewevent", window, "myreceiveEvent");
    function myreceiveEvent( eventObj ) {
          document.forms[0].gp_hidden.value = eventObj.dataObject;
    </script>
    Also look at the following link for a complete documentation.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/Enterprise%20Portal%20Client.pdf
    Regards
    Raja

  • How to use warn about changes property with page menus

    how to use warn about changes property with page menus

    Hi,
    If u will enable this property, then u will get warning message as a popup in case of change of state of VO.
    Regards,,
    Gyan

  • How can I use the DAQMX in combination with a FIREWIRE MIO?

    We had problems in using DAQMX in combination with a NI FIREWIRE MIO Acquisition Card (according to an explanation of a NI-Consultant). Is there a way to solve that problem?

    NI's manual claims there will be DAQmx support for firewire in the future. I hope so too.
    Best,
    Davy

  • Can I Use DAQ Event Message 9 with My PCI-6033?

    I would like to handle my counter board's interrupts by using DAQ event message 9. If Yes, I would to like to see an example in VB?

    Counter events are not supported under NI-DAQ for E series devices. It is possible that what you are trying to accomplish could be done just as easily with a timed loop in DAQmx, what is your application?

  • Only the last account is created when using this script in combination with a CSV

    Hi, I've got a weird problem when using this script:
    $Users = Import-Csv -Delimiter ";" -Path "......csv"  
    FOREACH ($User in $UserList) { $ User }
        $OU = $User.path
        $UPN = $User.UPN
        $Password = $User.password 
        $Detailedname = $User.firstname + " " + $User.Lastname 
        $UserFirstname = $User.Firstname 
        $FirstLetterFirstname = $UserFirstname.substring(0,1) 
        $SAM =  $User.UPN
        $Company = $User.company
        $Description = $User.description
        $AccountExpirationDate = $User.accountexpirationdate
    $params = @{ 'Name'=$Detailedname;
                 'SamAccountName'=$SAM;
                 'UserPrincipalName'=$SAM;
                 'DisplayName'=$Detailedname;
                 'GivenName'=$UserFirstname;
                 'Surname'=$User.Lastname;
                 'AccountPassword'=(ConvertTo-SecureString $Password -AsPlainText -Force);
                 'Enabled'=$True;
                 'PasswordNeverExpires'=$True;
                 'Path'=$OU;
                 'Company'=$Company;
                 'Description'=$Description;
                 'AccountExpirationDate'=$AccountExpirationDate }
    New-ADUser @params
    The CSV file has columns with the name: Lastname;Firstname;Password;Company;Description;UPN;path;AccountExpirationDate
    Script runs without errors, but only creates the last line in the CSV file. Anyone that can help me, of put me in the right direction? Should be great!
    Michiel
    the Netherlands

    Hi Michiel,
    You'll need to move $params and New-ADUser up into the foreach loop.
    EDIT: Also, remove the { $ User } that you have next to the foreach loop. You're also using $Users instead of $UserList.
    EDIT2: Here's a cleaned up version:
    $UserList = Import-Csv -Delimiter ";" -Path "......csv"
    FOREACH ($User in $UserList) {
    $OU = $User.path
    $UPN = $User.UPN
    $Password = $User.password
    $Detailedname = $User.firstname + " " + $User.Lastname
    $UserFirstname = $User.Firstname
    $FirstLetterFirstname = $UserFirstname.substring(0,1)
    $SAM = $User.UPN
    $Company = $User.company
    $Description = $User.description
    $AccountExpirationDate = $User.accountexpirationdate
    $params = @{ 'Name'=$Detailedname;
    'SamAccountName'=$SAM;
    'UserPrincipalName'=$SAM;
    'DisplayName'=$Detailedname;
    'GivenName'=$UserFirstname;
    'Surname'=$User.Lastname;
    'AccountPassword'=(ConvertTo-SecureString $Password -AsPlainText -Force);
    'Enabled'=$True;
    'PasswordNeverExpires'=$True;
    'Path'=$OU;
    'Company'=$Company;
    'Description'=$Description;
    'AccountExpirationDate'=$AccountExpirationDate
    New-ADUser @params
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Using link event on textarea with right click

    I added 'event:' to the links in a textarea.htmlText because
    i need to be able to track when the link is clicked, but
    unfortunately this makes the link not work if they try to right
    click it to open it in a new window, it also doesn't track the
    click, the 'event:' shows in the new browser window url. Is the a
    way to disable rightclicking on links in a text area?

    Hey there,
    Make sure you have all the proper drivers installed for Boot Camp, which at this point you may have already done. Then below, is an article from Apple explaining how to right->click using BootCamp Windows. Hope this helps.
    http://docs.info.apple.com/article.html?path=BootCamp/2.0/en/bc1142.html
    B-rock

  • Use of iTunes in combination with 2 soundcards

    Does someone know a program for windows that plays iTunes songs with a possibility for an output with 2 soundcards.
    So it's got to be a program with 2 decks, the first decks output is the first soundcard, en the second decks output is the second soundcard.
    THX
    Jan

    I realize it, but is sending me now to yahoo.com. Why can I not sent it to gmail instead of yahoo.
    Also, if I were to use outlook how would I set that up? I cannot find a place anywhere to make changes to the email client Adobe Reader is using.

  • Using audience targeting in combination with search content webpart

    I have a simple yes/no question: is the new search webpart capable of filtering based on target audiences? And if so: how can we configure this?
    MCTS Web Application Development, SharePoint enthousiast.

    Hi J Siegmund,
    As far as I know, the search content web pat have not the audience target ,If you want to use it, I suggest you use Content Query web part. You can refer to the following link.
    http://info.axceler.com/Blog/bid/116286/Content-Query-Web-Part-vs-Content-Search-Web-Part
    Thanks,
    Jack
    Jack Gao
    TechNet Community Support

  • Use of Omnipage in combination with Adobe Acrobat

    Hi
    We were wondering if it is advisable to use Scansoft Omnipage as scanning interface rather than the scanning facility of Adobe Acrobat itself? If Scansoft Omnipage, as a dedicated scanning interface tool, more powerful that Adobe Acrobat's facility?
    If that is the case, we would like to use Scansoft Omnipage for scanning and store the documents in Adobe Acrobat.
    Thank you for your suggestion and advice.
    Ashvin

    I realize it, but is sending me now to yahoo.com. Why can I not sent it to gmail instead of yahoo.
    Also, if I were to use outlook how would I set that up? I cannot find a place anywhere to make changes to the email client Adobe Reader is using.

  • Using oracle in combination with the mean-stack

    Hi all,
    I have been exploring the mean stack and saw the oracle-nodejs-passing by.
    I am wondering what the best way is to replace/combine the mongodb with an oracle db (11g).
    At this moment I have tried using mongoose for schema's and an json to XML parser to retrieve an xml-representation of the object I want to save. 
    To do some dml in the db I created some procedures which uses the xmltype in combination with xquery to update/insert.
    Although it is working I am wondering this is the way to go. What are your experiences?
    Regards,
    Romano

    The way to go is to use node-oracledb with Oracle 12.1.0.2 JSON datatype support: http://docs.oracle.com/database/121/ADXDB/json.htm
    However, since you are still on 11g, using stored procedures to encapsulate logic seems like a good start.
    You'll lose some performance using any ORM: do you really need one?

  • Satellite L650: Some combinations with the FN button do not work on W7x64

    Hello,
    System
    <h3>Satellite L650-1KU</h3>Part number
    <h3><span class="partNo">PSK1LE-01700MRU</h3>
    I have install Windows by myself - this laptop haven't any OS from factory.
    Installed Windows 7 x64, all drivers and utilites from Toshiba driver site for windows 7 x64 accessible for my laptop model.
    I have no any unknown devices in Windows Device manager, all drivers installed and all hardware components woks fine i.e. wifi or bluetooth or web camera.
    But I still can't use some of keyboard combinations with Fn button. Not all, just five combinations do not work: Fn+F2 power modes, Fn+F4 hibernate, Fn+1,2 zoom and Fn+F8 wirelles devices.
    From search I have found only mentions about Fn+1,2 zoom - this funtion provide some util named Toshiba Zoom but on download page no any Toshiba Zoom for my laptop model and W7.
    Looks like there must be installed some additional utils from vendor for handling this combinations but I cant find any additional info or soft on driver download page.
    May be there are some utils what shold be located in lists of drivers/soft for 32 bit windows and it will be fine for 64 bit one?
    All combinations which works fine like volume +- Fn+3 Fn+4 or mute Fn+ESC does not shows any popus at moment of pressing, just <span class="short_text"><span class="hps">perform <span class="hps">its <span class="hps">function <span class="hps">without any indication.
    Dear users and support, can you help me what I should install from additional utils to provide support for combinations Fn+F2 power modes, Fn+F4 hibernate Fn+1,2 zoom and Fn+F8 wirelles devices?
    Message was edited by: Gimli_r

    Have you installed the Toshiba Value Added Package?
    Have a look on the Toshiba support/downloads website. Ensure you install the Win7 64bit version of TVAP designed for the L650 series.
    Updating the BIOS may also help.

  • Advanced Antialias in combination with a lot of text does not show well

    I am using embedded fonts in combination with antiAliasType ADVANCED which gives good results for smaller fontsizes.
    But if the textField contains a lot of text (> 20000 characters) then part of the text is simply NOT shown. So the first couple of hundreds of lines are shown, then a couple of hundereds are not, then the next again are shown and so on. I have experimented with different values of the sharpness, but without results. Anyone any idea?
    Thanks!
    _textField.antiAliasType=AntiAliasType.ADVANCED
    _textField.sharpness=300

    I cannot reproduce this issue with neither dynamic nor authoring font embedding approach. All text displays fine.
    You may need to make sure that font you embed has all the characters first.
    The code I used:
    In Flash IDE (given Arial is embedded):
    init();
    function init():void
         var tf:TextField = new TextField();
         tf.multiline = tf.wordWrap = true;
         tf.width = 1200;
         tf.autoSize = "left";
         tf.embedFonts = true;
         tf.antiAliasType = AntiAliasType.ADVANCED;
         tf.sharpness = 300;
         tf.defaultTextFormat = new TextFormat("Arial", 9);
         tf.text = "";
         addChild(tf);
         while (tf.text.length < 20000) {
              tf.appendText(" " + String.fromCharCode(33 + Math.random() * 93));
    And as a document class with Embed metatag:
    package
         import flash.display.Sprite;
         import flash.text.AntiAliasType;
         import flash.text.Font;
         import flash.text.TextField;
         import flash.text.TextFormat;
         public class LargeText extends Sprite
              [Embed(systemFont="Arial",fontName="_arial",mimeType="application/x-font-truetype",embedAsCFF="false")]
              private var font:Class;
              public function LargeText()
                   init();
              private function init():void
                   var tf:TextField = new TextField();
                   tf.multiline = tf.wordWrap = true;
                   tf.width = 1200;
                   tf.autoSize = "left";
                   tf.embedFonts = true;
                   tf.antiAliasType = AntiAliasType.ADVANCED;
                   tf.sharpness = 300;
                   tf.defaultTextFormat = new TextFormat("_arial", 9);
                   tf.text = "";
                   addChild(tf);
                   while (tf.text.length < 20000)
                        tf.appendText(" " + String.fromCharCode(33 + Math.random() * 93));

  • 'fn' key shows desktop (not in combination with f11). How to turn this off?

    iMac 21.5-inch, Late 2012
    OS X Yosemite 10.10.2
    Whenever I press the 'fn' key (standalone) key it shows my desktop, which it makes it difficult for me to use this key in combination with the f1-f12 keys. I had a similar issue on my Macbook Air, which was resolved by changing my keyboard to the correct input source and double checking that no shortcuts had been installed for the keyboard. When I realised that my iMac had the same problem I went through the same steps but nothing changed this time.
    I've restored all shortcuts to default and made sure that my keyboard input source is one that matches my wireless keyboard.
    Any ideas on how to stop the 'fn' standalone key from showing my desktop?

    Hi nbmm000,
    I see that you are experiencing an issue with the function key on your keyboard. While I am sure you have already seen this step, it has not been mentioned in your post, so I thought I would mention it as a troubleshooting step:
    How to change the behavior of function keys on your Mac - Apple Support
    http://support.apple.com/en-us/ht3399
    Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

Maybe you are looking for

  • Managed Role Scope

    I learned that roles in DS are scoped to where they are created. Meaning if I create a managed role called role1 in ou=Roles,dc=sun,dc=com only entries (ie users and groups) under the ou=Roles branch will have visibility to role1. But since all my us

  • SQL Server data change and Security

    in our environ any user who login with sa they can change any table data. so i write trigger to capture changed data like who change, from which IP etc this CREATE TRIGGER [TRG_Users] ON [dbo].[UserRights] AFTER INSERT, UPDATE, DELETE AS DECLARE @str

  • Error 48 cannot save library

    cannot save itunes library, been getting this awhile now, any ideas? thanks!

  • Help me plzzz..... URGENT

    hello neighbourhood..., can anyone help me plz... how can i pass a value through header ? e.g setHeader("uname","mmx"); setHeader("paswd","hula"); i want to pass it to http://192.100.86.69:8001/login which reside in another terminal in different plac

  • Encore won't start after a month of working almost without problems

    Upon startup I get this error message -"The program can't start because MSVCR71.dll is missing from your computer.  Try reinstalling the program to fix this problem."  DO I ACTUALLY HAVE TO REINSTALL CS5 IN ORDER TO USE ENCORE?