Problem with "disclosedRowKeys" property of ADF Rich Tree

Hello friends :)
I'm using JDeveloper 11g TP3 with adf rich components.
I followed this Frank Nimphius’ post:
http://thepeninsulasedge.com/frank_nimphius/2007/12/19/adf-faces-rc-initially-expanding-all-nodes-in-a-tree-or-tree-table/
And I've done the same in my application. The problem is that it not shows all nodes. I don't know the reason, but in my case it only shows the two first nodes. But when I close and disclose the root node, then it shows all nodes.
What do you think?
Thanks in advance,
Westh

I also meet this problem, then someone told me that I should use "RowKeySetTreeImpl" replace with "RowKeySetImpl", so the tree can expand all levels of nodes.
Hart

Similar Messages

  • Problem with "find" mode in adf/swing application

    Hi all,
    I'm working on ADF Swing application which uses MS SQL Server 2005 (JDeveloper 10g 10.1.3)
    I think that my issue might be well-known…sorry if it has been already discussed somewhere else…
    I have a problem with the “find” mode for a detail panel in a master-detail form…(To make it clear the “find” mode is switched on when clicking on the special button on a navigation panel).
    So this mode works well in a master panel, but it demonstrates strange behavior on a detail panel, i.e. it takes me two attempts to find the necessary child object and it doesn’t switch back in a simple way from this mode to the normal mode….say if we are in the department 10 (Dept is a master form) we can’t simply find KING employee (Emp is a detail form)…is there any workaround for this?
    Thanks in advance. Alex.

    Hi Frank, please look this issue

  • Problem with links in deployed ADF application to Weblogic Server 11g

    Hi everyone !
    I have a query here, firstly, I have created an ADF application using Jdeveloper 11g and have successfully deployed (EAR file) onto the weblogic server.
    However, after testing out the application, the linking within the application does not seem to work. Whenever I click on a link or button, the page refreshes but the result is not displayed.
    What could have cause the problem?
    Thanks
    Gavin

    Are the ADF runtime libraries installed into the WebLogic server?

  • Problem with the processing of my DOM tree

    hello,
    here a small part of the XML document that i have to process....
    <questestinterop>
    *<item title="Capital of France" ident="I01" maxattempts="6">
    <qticomment>
    This Item is the first example to be used in the QTI XML Binding Base Document.
    </qticomment>
    <itemmetadata/>
    **<presentation label="Resp001">
    <response_lid ident="LID01">
    <material>
    <mattext>What is the Capital of France ?</mattext>
    </material>
    <render_choice shuffle="Yes">
    <response_label ident="LID01_A">
    <material>
    <mattext>London</mattext>
    </material>
    </response_label>
    I can access to the attribute of the "item" tag (marked with * symbol),by creating a node as follow: (item is a childnode of questestinterop, my root tag)
    Node root = document.getLastChild();
                   Node node = root.getFirstChild();
                   while (!node.getNodeName().equals("item")){                    
                        node =node.getNextSibling();
    then i process on this node to get the attributes of my "item" tag...
    but after i want to access to the "presentation" (marked with ** symbol)tag that is a ChildNode of my previous node by using
    node = node.getFirstChild();
    (in fact as I do in the parentNode)
    but then my node type is TEXT and I dont understand. then i m not able to process it as the previous one. I was expecting it to be a DOCUMENT_NODE!!
    I want to be able to go deeper in the tree because I need to extract data from there.     
    (I was thinking of going deeper by taking each time i needed it the childnode of my existing node then do a while loop to access to the needed tag.)
    Maybe i am taking the problem on a wrong way.
    Can someone give me some hints or tips, i m really stuck.          
    thank you
    francois

    i ve found my mistake,
    dont crack ur head for me
    merci
    francois

  • Problem with child objects created in custom tree data descriptor

    I have a set of AS objects that must be represented in a
    tree. Some of them are branches with various numbers of children
    while some are leaves. The branches can have additional branch or
    leaf children. One type of node in particular, let's call them
    Elephant objects, is causing me grief. Elephants contain one array
    of Chicken objects and a second array of Monkey objects. I must
    represent the set of Chickens and Monkeys as sub-folders of their
    parent Elephant object rather than listing all of the Chickens and
    Monkeys as individual children of the Elephant. I have been trying
    to solve this problem by creating new children objects on the fly
    from within the getChildren function of an ITreeDataDescriptor
    implementer class, which I've attached to this message.
    The problem I encountered is that the Chicken and Monkey
    branch/folder objects that I create on the fly and add to the tree
    will not open, though they appear in the tree as expected. Is
    creating objects and adding them to a tree in the getChildren
    function bad? I hope there's something obvious that I'm doing
    wrong.

    I have a set of AS objects that must be represented in a
    tree. Some of them are branches with various numbers of children
    while some are leaves. The branches can have additional branch or
    leaf children. One type of node in particular, let's call them
    Elephant objects, is causing me grief. Elephants contain one array
    of Chicken objects and a second array of Monkey objects. I must
    represent the set of Chickens and Monkeys as sub-folders of their
    parent Elephant object rather than listing all of the Chickens and
    Monkeys as individual children of the Elephant. I have been trying
    to solve this problem by creating new children objects on the fly
    from within the getChildren function of an ITreeDataDescriptor
    implementer class, which I've attached to this message.
    The problem I encountered is that the Chicken and Monkey
    branch/folder objects that I create on the fly and add to the tree
    will not open, though they appear in the tree as expected. Is
    creating objects and adding them to a tree in the getChildren
    function bad? I hope there's something obvious that I'm doing
    wrong.

  • Problem with isAttributeUpdateable in deployed ADF appliction on AS 10.1.2

    I am trying to track down the source of an error that only appears when I deploy my ADF application to my Oracle Application server. The problem does not occur on the built in OC4J. I have already tried the ADF run time installer prior to deploying my app to ensure that my server had the proper libraries, with no luck still. I posted a similar question earlier, and I thank you all for the help already.
    My app uses a jazn security with an xml file holding users/permissions etc... Again, works fine on built in OC4J. But some reason on, when deployed, I think there may be a role, or permissions problem? Also, I've made certain that built in OC4J and my deployed app have the same jazn file. The application throws a nullPointerException with this code:
    Row cRow = vo.createRow();
    for(int j = 0; j < cRow.getAttributeCount(); j++)
    System.out.println(j + " = " + j + " " + cRow.getStructureDef().getAttributeDef(j).getName()+ " " + cRow.isAttributeUpdateable(j));
    Here is the error from my server logs:
    06/04/28 11:48:15 java.lang.NullPointerException
    06/04/28 11:48:15 at oracle.jbo.server.security.jazn.JboJAZNUserManager.getRoles(JboJAZNUserManager.java:88)
    06/04/28 11:48:15 at oracle.jbo.server.security.JboPolicyManager.getEntityPermission(JboPolicyManager.java:136)
    06/04/28 11:48:15 at oracle.jbo.server.security.JboPolicyManager.getEntityAttributesPermission(JboPolicyManager.java:201)
    06/04/28 11:48:15 at oracle.jbo.server.security.JboPolicyManager.getEntityAttributesPermission(JboPolicyManager.java:288)
    06/04/28 11:48:15 at oracle.jbo.server.ApplicationModuleImpl.getEntityAttributesPermission(ApplicationModuleImpl.java:7240)
    06/04/28 11:48:15 at oracle.jbo.server.ApplicationModuleImpl.getEntityAttributePermission(ApplicationModuleImpl.java:7248)
    06/04/28 11:48:15 at oracle.jbo.server.EntityImpl.hasUpdatePrivilege(EntityImpl.java:7129)
    06/04/28 11:48:15 at oracle.jbo.server.EntityImpl.hasUpdatePrivilege(EntityImpl.java:7111)
    06/04/28 11:48:15 at oracle.jbo.server.ViewRowStorage.isAttributeUpdateable(ViewRowStorage.java:1590)
    06/04/28 11:48:15 at oracle.jbo.server.ViewRowImpl.isAttributeUpdateable(ViewRowImpl.java:2095)
    06/04/28 11:48:15 at gov.fda.cber.pts.controller.strutsactions.PtsEntrancePageAction.prepareModel(PtsEntrancePageAction.java:100)
    06/04/28 11:48:15 at oracle.adf.controller.struts.actions.DataAction.prepareModel(DataAction.java:486)
    06/04/28 11:48:15 at oracle.adf.controller.lifecycle.PageLifecycle.handleLifecycle(PageLifecycle.java:105)
    06/04/28 11:48:15 at oracle.adf.controller.struts.actions.StrutsUixLifecycle.handleLifecycle(StrutsUixLifecycle.java:70)
    06/04/28 11:48:15 at oracle.adf.controller.struts.actions.DataAction.handleLifecycle(DataAction.java:222)
    06/04/28 11:48:15 at oracle.adf.controller.struts.actions.DataAction.execute(DataAction.java:153)
    06/04/28 11:48:15 at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    06/04/28 11:48:15 at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    06/04/28 11:48:15 at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    06/04/28 11:48:15 at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    06/04/28 11:48:15 at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    06/04/28 11:48:15 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    06/04/28 11:48:15 at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    06/04/28 11:48:15 at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:239)
    06/04/28 11:48:15 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:649)
    06/04/28 11:48:15 at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
    06/04/28 11:48:15 at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
    06/04/28 11:48:15 at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)
    06/04/28 11:48:15 at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)
    06/04/28 11:48:15 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    06/04/28 11:48:15 at java.lang.Thread.run(Thread.java:534)
    06/04/28 11:48:15 java.lang.NullPointerException
    06/04/28 11:48:15 at oracle.jbo.server.security.jazn.JboJAZNUserManager.getRoles(JboJAZNUserManager.java:88)
    06/04/28 11:48:15 at oracle.jbo.server.security.JboPolicyManager.getEntityAttributesPermission(JboPolicyManager.java:210)
    06/04/28 11:48:15 at oracle.jbo.server.security.JboPolicyManager.getEntityAttributesPermission(JboPolicyManager.java:288)
    06/04/28 11:48:15 at oracle.jbo.server.ApplicationModuleImpl.getEntityAttributesPermission(ApplicationModuleImpl.java:7240)
    06/04/28 11:48:15 at oracle.jbo.server.ApplicationModuleImpl.getEntityAttributePermission(ApplicationModuleImpl.java:7248)
    06/04/28 11:48:15 at oracle.jbo.server.EntityImpl.hasUpdatePrivilege(EntityImpl.java:7129)
    06/04/28 11:48:15 at oracle.jbo.server.EntityImpl.hasUpdatePrivilege(EntityImpl.java:7111)
    06/04/28 11:48:15 at oracle.jbo.server.ViewRowStorage.isAttributeUpdateable(ViewRowStorage.java:1590)
    06/04/28 11:48:15 at oracle.jbo.server.ViewRowImpl.isAttributeUpdateable(ViewRowImpl.java:2095)
    06/04/28 11:48:15 at gov.fda.cber.pts.controller.strutsactions.PtsEntrancePageAction.prepareModel(PtsEntrancePageAction.java:100)
    06/04/28 11:48:15 at oracle.adf.controller.struts.actions.DataAction.prepareModel(DataAction.java:486)
    06/04/28 11:48:15 at oracle.adf.controller.lifecycle.PageLifecycle.handleLifecycle(PageLifecycle.java:105)
    06/04/28 11:48:15 at oracle.adf.controller.struts.actions.StrutsUixLifecycle.handleLifecycle(StrutsUixLifecycle.java:70)
    06/04/28 11:48:15 at oracle.adf.controller.struts.actions.DataAction.handleLifecycle(DataAction.java:222)
    06/04/28 11:48:15 at oracle.adf.controller.struts.actions.DataAction.execute(DataAction.java:153)
    06/04/28 11:48:15 at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    06/04/28 11:48:15 at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    06/04/28 11:48:15 at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    06/04/28 11:48:15 at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    06/04/28 11:48:15 at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    06/04/28 11:48:15 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    06/04/28 11:48:15 at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    06/04/28 11:48:15 at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:239)
    06/04/28 11:48:15 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:649)
    06/04/28 11:48:15 at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
    06/04/28 11:48:15 at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
    06/04/28 11:48:15 at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)
    06/04/28 11:48:15 at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)
    06/04/28 11:48:15 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    06/04/28 11:48:15 at java.lang.Thread.run(Thread.java:534)
    Also, after the error occurs, the application keeps on moving as if nothing were wrong. It does not; however, properly pick up whether or not the attributes are updateable. No matter what role I am using, it returns that all attributes are updateable. With built in OC4J, it picks up the permissions properly. I'm not sure if it matters, but my session does pick up the correct role. Session.isUserInRole() works perfectly every time.
    Anyway, thanks again, and sorry for posting a similar question twice. I had just narrowed things down, and hoped maybe someone may have an idea now. Thanks!
    John

    Have the same Problem. We have some 10.1.2 applications running on the 10.1.2 AS and i want to keep away from site effects when deploying a new 10.1.3 application (ADF-FACES). So it would be fine to deploy the new libraries only with the new application.
    I try to put the necessary libraries in the /web-inf/lib/ but i have still errors on deployment. The libraries seems not to be found /used.
    Are there any hints how to do this?
    Thanks too.

  • Problem with Rendered property using SPEL

    I have a page with three different graphs. This page is associated with a AM which has a PVO object. The PVO has three transient boolean variables and I set all except one to false by calling initProperties in the processRequest method.
    I have tied this three different boolean variables to 'Rendered' property of three items of type graph in the page.
    I am using the ${oa.<instancePVO1>.<Attribute>} syntax in the Rendered property.
    Despite this, I see all three graphs rendered when I launch the page. But I can see that only one of three attributes for the PVO is TRUE.
    Can anyone think of some aspect that I missed?
    Your help will be appreciated.
    Thank you,
    Arun

    Hi Harinath and Gowtam,
    Thank you for the reply.
    I am setting the attributes in PVO properly to false. I actually use the variables to three different queries on which the graphs are based on and they fire the right ones. Only the problem is with the rendered property using the SPEL.
    Also, I made sure that there is only one row in the PVO and it is initialized properly with the Primary key and I am using the PVO.first() to retrieve it.
    It would helpful if you could throw some light on how to debug the SPEL...I tried System.out.println-ing the SPEL expression ${oa.PVOinstance.attribute} but I get errors...
    Thank you,
    Arun

  • Problem with Pre-Popup-Menu in Hierarchical Tree

    Hi,
    In Forms 10g I have made an application with an Hierarchical Tree. All works well, except the use of the Pre-Popup-Menu trigger.
    In that trigger when I read the values of Node_Label and Node_Value I get the values of the previous selected node, not the values of the node on which I issue the right mouse click. So, it seems that by clicking the node I need is not selected.
    Does anyone have any clues to solve this problem?
    Thanks in advance.

    Right clicking does not change the current selection. The tree has no way to report what node was right clicked. Only work around is to left click the node you wish then right click it.
    --pat                                                                                                                                                                                                                                                                                                                                                                                                       

  • Problem with css reload (custom adf skin)

    I have defined a custom skin but changes in the css does not immediately show in the page. I have not figured out what triggers a rreload of the css. When I delete the generated css from the embedded OC4J a new one i immediately created but with the old values.

    Hello,
    This depends on the version of ADF your using.
    If its 10G, as far as I know, changes will only get picked up after a redeploy and even then you need to force the browser to re download the css (using a force refresh, shift + F5 or the refresh key normally)
    If its 11G, the redeploy should not be needed as long as you force a browser refresh.
    As long as the previously mentioned context parameter is present:
      <context-param>
        <description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
        <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
        <param-value>true</param-value>
      </context-param>-Anton

  • Problem with plain text trailers in rich text email?

    I'm a member of a mail group which adds subscribe and unsubscribe trailers added to the emails. When reading these emails with Mail 2.1.1, text emails appear fine. But sometimes html emails that have the text trailer have problems.
    The text trailer (which is within a pre html tag) often has and equal sign "=" and "return" which brings the links on two lines. The placement of the extra characters is random... The html of the problem emails look fine when downloaded as a file and viewed with a browser (and the code is fine too)
    I see this problem ONLY from group html emails that have a plain text trailer.
    Comments or thoughts?

    -

  • Problem with numeric columns when ADF table exported to Excel

    Hi,
    We have a ADF table on a page which can be exported to excel spreadsheet using the <Af:ExportCollectionActionListener>. The adf table is within panel collection.
    There are many numeric columns in this table and there is <af:convertnumber> used on these columns. No other properties are changed on the <af:convertnumber> tag, everything is default. And no formatting is applied on the view object attributes as well. When a user from US is exporting the table to excel everything works well no issues. But a Netherlands or French user exports the excel, the numeric values which have decimal point are shown as left aligned and the whole numbers in the same column are right aligned. As a result when the user is trying to sum the entire column only the right aligned numbers are getting added.
    I am not sure what is the issue here ?
    HAs someone seen this scenario before ?
    Am I missing anything here - any property setting ?
    The numbers are shown like this in the excel exported from table.
    4,077.78
    3,555,34.12
                        1,234
                        19,219
    3,4445,33.22
    Jdev - 11.1.2.3
    Thanks

    Add a decimal to the whole number columns to make all columns left-aligned. Do all left-aligned columns get added?
    4,077.78
    3,555,34.12
    1,234.00
    19,219.00
    3,4445,33.22

  • Problem with Spry Property Inspector in DW CS5

    Hi - I saw a similar post to my issue but with no replies or resolution.  This issue just started happening out of the blue.  After inserting a spry menu bar into a page, I will click on the blue tab above the menu bar widget to show the property inspector for the menu bar.  When the property inspector opens, all of the fields and settings are crammed to the left of the Property Inspector window and it is impossible to make any modifications to the menu bar without going into the code.  I hope that someone can provide a solution or suggestion.

    Am I over reaching on this?
    Transitions are for slideshows.  What you're describing sounds more like a Flash site. 
    Maybe a modal window would work  for you.
    Look at Fancy Box
    Works well with text, images, iframes, and just about anything else you throw at it.
    http://fancybox.net/
    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 WindowsStyle property - upgrade foms 5.0 to 10g

    Hello,
    I am upgrading an Oracle forms 5.0 application to Oracle forms 10g but my WindowsStyle property, that in 5.0 was Document, goes to Dialog in 10g.
    I performed the upgrade in 2 steps 5.0-&gt;6i-&gt;10g using the command line (batch file).
    Does anyone know why this happens and if there is a solution to solve this without having to open and compile all forms in the Developer?
    Thank you all in advance,
    Carla Almeida

    Discovered problem.
    /etc/services on 5.4 has only 3 entries:
    unieng 5730/tcp # CS&T Engine Daemon
    unisnc 5731/tcp # CS&T Sync. Net. Con. Daemon
    unidas 5732/tcp # LDAP Access Server Daemon
    on 9.0.4 there should be an additional entry for the Calendar Server Manager:
    unicsm 5734/tcp # Oracle CSM Deamon
    After adding that entry and stopiing and starting calendar useres were able to log in as users.

  • Problems with tutorial: "Creating a Web Dynpro Tree"

    Hi!
    I'm a rookie and therefore I'm practicing on compleating some tutorials like "Creating a Web Dynpro Tree" (https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0ec6622-8da5-2a10-349b-868b6a553efa)
    I did just as the tutorial told me to (I think) but still I get a java.lang.NullPointerException when I deploy and run my application.
    In the bold line is where it is something wrong:
    public static void wdDoModifyView(IPrivateTreeView wdThis, IPrivateTreeView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
        //@@begin wdDoModifyView
           if (firstTime) {
                IWDTreeNodeType treeNode = (IWDTreeNodeType) view.getElement("TreeNodeType");
                /* parameter mapping from parameter "path" to
    parameter "selectedElement"
                treeNode._mappingOfOnAction()._addSourceMapping("path", "selectedElement");
                /* parameter mapping from parameter "path" to
    parameter "element".
                treeNode._mappingOfOnLoadChildren()._addSourceMapping("path","element");
        //@@end
    What I don't understand is what the function/meaning of the parameter path is. The parameters selectedElement and element I do recognize and have written. And I don't understand why there is a difference between the two underscored line of code (see above) even though the comments claim that it does the same kind of mapping.
    Best regards
    /Johan

    I tried to get "addSourceMapping()." underscored so people would better understand what I was referring to but it didn't work and that's why it looked weired.
    Thanks for your help Armin, now it works fine.
    It was as you said.
    if (firstTime) {
    IWDTreeNodeType treeNode = (IWDTreeNodeType) view.getElement("TreeNodeType");
    When I changed "TreeNodeType" to it's real ID, "TheNode" I didn't get a nullPointerException. I think it must be wrong in the tutorial because I followed the instructions which said to name it "TheNode" but then the author mus have forgot to change it from the default ID ("TreeNodeType").
    Best Regards!
    /Johan

  • Problem with completionPersistPolicy property in deployment descriptor

    Hello Everyone,
    i am working on SOA 11g.
    I read about setting various properties inside deployments descriptor for a BPEL process from the below link
    http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10224/bp_app_deploydesc.htm
    It states that if we set the value for completionPersistPolicy as "off" then no instance of this a process is saved but i can still see an instance created for this process in the EM.
    I thought it might be removed after the process gets completed but even after process reached completed state it was not removed and its entry was still visible in the EM.
    Basically i was just trying to figure out is ther a way to have control on dehydration in SOA 11g and after searching the net all that i understood was that one can control it by adding the below entries in composite.xml:
    *<property name="bpel.config.inMemoryOptimization">false</property>*
    *<property name="bpel.config.completionPersistPolicy">faulted</property>*
    I just wanted to know where am i goin wrong and is their other ways to control dehydration in SOA 11g that i am not introduced to.
    Any suggestion would be of great help!!!!
    Regards
    Ajay

    This property configures how the instance data is saved. It can only be set at the BPEL component level. The completionPersistPolicy property can only be used when inMemoryOptimization is set to be True (transient processes).
    Also, inMemoryOptimization property can only be set to True for transient processes or processes that do not contain any dehydration points such as receive, wait, onMessage and onAlarm activities.
    Thanks,
    Ashu

Maybe you are looking for