Problems exposing a Business Rule in a composite as a Web Service

Hi
I am currently facing a problem invoking a Composite from within the BPEL.
Scenario: I have created a composite which has one Business Rule Component. The composite deploys successfully to the Web Logic Server. (Successful compilation: 0 errors, 0 warnings). However there is a number of "ignoring messages" which do not affect the deploy. These ignoring messages could be the souce of my problem which I will explain later. Example of an ignoring message
ignoring C:\Work\Project\ValidationProcess\Rules\xsd\PDQuality_DecisionService_1Types.xsd; not on source path
Now if I create a new project composite which has a BPEL component. The BPEL component has a partner link to call the Composite mentioned above. When assigning variables i.e Input variables to the partnerlink service, I notice that the payload of the invoke variables ( TO Section) has an error "Exception - Problem building schema!"
To prove that the partner service is working. I can view the WSDL in Internet Explorer. I can use the Eclipse WTP workbench to invoke the service ( Composite with Rules ). Now could it be that I am getiing this problem because initially when deploying the service (Composite with Rules) I was getting these ignoring messages and could it be that I should add all the ignoring source to the source path.... OR am I just embarking on a tangent!
Any words of wisdom would be much appreciated.. Thanks in advance
Using SOA 11G - 11.1.1.2 (WebLogic Server 10.3.2) and Jdev 11.1.1.2.0

hi all,
im also facing the same above issue.
i created a 11g composite with BusinessRules component.
when invokin that composite from 10g BPEL process ..im also facing the above mentioned issue
"Exception - Problem building schema!""
any help is appreciated
thanks,
karthik
Edited by: karthik !! on Mar 11, 2010 4:00 PM

