The changed ruleSet can't work!

Hi, there
I have invoked a decision service in my bpel process successfully. But now I am trying to change my rule condition to change my business process in running-time. the problem is when I have changed the condition in Rules Author (based on WebDev) the business didn't change according to the new condition, unless I redeploy the bpel process.
Why?

Hi Juan,
The path was an example for the standalone BPEL PM installation. If you have
SOA Suite installed then the directory is
${ORACLE_HOME}/j2ee/<OC4J instance>/applications/......
I'm not sure if i understand the second part of your posting. When you launch rule
author from BPEL console and modify some rule, then after the dictionary is saved
the next BPEL process instance will pick up the new rules.
You need to save to the exact same dictionary version. If you choose another version of the dictionary then the BPEL process will indeed not pick up the modificaitons and you have to redeploy.
Support for file-based rule repositories was added as a kind of developer
convenience to get started without a WebDAV server installation.
For production uses we encourage to use a WebDAV rule repository.
For the file based repository we leave it to the user to synchronize the rule dictionaries that are part of a decision service deployment with the original ones.
Last ut not least, when you modify a rule, make sure that you save the changes
in rule author and when you're finished with all modifications, make sure to save the rule dictionary.
Regards,
Ralf

Similar Messages

  • Changed group membership in WGM 10.6.3 from the 10.6 server. The change takes overnight to work. Formerly ran WGM from my 10.6.8 mac (worked perfectly)  but now I am at 10.7.5 and must use WGM on the server. Has anyone else seen this behavior?

    Changed group membership in WGM 10.6.3 from the 10.6 server. The change takes overnight to work. Formerly ran WGM from my 10.6.8 mac (worked perfectly)  but now I am at 10.7.5 and must use WGM on the server. Has anyone else seen this behavior?

    Hi
    "Changed group membership in WGM 10.6.3 from the 10.6 server. The change takes overnight to work"
    If I've understood you correctly I've never known this or anything else to take that long? What were you trying to do exactly?
    "Formerly ran WGM from my 10.6.8 mac (worked perfectly)  but now I am at 10.7.5 and must use WGM on the server. Has anyone else seen this behaviour?"
    http://support.apple.com/kb/HT1822
    HTH?
    Tony

  • Hi . the ipad 2 3g model is it unlocked meaning can if i purchased the uk version can it work on any 3g sim card

    hi . the ipad 2 3g model is it unlocked meaning can if i purchased the uk version can it work on any 3g sim card

    Thank you so much

  • Why the multiple selection can't work in sub screen

    hi experts:
         when i try to use the sub-screen in the report,why the multiple selection function(SO_BCTXT) can't work normally in screen 1095:
    the coding as below.will reward points if solve this issue
    the main program in Subscreen:
    PROCESS BEFORE OUTPUT.
    module status_1005.
      CALL SUBSCREEN area INCLUDING sy-repid lv_tab_number.
    PROCESS AFTER INPUT.
      MODULE cancel AT EXIT-COMMAND.
      CALL SUBSCREEN area.
      MODULE user_command_1005.
    module user_command_1005 input.
      my_ok = ok_code.
      clear ok_code.
      case my_ok.
        when 'TAB1'.
          mytabstrip-activetab = my_ok .
          lv_tab_number = 1095.
        when 'TAB2'.
          mytabstrip-activetab = my_ok .
          lv_tab_number = 1096.
        when 'CRET' or 'ONLI'.
          perform get_bc_set
                 using
                    so_chanb[]
                 changing
                    <fs_bcsetfield> .
          leave to screen 0.
      endcase.
    endmodule. 
    in the screen 1095:
    PROCESS BEFORE OUTPUT.
    MODULE %_INIT_PBO_J.
    MODULE %_PBO_REPORT.
    MODULE %_PF_STATUS.
    MODULE %_SO_BCTXT.
    MODULE %_END_OF_PBO.
    PROCESS AFTER INPUT.
    MODULE %_INIT_PAI_J.
    CHAIN.
      FIELD  SO_BCTXT-LOW.
      FIELD  SO_BCTXT-HIGH.
      MODULE %_SO_BCTXT.
    ENDCHAIN.
    FIELD !INCBCTY1 MODULE %_INCBCTY1 .
    FIELD !INCBCTY2 MODULE %_INCBCTY2 .
    FIELD !INCBCTY3 MODULE %_INCBCTY3 .
    FIELD !INCBACT MODULE %_INCBACT .
    FIELD !INCBINAC MODULE %_INCBINAC .
    FIELD !INCLMAND MODULE %_INCLMAND .
    FIELD !INCLOPTI MODULE %_INCLOPTI .
    CHAIN.
      FIELD  SO_BCTXT-LOW.
      FIELD  SO_BCTXT-HIGH.
      FIELD INCBCTY1 .
      FIELD INCBCTY2 .
      FIELD INCBCTY3 .
      FIELD INCBACT .
      FIELD INCBINAC .
      FIELD INCLMAND .
      FIELD INCLOPTI .
      MODULE %_BLOCK_1095001.
    ENDCHAIN.
    CHAIN.
      FIELD  SO_BCTXT-LOW.
      FIELD  SO_BCTXT-HIGH.
      FIELD INCBCTY1 .
      FIELD INCBCTY2 .
      FIELD INCBCTY3 .
      FIELD INCBACT .
      FIELD INCBINAC .
      FIELD INCLMAND .
      FIELD INCLOPTI .
      MODULE %_END_OF_SCREEN.
      MODULE %_OK_CODE_1000.
    ENDCHAIN.
    in the main report
    selection-screen begin of screen 1095 as subscreen.
    enquire Data
    data l_text       type as4text.
    selection-screen begin of block b1 with frame title text-024.
    select-options :
      so_bctxt     for l_text .
    selection-screen skip 1 .
    parameters:
      incbcty1    type c as checkbox default abap_true ,
      incbcty2    type c as checkbox default abap_true ,
      incbcty3    type c as checkbox default abap_true .
    selection-screen skip 1 .
    parameters:
      incbact      type c as checkbox default abap_true ,
      incbinac     type c as checkbox default abap_true .
    selection-screen skip 1 .
    parameters:
      inclmand     type c as checkbox default abap_true ,
      inclopti     type c as checkbox default abap_true .
    selection-screen end of block b1.
    selection-screen end of screen 1095 .

    Hiii
        In main program you have dclared subscreen area.
    now First of all you have to declare a selection screen in your main program
    selection-screen begin of screen 1005 as subscreen.
    SELECT-OPTIONS s_bukrs1 for  v_bukrs.   "whatever you want in selection screen
    selection-screen end of screen 1005.
    IN PBO of your main screen (not in 1005) write
    call subscreen SUB1 including sy-repid '1005'.
    where SUB1 is your subscreen area name. And remember don't touch PBO or PAI of your 1005 screen, otherwise it will give you error. Yuo can just put text in layout of 1005 screen. but don't disturb other things.

  • Login as Root password problem (the changed password isn't working!)

    I have enabled root user. I've changed my password for root user a couple of time and I am still not cable to login as root!! (username: root).
    Any thoughts and help? thanks a lot! Alon.

    Hello Stephen,
    Change of password is not done via configtool. Configtool secure store just stores the current password which is taken by SDM during the deployment.
    To change the password of the administrator user, you will need to enable SAP*. Please follow note Note 669848.
    1. open the configtool: C:\usr\sap\<InstenceID>\JC<xx>\j2ee\configtool --> configtool.bat
    ex: C:\usr\sap\J9E\JC09\j2ee\configtool ---> configtool
    2. Activate the "super admin" and enter password(this is your choice) in configtool properties:
    In Config tool: cluster-data>Global Server configuration>services--> com.sap.security.core.ume.service
    find below ume properties and change values as i mentioned
    ume.superadmin.activated=TRUE
    ume.superadmin.password= < enter password>
    3. Save the changes in configtool. click on Save button.
    4. Stop the j2ee engine.
    5. Start the j2ee engine.
    6. Now you login to UME with username "SAP*" and password "what you entered in configtool"
    7. After logging into UME Search for user "administrator" then unlock this user; or if you want to change password you can change it.
    8. Goto config tool follow step 1:
    9. Follow step2: and change ume property values as below:
    ume.superadmin.activated=FALSE
    ume.superadmin.password= (note: seta as default or blank)
    10. Save the change setting in configtool.
    11. Restart the j2ee engine ( Stop and Start).
    12. Now login to user as "Administrator"; you will succussfully loging into ume;
    Hope this helps.
    Regards,
    Snehal

  • When Windows 8.1 wakes up from sleeping, the PAC Proxy can't work normally

    Hi,
    I'm using Toshiba WT8 Win8 Tablet.
    When my tablet waked up from sleeping, the PAC Proxy can't normally work on the Modern UI IE, when I reconnect the WiFi, it will be ok without any other action.
    Windows 8.1 and all drivers are up-to-date.  No any anti-virus software. 
    There is a post I asked 4 days ago but can't solve my problem: https://answers.microsoft.com/en-us/windows/forum/windows8_1-networking/windows-81-wake-up-from-sleep-lost-pac-proxy/a19efe8e-70e4-4eed-a614-f11f62562a68?rtAction=1425959337664

    Hi,
    According to your another thread, your current Tablet system is Windows 8.1, isn't it? When this probelm occurs, could desktop IE works properly using PAC Proxy?
    In addition, open Device Manager to check Wireless adapter driver settings, make sure " Allow the computer to turn off this device to save power " is unchecked.
    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]

  • The loading bar can't work correctly!

    hello, everybody, i creat a loading bar, but it can't work
    correctly, the code is that:
    as u see, the"will_load.swf" is in the same file

    thanks for your help!!
    i do test this on line,but can u tell me how ,i send the two
    files in the same files,but it can't work well!
    my email is [email protected]
    can u send me a sample file?
    i really thanks your help!

  • My iphone 4 show batery is full, but when I plug-off the iphone power-off, minutes later restart, that becames a cycle. I can't enable the Wi-fi, the card sim can't working... HELP !!  It's the end of my iphone 4?

    I have my iphone 4 since march, 2010 ! And now the iphone can't work ! HELP !

    Most likely faulty battery. Make Genius Appointment and take iPhone to Apple, battery diagnostic test by Genius takes less than 5 minutes.

  • 3.6.4 now opens new tabs to the far right, rather than next to the current tab. why the change, and can I change it back?

    When I right-click a link to open the context menu, and then select the menu item "open in new tab", the new tab is to the far right of my opened tabs in this window. In 3.6.3, the new tab would be next to my current tab. This seems like an arbitrary change. Is there a setting whereby I can get the old behavior?
    == This happened ==
    Every time Firefox opened
    == I updated to 3.6.4

    Set the pref browser.tabs.insertRelatedAfterCurrent to false on the about:config page.
    To open the ''about:config'' page, type '''about:config''' in the location (address) bar and press the Enter key, just like you type the url of a website to open a website.
    If you see a warning then you can confirm that you want to access that page.

  • Why the Adobe Flash can't work.

    my computer's system is Win 7. I have installed the Adobe flash, but i can't see any flash modules on website.
    I need work on my website so i need to update the banner on my [spam link removed] website. My system is re-installed 3 days ago. Adobe flash installed fail first, after that i re-installed it again and succeed. But i can't see any banner on website. I use the Adobe Flash and Adobe reader some years. I like it, i don't want to replace it to others. Who can help me, thanks so much!

    I'm assuming you are using Internet Explorer 9 as your browser, if so can you follow the instructions on these two pages?
    Enabling Flash Player in Internet Explorer 9
    ActiveX Filtering in Internet Explorer 9
    Thanks,
    Chris

  • My rotation is locked and the changera button is not working what skall i do?

    My rotation is locked what to do?

    Try:
    fix for Home button
    iPhone Home Button Not Working or Unresponsive? Try This Fix
    - If you have iOS 5 and later you can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    You can do it an an Apple store by:
    Apple Retail Store - Genius Bar
    or sent it in to Apple. See:
    Apple - Support - iPod - Service FAQ
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • I can't see the writing properly since all the changes.    Can i make it darker as its just light grey

    I can't see the writing properly on my iMac iPad mini or iPhone.  I feel like throwing them all out.. or selling them as no point in using them if I can't see the writing is just a light grey.  please can i change this to a darker script

    Hi there Chrisey01,
    You may find the Increase Contrast, Bold and Large Text, and Reduce Transparency options in iOS helpful for making the text more legible. Take a look at the User Guide page below for more options. Note: Reduce Transparency is found with the Increase Contrast setting.
    Large, bold, and high-contrast text
    -Griff W. 

  • The searching function can't work in my itune app, but why? And how can I fix it?

    The searching function of iTune store doesn't work? How can I fix it??

    Hi,
    Try resetting your iPod:  http://support.apple.com/kb/HT1430. 
    Hope this helps! 
    ---likeabird---

  • If I buy my iPhone from the apple website can it work in other countries, if I buy my iPhone 5 from the apple website can it work in other countries

    I have not yet bought the phone but I am wondering if I can put other SIM cards from abroad into it and how can I get a message engraved in it

    You can only put other sims in if you purchase an unlocked iPhone.  If you buy one that is subsidized it is locked to a carrier and can only accept other sim cards if it is a Verizon iPhone...Verizon uses the CDMA radio, the GSM radio is unlocked.

  • How to make sure the change of NLS_LANG is working?

    I want to show unicode through iSQL*PLUS.
    Refer to the guide article,there are three steps to reach it.
    1.browser encording :Unicode(UTF8)
    2.database character set : UTF8
    3.new environmental var : TRADITIONAL CHINESE_TAIWAN.UTF8
    I make sure that the 1 and 2 steps are definitely reached.
    But I'm not sure the apach server got the new parameter or not.It looks all the same.....
    So,my question is how can I got the information(NLS_LANG parameter) of HTTPServer?
    Besides,if anyone can teach me how to show unicode through iSQL*PLUS,I would be very greatful.
    Thank in advance.

    By Firefox index, did you mean site map?
    Firefox doesn't keep an index of a web site. The web site does.
    This sounds like a server configuration problem, not a browser problem. But could you please paste the full error messages(s) from Gater Host / WordPress?

Maybe you are looking for