Similar Messages

  • Exposing Oracle Business Rule As Composite Service

    Hi Gurus,
    I have created a simple business rule and exposed it as composite service(without using any BPEL process) and deployed it into server successfully.Now i want to call that Business rule as webservice in my BPEL process, but i am facing some issues like, have to provide values of some fields like NCName,some attributes under bpelInstaces.
    When i checked the Business Rule project in EMconsole,faced the same scenario.
    Question: is it mandatory to use BPEL process at the time of exposing Business Rule?
    Any suggestion is helpful to me..
    Thanks in advance
    Sharmistha

    Hi Sai,
    Thanks for the rply.
    Yes, The "Will be Invoked as A Web Service" property is "Checked" for Business Rule Decision Function and the service name is also available.
    when i am trying to get the wsdl of the web service it shows "Error 404-Not Found". (http://<host>:<soa port>/<service name>?wsdl)
    *[e.g http://<host>:<soa port>/OracleRules_WSTest_DecisionService_1?wsdl]*
    But the ruleset is available in the SOA Composer.
    Still facing the same problem, can't invoke the Business Rule in my composite as Web-service.
    Sharmistha

  • Business Rule Attached to Composite web form not running

    Hi
    I created a composite webform and attached a business rule.Rule is supposed to run on save.But its failing to do so.Version is 11.1.2.3.I also tried attaching BR to the individual webforms along with the composite webform.Still not working.
    Please give your valuable advice on this.
    Thanks in advance.

    Did you select Run "Rules from Form XX" in composite Form Business Rule section and select Run on save option ? Can you please provide screenshot of your BR section in Composite form and simple form ??

  • Problem using "Create Business Rule Design Definition" utility

    Hi everyone,
    I tried to create a business rule with Headstart Utilities - Create Business Rule Design Definition (Revision 6.0.0.20) and I got the following errors :
    Errors
    Message
    Combination of Message Prefix and Message Number (SGM-ENG) does not match format AAA-NNNNN.
    Activity aborted with ORACLE internal errors.
    -1400 ORA-01400: cannot insert NULL into ("HST50"."QMS_MESSAGE_TEXT"."LANGUAGE")
    I suppose that the utility concatenate the message prefix and the language to build the error message.
    Our Oracle Designer version is 6.0.3.9.0, Headstart 2.1.2 with patch 12.4 and Developper is 6.0.5.35.3
    Any patch available?
    Regards,
    Jerome Couture

    Tim,
    Headstart should be able to check out any tables you need.
    We think we have the user settings
    done correctly, but there may be something that we
    have missed. How can we get Headstart to
    automatically check-out the table(s) for which we
    want to run the Business Rules design transformer?The user settings you need are (see also pages 5-7 and 5-10 in the Headstart User's Guide):
    - Under 'Process the following objects', choose 'Checked out by anyone'
    - Also check the check box '... also Checked In objects'
    - Choose whether you want to automatically check out with or without lock
    If this does not help, please run the utility with log level 'Debug Detailed' (can also be set in the User Preferences) and report the last few lines of the log messages. They should give an indication of why the check out does not succeed.
    Hope this helps,
    Sandra Muller

  • Problem with uploading files to SharePoint 2013 in cloud using web services. Keep getting error message and don't know why.

    Hello everyone. I am having trouble writing a utility that uses SharePoint web services to upload a file and metatag it. It keeps throwing the following error message:
    "The request failed with the error message: -- <html><head><title>Object moved</title></head><body> <h2>Object moved to <a href="/_forms/default.aspx?ReturnUrl=%2fsites%2fgk%2f_vti_bin%2fcopy.asmx">here</a>.</h2>
    </body></html> --."
    Not sure why. I pass the file that I am going to upload to the subroutine and it is suppose to upload it to the appropriate library. I have burned several days on this problem and I am not sure what is going on. I would appreciate anyone that can point me in
    the right direction. Below is the subroutine that I have that is causing the problem. Obviously, I have stripped the name from the example.
    Thanks
    Mike
    ******** <Begin snip of code> **********************
    Public Shared Sub CreateNewDocumentWithCopyService(ByVal fileName As String)
    Dim c As New copyservice.Copy
    c.PreAuthenticate = True
    c.Credentials = New System.Net.NetworkCredential("[email protected]", "mypassword")
    c.Url = "https://x.sharepoint.com/sites/gk/_vti_bin/copy.asmx"
    Dim myBinary As Byte() = System.IO.File.ReadAllBytes(fileName)
    Dim destination As String = "https://x.sharepoint.com/sites/gk/Gatekeeper%20Reference/" & System.IO.Path.GetFileName(fileName)
    Dim destinationUrl As String() = {destination}
    Dim info1 As New copyservice.FieldInformation
    info1.DisplayName = "Title"
    info1.InternalName = "Title"
    info1.Type = copyservice.FieldType.Text
    info1.Value = "new title"
    Dim info2 As New copyservice.FieldInformation
    info2.DisplayName = "Modified By"
    info2.InternalName = "Editor"
    info2.Type = copyservice.FieldType.User
    info2.Value = "-1;#servername\\testmoss"
    Dim info As copyservice.FieldInformation() = {info1, info2}
    Dim resultTest As New copyservice.CopyResult
    Dim result As copyservice.CopyResult() = {resultTest}
    Try
    ' When creating new content use the same URL in the SourceURI as in the Destination URL argument
    c.CopyIntoItems(destination, destinationUrl, info, myBinary, result)
    Catch ex As Exception
    MsgBox(ex.Message)
    End Try
    End Sub
    ******** <End snip of code> **********************

    Hi,
    If you want to upload a file to a library in SharePoint 2013 online, I suggest you use Client Object Model or REST API.
    The code snippets in the two threads below will be helpful:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/deac7cb7-c677-47b0-acdc-c56b32dfaac8/uploading-bigger-files-using-csom
    http://stackoverflow.com/questions/17057074/how-to-download-upload-files-from-to-sharepoint-2013-using-csom
    Uploading Files Using the REST API
    http://blogs.msdn.com/b/uksharepoint/archive/2013/04/20/uploading-files-using-the-rest-api-and-client-side-techniques.aspx
    You can handle the authentication with
    SharePointOnlineCredentials object:
    http://www.vrdmn.com/2013/01/authenticating-net-client-object-model.html
    Best regards
    Patrick Liang
    TechNet Community Support

  • Problem in updating a java client to invoke data-secured web service

    hello
    i'm following the document 'programming weblogic web services' to use ws-security
    functionality to encrypt & digitally sign SOAP Request & Response
    and I first made a client that calls a secure weblogic web service.
    ( using a keystore having RSA key pair. )
    the code is like below -----------------------------------------------------------------
    final KeyStore keystore = loadKeystore(CLIENT_KEYSTORE, KEYSTORE_PASS);
    TestEJB_Impl service = new TestEJB_Impl("file:///C:/bea/user_projects/domains/FirstDomain/working/TestEJB_with_Security_surpport.wsdl");
    WebServiceContext context = service.context();
    System.out.println("passing context info to the client");
    X509Certificate clientcert;
    clientcert = getCertificate(CLIENT_KEYNAME, keystore);
    PrivateKey clientprivate;
    clientprivate = getPrivateKey(CLIENT_KEYNAME, CLIENT_KEYPASS, keystore);
    WebServiceSession session = context.getSession();
    session.setAttribute(WSSEClientHandler.CERT_ATTRIBUTE, clientcert);
    session.setAttribute(WSSEClientHandler.KEY_ATTRIBUTE, clientprivate);
    UserInfo ui = new UserInfo(AUTHENTICATION_USER, AUTHENTICATION_USER_PASS);
    session.setAttribute(WSSEClientHandler.REQUEST_USERINFO, ui);
    TestEJBPort port = service.getTestEJBPort();
    String result = null;
    result = port.firstMethodTest("A123");
    System.out.println(result);
    and there comes error stacktrace like below ------------------------------
    <Info> <WebService> <BEA-220024> <Handler
    weblogic.webservice.core.handler.WSSEClientHandler threw an exception from its
    h
    andleRequest method. The exception was:
    weblogic.xml.security.SecurityConfigurationException: Failed adding encryption
    t
    o request - with nested exception:
    [weblogic.xml.security.SecurityProcessingException: No keywrapping algorithm ava
    ilable for DSA keys].>
    Exception in thread "main" java.rmi.RemoteException: SOAP Fault:javax.xml.rpc.so
    ap.SOAPFaultException: Exception during processing: weblogic.xml.security.Securi
    tyConfigurationException: Failed adding encryption to request - with nested exce
    ption:
    [weblogic.xml.security.SecurityProcessingException: No keywrapping algorithm ava
    ilable for DSA keys] (see Fault Detail for stacktrace)
    Detail:
    <detail>
    <bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webse
    rvice/fault/1.0.0">
    </bea_fault:stacktrace>weblogic.xml.security.SecurityProcessingException: No
    ke
    ywrapping algorithm available for DSA keys
    at weblogic.xml.security.wsse.v200207.SecurityImpl.getWrappingAlgorithm(
    SecurityImpl.java:200)
    at weblogic.xml.security.wsse.v200207.SecurityImpl.addEncryption(Securit
    yImpl.java:175)
    at weblogic.xml.security.wsse.v200207.SecurityImpl.addEncryption(Securit
    yImpl.java:153)
    i am using RSA key pair but, when i use DSA key pair , the error message is same
    as above.
    what is problem? and what am i missing?

    Hello,
    The current implementation only supports RSA key types as legal
    wrapping. It is on the TODO list to expand this to other algorithms.
    Regards,
    Bruce
    dolso wrote:
    >
    hello
    i'm following the document 'programming weblogic web services' to use ws-security
    functionality to encrypt & digitally sign SOAP Request & Response
    and I first made a client that calls a secure weblogic web service.
    ( using a keystore having RSA key pair. )
    the code is like below -----------------------------------------------------------------
    final KeyStore keystore = loadKeystore(CLIENT_KEYSTORE, KEYSTORE_PASS);
    TestEJB_Impl service = new TestEJB_Impl("file:///C:/bea/user_projects/domains/FirstDomain/working/TestEJB_with_Security_surpport.wsdl");
    WebServiceContext context = service.context();
    System.out.println("passing context info to the client");
    X509Certificate clientcert;
    clientcert = getCertificate(CLIENT_KEYNAME, keystore);
    PrivateKey clientprivate;
    clientprivate = getPrivateKey(CLIENT_KEYNAME, CLIENT_KEYPASS, keystore);
    WebServiceSession session = context.getSession();
    session.setAttribute(WSSEClientHandler.CERT_ATTRIBUTE, clientcert);
    session.setAttribute(WSSEClientHandler.KEY_ATTRIBUTE, clientprivate);
    UserInfo ui = new UserInfo(AUTHENTICATION_USER, AUTHENTICATION_USER_PASS);
    session.setAttribute(WSSEClientHandler.REQUEST_USERINFO, ui);
    TestEJBPort port = service.getTestEJBPort();
    String result = null;
    result = port.firstMethodTest("A123");
    System.out.println(result);
    and there comes error stacktrace like below ------------------------------
    <Info> <WebService> <BEA-220024> <Handler
    weblogic.webservice.core.handler.WSSEClientHandler threw an exception from its
    h
    andleRequest method. The exception was:
    weblogic.xml.security.SecurityConfigurationException: Failed adding encryption
    t
    o request - with nested exception:
    [weblogic.xml.security.SecurityProcessingException: No keywrapping algorithm ava
    ilable for DSA keys].>
    Exception in thread "main" java.rmi.RemoteException: SOAP Fault:javax.xml.rpc.so
    ap.SOAPFaultException: Exception during processing: weblogic.xml.security.Securi
    tyConfigurationException: Failed adding encryption to request - with nested exce
    ption:
    [weblogic.xml.security.SecurityProcessingException: No keywrapping algorithm ava
    ilable for DSA keys] (see Fault Detail for stacktrace)
    Detail:
    <detail>
    <bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webse
    rvice/fault/1.0.0">
    </bea_fault:stacktrace>weblogic.xml.security.SecurityProcessingException: No
    ke
    ywrapping algorithm available for DSA keys
    at weblogic.xml.security.wsse.v200207.SecurityImpl.getWrappingAlgorithm(
    SecurityImpl.java:200)
    at weblogic.xml.security.wsse.v200207.SecurityImpl.addEncryption(Securit
    yImpl.java:175)
    at weblogic.xml.security.wsse.v200207.SecurityImpl.addEncryption(Securit
    yImpl.java:153)
    i am using RSA key pair but, when i use DSA key pair , the error message is same
    as above.
    what is problem? and what am i missing?

  • Composite Deployments and web service references

    Hi,
    I have a composite application that contains external references to the human task web services hosted on our development server; this means that my composite.xml file contains imports to http://mydevserver:8001/ integration/services/TaskQueryService/TaskQueryService?WSDL.
    When deploying the composite to mydevserver either through JDeveloper or using the ant script it works fine.
    Now I want to make sure that we can deploy the composite to another server, so I have created a configuration plan that replaces all references to http://mydevserver:8001 with http://anotherdevserver:7001
    When I run ant-sca-deploy on anotherdevserver I get the following in the ant output and the ant-sca-compile log file (/tmp/out.err):
    Load of wsdl "http://mydevserver:8001/.../....wsdl" failed
    oracle.fabric.common.FabricException: Error in getting XML input stream: http://mydevserver:8001/.../....wsdl: Connection timed out
    This occurs when the script tries to validate the composite.
    It appears this is caused by the fact that anotherdevserver cannot see mydevserver and because the script is only validating the composite at this point and the configuration plan is only used at deployment I have no way of overriding this. If it wasn’t for the difference in port number we could use a placeholder server name and point it to the appropriate server in our hosts file.
    I have two possible solutions to this issue:
    1)     Build the composite on my development environment and deploy the jar file with the configuration plan through enterprise manager – This is not ideal because we want to try and automate the process and remove unnecessary dependencies.
    2)     Install a local Weblogic server and SOA suite and change the references to localhost. However, his requires a lot of resource on our development machines and also means that the development servers have to be configured identically (i.e. same port number) on all development machines (not that this is necessarily a bad thing).
    Please can you tell me how you manage your development and deployments and what recommendations you have that might help me?
    Thanks,
    Dave.

    See if one of these help
    Order of SCA deployment at SOA startup
    Composite with dependency not working after soa server restart
    http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10224/sca_lifecycle.htm#CHDCAGEB
    Atul

  • Problem in Hyperion Business Rules

    Hi All,
    I have an urgent requirement. I have a dimension Period with weeks(Wk1,Wk2....Wk52) as level 0 members.
    I have account member called "Addition". User will enter value for "Addition" in any week say Wk5. I have to calculate
    "Process" (another account member) by using "Addition" and other members for Wk5, Wk6, Wk7 upto no. of weeks which user enters. i.e. if user enters 4 for "Weeks" member, "Process" should be calculated for next 4 weeks from the week where value for "Addition" is entered.
    I am facing problem in moving to next weeks. I have tried in many ways but didnt get solution.
    I tried to store the week member in local variable as :
    [LocalVar1]=@SHIFT(@CURRMBR(Period),1);
    but it stored the value entered in that week but not member name.
    Please help me.
    Srinivas

    Have you tried restarting the RMI service which is probably on the same server as AAS?
    Also was there some type of system migration performed?
    Regards,
    -John

  • Annoying Cache-Full Problems when Launching Business Rules

    Hello,
    We are using Planning 1.1.1.3 with Essbase 11.1.1.3.000.
    I am not sure whether it is suitable place to ask this problem. If this is the wrong place to post, please kindly let me know.
    Our client encountered a lot of data cache full errors recently, but the cache is set as usual and no significant change in BRs discovered.
    To better tune the cache settings and BR launch procedure, I would like to know the answers to below questions:
    1. Is there any garbage collection mechanism related to Essbase cache?
    If we encountered data cache full error, we can only feel confident before next BR execution after restart the application and see the cache return to 0. But I think it stupid because we shouldn't have to manually reset the cache. Is there any official document or explanation about cache release mechanism of Essbase cache?
    2. How big is enough?
    We set the data cache for this application as 4G and MEMSCALINGFACTOR 2, so it should be 8G total data cache assigned. I wondered is there any guideline about how big the cache should be regarding to the dimension size, fix range, calculation function and so on?
    3. Do other operations also use up Essbase cache?
    For example, opening a 5000-row ad-hoc excel form, 100 users submitting data at the same time...
    Please help and thanks in advance for any answers!

    Thank you John,
    We have found that it is the entity dimension that should be responsible to this problem.
    I remember we have encountered this kind of problem before when we aggregate an application with the entity dimension hierarchy mixed with shared and stored instances of the same level 0 members. To put it simple, there are three members under "Entity" dimension member, which represents different view of entity hierarchies of same level 0 members. the first one has stored level 0 entity members while the other two have shared ones. And at that time, our client added another hierarchy with shared level 0 members, but they did not put this tree under "Entity" dimension member directly, but rather put it under the first child of "Entity", which is the one with stored level 0 members.
    It is a little bit confusing to describe the situation only by text. Anyway, at that time, the first hierarchy had both stored and shared instances of the same group of level 0 members. And the data cache is always full when aggregating. and after we moved the forth hierarchy to another tree so under that hierarchy the level 0 members are all shared instances, the aggregation worked flawlessly.
    I wondered why this happened and consider this is related to detailed calculation logic of Essbase. May you shed some light on this topic? Thank you with all my heart!
    Warm Regards,
    John

  • Problem with a Business Rule

    Hi
    I am trying to set an account transformation BR.
    Account A goes to Account B. I set the the same flow. nothing fancy...
    When i have an amount in account B, and if account A is different than 0, then the amount is replicated to the account B. So far it seems normal...
    When I have an amount in account B, and if account A is 0, then the 0 is not replicated to the account B.
    Why is it doing that?
    Nic
    Edited by: Nicolas Argente on Apr 24, 2009 3:24 PM

    Hi Petar!
    Sorry, i forgot, but my version is 5
    And what you are saying is EXACTLY what is happening to me....
    BUT... i found out that
    seperately the 2 logics work ok.
    logic 1 erase an account.
    logic 2 transfert the account to another one (throught a BR).
    seperated they work. But when i put, thought the default logic, include logic 1, then include logic 2 , then It does not bring the amounts with a 0. Only the others!
    I am still working on that...
    Nic

  • How can i expose a stateless session bean with in .ear as web service?

    This is my situation.
    I have an .ear file and in that i have several other .jar files which are
    inter-dependant, lets say
    A.jar
    B.jar
    C.jar files
    and i want to expose only A.jar as
    webservice, how can i do that ?
    Does WLS8.1 provided any way how to do that?
    I Appreciate any suggestions and advices.
    Thanks
    kk

    I used a different method...
    I used servicegen with only a.jar to create the ear.
    I touch-ed my own application.xml to make it newer than the one already in the
    newly created ear.
    I used the ant <ear> task to add b.jar, c.jar, and application.xml to the ear.
    Worked like a charm.
    Mike
    Bruce Stephens <[email protected]> wrote:
    Hello,
    See if Neal's answer here helps solve your problem using servicegen's
    service element "IncludeEJBs" attribute:
    http://newsgroups.bea.com/cgi-bin/dnewsweb?cmd=article&group=weblogic.developer.interest.webservices&item=2932&utag=
    HTHs,
    Bruce
    kk wrote:
    This is my situation.
    I have an .ear file and in that i have several other .jar files whichare
    inter-dependant, lets say
    A.jar
    B.jar
    C.jar files
    and i want to expose only A.jar as
    webservice, how can i do that ?
    Does WLS8.1 provided any way how to do that?
    I Appreciate any suggestions and advices.
    Thanks
    kk

  • Problem with business rule

    Hi all,
    I have a problem with a business rule (BR) deployed as a standalone Descision service.
    the BR consists on a simple decision table wich compare an input (bigInteger) with 50. It returns two facts (as output).
    the two conditions are confugured (i.e. <50 and >=50).
    the Decision service (stateless) is called in a simple BPEL process. in some cases the the assign activity in the bpel process rise this exception :
    <bpelFault><faultType>0</faultType><selectionFailure xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"><part name="summary"><summary>empty variable/expression result. The XPath variable or expression /ns5:callFunctionStatelessDecision/ns5:resultList/ns6:processResponse/ns6:CodeRetour is empty at line 440. An attempt to read or copy data referenced or computed by the XPath expression either had invalid data, according to the XML schema, or did not contain certain optional data. Ensure that the variable or expression result named in the error message is not empty. Enable XML schema validation of related variables to ensure the run-time data is valid. </summary></part></selectionFailure></bpelFault>
    it seems like an output of the business rule used by the assign after the invoke activity is empty.
    But in the input payload for the decision service all elements are not empty. I can't inderstand how the OBR return an empty variable?
    Any help please?

    In the taskflow you should be capable to trace step by step what happens in the execution. Does this give any clue, e.g. why sometimes the assert does not work?
    cu
    Andreas

  • Running Business Rules on Composite Forms

    Hi,
    I'm using Planning v11.1.2, and I am trying to get a business rule to run from a Composite web form. The version and entity are the only prompts in the business rule, and they are shared globally on the component forms. If I put the business rule on the component forms, it doesn't even make an attempt to run on save. If I put it on the composite form, it attempts to run, but fails ("An error occurred while processing this page. Check the log for details."
    Shouldn't business rules be able to run from composite forms? If not, why is the option to put them in there? If so, does anyone have any insight into this problem?
    Thanks,
    Sabrina

    Thanks John, but unfortunately, neither one of those is my issue. The first says I can't have the business rule on the base form if I have it on the composite form. The rule is not on the base form, and it still won't run on the composite form. The second one I don't understand at all. The symptom "Business Rules are not running with composite data forms when the 'Run on Save' option is checked". The cause "The Business Rule is not running when it is run from a base form." Huh? This is a cause? The solution: "You need to attach the Business Rule to the composite form, not just the base form." This would seem to indicate that I have to have the rule on both the base form and the composite form. It doesn't work no matter which way I set it up.
    Furthermore, in testing to see what's going on, I tried taking off the hide prompt option, and the rule does not appear to be taking the entity from the page member on the form (it just displays the last entity chosen).
    Sabrina

  • Problem with Business Rules in OBPM 10.3.1 Enterprise for WebLogic

    We're having a problem with our Business Rules. We've updated two of our business rules (that are used by business rule transitions) in Studio; however, when we publish the updated process, the business rules are not updated. We cannot find anywhere in the Process Admin where to administer the rules to make sure they're overwritten.
    I've double checked, and the updated rule code is in the .project.xpdl, but for whatever reason, the rules are not being updated during the deployment. I'm sure that we've done this many times in the past, but for some reason, now it is not working.
    We're tried variations of the different versioning when we publish, and we've also tried to unpublish all of the older versions of our process, but it does not change the business rules. We can try to unpublish and undeploy, but it seems like we would lose all old instances of that process that are still running if we did that.
    Has anyone ever had this issue, or know if there is a way to effect the business rules via the process admin?

    I see what you're saying, but here's why it works the way you're observing it.
    Once deployed, the 10g business rules are edited by a business user (the owner of the rule). Changes in Studio that a developer makes to a business rule don't override the changes that the business user made.
    To let the business owner edit the rule, add a Global Interactive activity and change its property setting to edit the business rule. Put this activity in the role for the business owner (the person you want to edit the rule).
    Dan

  • Composite Web Forms/Business Rules

    In Planning, I've created a composite web form. Although I've selected the "Use Members on Data Form" box in the business rule properties with in the composite form, when I launch the rule the prompt box doesn't show the division that is represented on the current form, it pre-populates the last division that was used when launching a business rule in a normal web form. This works just fine when I'm in a normal web form, just not a composite. Any ideas of what might be going on? Is there a setting somewhere that I'm missing?

    I would be careful using business rules in composite forms. There are a bit unstable as composite forms are quite buggy. What you can do is try to apply the 9.3.1.1.8 patch release and see if this does not resolve your issues. This patch covers alot of bugs in 9.3.1 (which I assume is your version) including business rules stability with composite forms and substitution variable usage. Hope this helps point you in the right direction.
    best of luck

Maybe you are looking for

  • How to install videos and movies on to i touch

    i am not able to get any video files on to my i touch.it is giving a message that this format cant be played on your i pod.how to install videos and movies on to my i touch

  • Sun Role Manager v5.0.3 performance tuning on Apache Tomcat server

    hello everyone, We currently have SRM v4.1 in production running on Tomcat. This has major performance issues. A single page for app owner certfication takes approx 10 minutes to load. The current version is now being upgraded to 5.0.3 on Tomcat 6. A

  • Batch Import Files

    We have a need to post hundreds of documents to one of our content areas. I dread the thought of having to upload those documents one-by-one. Is there a batch import application that we can use to get all those documents into the content area?

  • CRM_COPY_BADI/Copying Routines

    Hi, I want to copy some custom fields from a source line item to a target line item during business transaction copying. For this, I would like to use the Copy Control BAdI - CRM_COPY_BADI. After having a look, it appeared to me that I will have to d

  • Is this a false positive? 'TR/Crypt.XPACK.Gen [trojan]' detected in 1 of Photoshop CC's files

    I was doing an update of Photoshop CC via Creative Cloud when this popped up: Virus or unwanted program 'TR/Crypt.XPACK.Gen [trojan]' detected in file 'C:\Program Files (x86)\Adobe\Adobe Photoshop CC\RTA08570. I would like to confirm if this is a fal