Instance manager and subforms

I'm using a JS statement that I've found to dynamically delete subform rows when the user clicks a delete button:
Subform.Row1.instanceManager.removeInstance(this.parent.index);
This works if my delete button appears in Row1, like this:
Subform
Row1
Button
Field1
Field2
However, I'd like to wrap the button in a subform so that I can hide the button on print. My table looks like this:
Subform
Row1
SubformA
Button
SubformB
Field1
Field2
Row1 is a flowed subform so that when I hide SubformA I don't get any empty space.
The JS statement isn't working. With my ignorant eyes it appears that instead of this.parent.index I need something like this.grandparent.index. Is something like this do-able? Any alternative ideas?

Thank you rlunka! That did the trick. And thank you for your quick reply Paul. I didn't tell you that I was trying to get fancy by using a hidden button object and a graphic. To get the graphic positioned on top of the button, I placed them within a positioned subform.
So my table really looks like this:
tTravelers
Row1
sTravelers (flowed subform)
untitled subform (positioned subform)
removeButton
image
untitled subform
Field1
Field2
FooterRow
untitled subform
addButton
image
The click event on the removeButton object looks like this:
tTravelers.Row1.instanceManager.removeInstance(this.parent.parent.parent.index);
sTravelers is a flowed subform, so when I hide the removeButton untitled subform (which takes up the entire row width), I don't get any blank space. Sorry if this is too much info. Now I just need to test the heck out of it.

Similar Messages

  • Problems with instance manager and bound items

    I'm having a problem with bound fields.
    I have made a form that uses the instance manager so i can add several products,
    i'm using a button to export all this to a XML file  via XML schema but for some reason when i preview the form
    i can add new instances without problems and the original instance works ok but the second instance and all instances after that changes when anything is changed in any of them, they are in other words linked.
    Removing the xml schema made it work like it's supposed to but how do i get it to work with the xml schema?

    It sounds like your XML schema may not be properly setup to reflect the unlimited number of instances.
    <xs:element name="products">
         <xs:complexType>
              <xs:sequence>
                   <xs:element name="product" maxOccurs="unbounded">
                        <xs:complexType>
                             <xs:sequence>
                                  <xs:element name="product">
                                       <xs:complexType>
                                            <xs:sequence>
                                                 <xs:element name="productName" type="xs:string"/>
                                                 <xs:element name="useCase" type="xs:string"/>
                                            </xs:sequence>
                                       </xs:complexType>
                                  </xs:element>
                             </xs:sequence>
                        </xs:complexType>
                   </xs:element>
              </xs:sequence>
         </xs:complexType>
    </xs:element>
    The element you wish to repeat should have a "maxOccurs" property that is greater than 1.  You should also make sure that your subform is properly linked to this element.

  • Instance Manager add subform in between 2 subforms

    Hi,
    i am having 3 subforms in a page.
    1. My first subform is "untitle subform".  - contain button "add table" in a new subform.
    2. Second is "Subform[0]" and  - contain a table
    3. Third is subform[1]. - contain table
    Problem : when i press the "Add table" button , the new subform (containing the new table) , create in between  Subform[0]" and Subform[1]" ,
    instead after the subform[2].
    Scripting (java script)
    var
    sSubformSOM = "xfa.form.VariableList.page2.form";
    var
    oSubform = xfa.resolveNode(sSubformSOM);
    var
    sParentSOM = oSubform.parent.somExpression;
    var
    sManagerSOM = sParentSOM + "._" + oSubform.name;
    var
    oManager = xfa.resolveNode(sManagerSOM);
    if
    ((nMaxCount == "-1") || (nSubCount < nMaxCount)) { 
    var oNewInstance = oManager.addInstance(1); 
    Pls suggest a solution for this.

    Hi,
    As you know the binding is set in the Object > Bindling palette. You can't change the binding using script at runtime, therefore if objects have a binding Name/Normal or Global, then they will participate in the XML data processing.
    I don't think you can change this in LC Designer/Acrobat. You might be able to process the XML file once you have received it.
    Good luck,
    Niall

  • Looping thru instance manager and checking radio button selected

    I need to loop thru my instances and toggle visible/hidden if a particular radio button in each instance is selected.
    My code right now does not work but I feel I am on the right track (minus the else statement it will need to toggle on/off).
    Can anyone help? thanks in advance!
    var rowCount = BugGroup_f.instanceManager.count;
    for (i=0; i<rowCount; i++) {
    var str = xfa.resolveNode("BugGroup_f.detail3.bugInfo.BugItem.status.RadioButtonList[" + i + "]").rawValue;
        if (str.indexOf("Fixed") > -1) {
        xfa.resolveNode("BugGroup_f["+rowCount+"]").presence = "hidden"

    So we've got a set of Rows, each with a subitem called RadioToggle, and you want to go through and set them all, then click a separate button and hide the ones with "on" radio buttons?
    function ToggleRows(reset){
         var Rows = Form.subform....BugGroup_f.all;
         var curRow;
         for (var i=0; i<Rows.length; i++){
              curRow = Rows.item(i);
              if ((curRow.RadioButton.rawValue == "WhatevermeansHidden") && !reset){
                   curRow.presense = "hidden";}
              else{
                   curRow.presense = "visible";}
    ^ in a script object, and put
    scriptObjectName.ToggleRows(reset);
    in the click event of your button, and you should be golden.
    If you do want them to hide the moment you click the toggle, you could put this, right?
    if (xfa.event.newText == "whatevermeansoff"){
         parent....presense = "hidden";}
    The .all method seems like a much easier way to handle collections of objects, and specificaly collections of instances. It also means you can do relative referencing, i.e. to create a function that will operate on all the rows of a table, without knowing which table it is operating on, so a button in each table can pass it's parent table to the function.
    var GroupVariable = Object.all
    for(var i=0; i < GroupVariable.length; i++)
    EDIT:
    add a reset value, and pass it in to your function like above (added).
    make a separate button, or control, that will call the function with reset = 1.

  • Count instances of additional subforms using instance manager

    I am familiar with using the following code in the calculate event in tables when the instance manager is used to add rows:
    this.rawValue = this.parent.index+1;
    However, I have a simple form that due to the need to expand the text field, I have used used a subform rather than table. While the instance manager works correctly, the number remains at one for each added instance.
    A link to the form is here:
    Dropbox - SMP Comments Form.pdf
    Any help would be appreciated.

    Hi,
    Using .parent only gets you to the StaticPortion object, you need to go one further up, so either use parent.parent or CommentSubform (which is the one that repeats).
    If you change your calculate event code to the following you can remove the layout:ready code.
    var count = _CommentSubform.count
    this.rawValue = CommentSubform.index+1;
    Regards
    Bruce

  • Using the instance manager to control subforms at run time

    Hi,everybody.
    I encountered a question when I put the code "subFormName.instanceManager.addInstance(1);"
    into the subForm's initialize event to dynamic create a new subForm(it's a XDP document).It create 3 new subForms below the original subForm,but when I put the same code into a button's click event or save the document as "Acrobat 7 (static) PDF Form" format,it's all right.what's wrong with it?
    I need your help.
    Best regards.

    There are some restrictions concerning what one can do in each event. I imagine that you can't add instances into a subforms initialize event. If you need three more instances to show, set the minimum on the Object Binding tab to four.

  • Add/Remove instance manager issues

    My add instance button is working as intended.
    The remove instance button is working, but not as I would like it to. The instance it removes is not necessarily the last instance added, as I would like. When "clicked" it removes the second instance listed. This is a problem when you add 5 or so instances, and need to remove the last one, and end up having to remove all of them because removing the #2 instance just messed up the order of instances.
    If this is not making sense I can show you what I'm referring to by uploading/sending interested parties the form.
    Here is the "click" event javascript code. I adopted the code from the remove instance manager example, maybe I did not convert it correctly to my form. Not sure why it deletes from the first instance down, instead of last instance up. Any help is appreciated.
    var nNumSub = 0;
    var nSubLength = Subform1.nodes.length;
    for (var nCount = 0; nCount < nSubLength; nCount ++)  {
         if (Subform1.nodes.item(nCount).className == "subform"  {
              nNumSub = nNumSub + 1;
    nNumSub = nNumSub - 1;
    if (nNumSub < 1)  {
        xfa.host.messageBox("The minimum allowable number of subforms is 1. You cannot remove any more subforms.", "Warning", 3);
    else {
         Subform1.Subform2.SubformImpression.instanceManager.removeInstance(nNumSub);
    Thank you,
    B

    Paul,
    So I want to do the same thing, but my instance manager set-up is much simpler:
    form1.QuickNoteGathering.Data.Button1::click - (JavaScript, client)
    Data.Info.instanceManager.addInstance(1);
    So what code would I use to have a button that removes the last instance added?
    Also, I want the instances to continue on to several pages if needed (i.e.: my outlay is just a small sample and one can add as many additional information layers as they need). But it all goes awray as it comes to the buttom of the first page. So I can I assure that as you click the add additional info, it will persist to as many pages as needed?
    Thanks. I can send you the form if you need me too, since there is no upload anymore to this forum.
    thanks
    Shai

  • Resolve Nodes - For Loop - Instance Manager Please Help

    Hello,
    I made a table in lifecycle designer that uses the instance manager to add rows.
    I want to write code that will loop through each of the instances and perform a comparison.  I would like the code to examine the index field.  If the index field = 2,  then return the value of the num amount field.
    This is what I have tried so far and it does not work. 
    var
     var
    var
    oFields = xfa.resolveNodes("Subform1[*].index1");
    var     
    nNodesLength = oFields.length;
    for     (var nNodeCount = 0; nNodeCount < nNodesLength; nNodeCount++)
      if (oFields.item(nNodeCount).rawValue ==2)     {
         form1.#subform[2].Table5.Row5.NumericField1.rawValue
         = form1.Page1.Subform1.Capital1.Capital1.detail.numAmount.rawValue;}
    break;    

    Here is a more lengthy definition of my problem.   I hope someone can help. 
    1.     I have a table that will allow the user to add rows when they click the plus button.  Here is the code
    ----- form1.Page1.Table7.#subformSet[0].#subformSet[1].detailHeader2.Button2::click: - (JavaScript, client)
    _detail.addInstance(this.parent.index);
    //Invoke the recalculate method to include the field values from the added row in calculations.
    xfa.form.recalculate(1);
    2.     The table also has a button to delete rows.   Here is the code
    ----- form1.Page1.Table7.#subformSet[0].detail.Button2::click: - (JavaScript, client) --------------
    // Invoke the Instance Manager to remove the current instance of the detail subform.
    _detail.removeInstance(this.parent.index);
    // Invoke the recalculate method to update the form calculations.
    xfa.form.recalculate(1);
    3.     The table has a drop down list named txtPartNum and that allows you make a selection.  Once you have made the selection a script populates other fields in the same row. The Drop Down list contains this code:
    ----- form1.Page1.Table7.#subformSet[0].detail.txtPartNum::initialize: - (JavaScript, client) ------
    // Populate the part number Drop-down List.
    partNoScript.populatePartNo(this);
    ----- form1.Page1.Table7.#subformSet[0].detail.txtPartNum::change: - (JavaScript, client) ----------
    // Populate the description and the unit price when we change the part number.
    partNoScript.getDesc(xfa.event.newText, txtDescription, numUnitPrice, index1);
    4.     The following script populates the following fields:
    txtPartNum,
    txtDescription,
    numUnitPrice,
    index1
    ----- form1.#subform[2].#variables[0].partNoScript::partNoScript - (JavaScript, client) ------------
    // This script object controls the interaction between the part number, description and unit price fields.
    // When you fill the partNo, partDesc and partPrice arrays, make sure they have the same number of array indices in
    // each array i.e. for every part number, there should be a matching description and price.
    // Array of part numbers.
    // This script object controls the interaction between the part number, description and unit price fields.
    // When you fill the partNo, partDesc and partPrice arrays, make sure they have the same number of array indices in
    // each array i.e. for every part number, there should be a matching description and price.
    // Array of part numbers.
                         var partNo = new Array(" ",
                                                                    "Company Labor - Regular Hours",
                                                                    "Company Labor - Overtime Hours",
                                                                    "Company Engineering - Regular",
                                                                    "Company Engineering - Overtime",
                                                                    "Company Burden",
                                                                    "Subcontract Labor",
                                                                    "Subcontract Engineering",
                                                                    "Subcontract Material",
                                                                    "Subcontract Equipment",
                                                                    "Subcontract Labor & Material Bid",
                                                                    "Purchased Materials",
                                                                    "Materials from Inventory",
                                                                    "Transportation Equipment",
                                                                    "Miscellaneous Tools Shope and Garage",
                                                                    "Construction Equipment",
                                                                    "Rental Equipment",
                                                                    "Permits",
                                                                    "Legal Fees",
                                                                    "Other Miscellaneous");
    // Array of part descriptions.
    var partDesc = new Array(" ",
                                                                    "1221.9922",
                                                                    "1222.9922",
                                                                    "1221.9922",
                                                                    "1222.9922",
                                                                    "1221.9922",
                                                                    "1232.9933",
                                                                    "1232.9933",
                                                                    "1232.9933",
                                                                    "1232.9933",

  • Please help with Instance Manager

    Hello,
    I created a button that will show/hide a subform. The issue is I need multiple buttons like this. I thought changing the name of the subform in this script would allow me to use another button for a different subform. For instance, Instead of using the word Alabama I could replace it with Alaska and it would show/hide that subform. Could having multiple pages in a subform affect its functionality? Please Help!
    // Invoke the Instance Manager to add and remove the alabama subform.
    if (fAlabama.value == "0") { // fAlabama is a document variable used as a flag.
    // fAlabama = 1 when the alabama subform is displayed.
    _alabama.setInstances(1); // Add the comments subform.
    this.resolveNode("caption.value.#text").value = "Clear Alabama"; // Change the button's caption.
    fAlabama.value = "1"; // Set the flag value.
    else {
    _alabama.setInstances(0); // Remove the alabama subform.
    this.resolveNode("caption.value.#text").value = "Add Alabama"; // Change the button's caption.
    fAlabama.value = "0"; // Reset the flag value.
    Thanks,
    Venus

    When you say you are not in standalone mode, I assume you are connecting to an Oracle Management Server which is running somewhere in your network. You need to discover your node. To do this you must start the intelligent agent on the server where you have your database. Then from the OEM console select navigator from the menu bar, and then discover nodes. Next enter the name of your server. OEM will attempt to contact the intelligent agent on that server in order to get the database information.

  • Crystal Report 10 - Instance Manager - Report Logs

    Crystal Report 10.
    From the Instance Manager Page we can have the Logs of all the reports executed from each user.
    I can see some options availabe to filter logs [according to users and status].
    Is there any configuration page or any other filteration methods available(Eg: date wise) for this page?
    Option to order the log entries?
    Also from where the instance manager pulling this log details and displaying in this fashion?
    Is there any other dictionaries or flat files exists to capture this information other than from instance manager?
    Please help...
    Thanks
    Joseph Panakkal

    Please re-post if this is still an issue to the Business Objects Forum or if you have a valid support contract create a case on line. If not then you may purchase a case and have a dedicated support engineer work with you directly

  • 10.1.3.3 Error while setting instance keystore and certificates in em

    I receive the following exception when trying to set the instance keystore and certifcates in enterprise manager (em). I was wondering if anyone can help me understand the cause for this exception.
    Thank you in advance
    ===============================================
    An error has occurred.
    RuntimeException thrown by the invoke method of the Dynamic MBean
    RuntimeException thrown by the invoke method of the Dynamic MBean
    Error setting attribute: stagedConfig for: oc4j:J2EEServer=standalone,handler=security,j2eeType=WSMHandlerGlobalConfig
    Error setting attribute: stagedConfig for: oc4j:J2EEServer=standalone,handler=security,j2eeType=WSMHandlerGlobalConfig
    Hide Additional Trace Information
    oracle.oc4j.admin.jmx.shared.exceptions.JMXRuntimeException: RuntimeException thrown by the invoke method of the Dynamic MBean at oracle.oc4j.admin.jmx.distributed.SimpleInstanceMBeanServerDelegate.setAttribute(SimpleInstanceMBeanServerDelegate.java:782) at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.setAttribute(LocalizationFilterMBeanServer.java:528) at oracle.sysman.ias.studio.jmx.spi.JMXConnectorImpl.setAttribute(JMXConnectorImpl.java:379) at oracle.sysman.ias.studio.sdk.SDKJMXUtil.setAttributeValue(SDKJMXUtil.java:539) at oracle.sysman.ias.studio.oc4j.sec.JMXOc4jKeystoreAdminBean.setData(JMXOc4jKeystoreAdminBean.java:218) at oracle.sysman.ias.studio.oc4j.sec.Oc4jKeystoreHelper.handleEvent(Oc4jKeystoreHelper.java:194) at oracle.sysman.ias.studio.sdk.AbstractController.handleEvent(AbstractController.java:769) at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:378) at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:765) at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:283) at oracle.sysman.ias.studio.app.StudioConsole.doGet(StudioConsole.java:385) at oracle.cabo.servlet.UIXServlet.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:763) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65) at oracle.sysman.ias.studio.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:75) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15) at oracle.sysman.ias.studio.app.MultipleJVMFilter.doFilter(MultipleJVMFilter.java:85) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.PostLogonFilter.doFilter(PostLogonFilter.java:80) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.ShortHostnameRedirectFilter.doFilter(ShortHostnameRedirectFilter.java:68) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595) Caused by: javax.management.RuntimeMBeanException: RuntimeException thrown by the invoke method of the Dynamic MBean at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:227) at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815) at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784) at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.invoke(LocalizationFilterMBeanServer.java:579) at oracle.oc4j.admin.jmx.distributed.SimpleInstanceMBeanServerDelegate.setAttribute(SimpleInstanceMBeanServerDelegate.java:752) ... 30 more Caused by: javax.management.RuntimeMBeanException: Error setting attribute: stagedConfig for: oc4j:J2EEServer=standalone,handler=security,j2eeType=WSMHandlerGlobalConfig at oracle.oc4j.admin.jmx.server.mbeans.model.DefaultModelMBeanImpl.invoke(DefaultModelMBeanImpl.java:709) at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213) ... 35 more Caused by: oracle.oc4j.admin.jmx.shared.exceptions.JMXClusterRuntimeException: Error setting attribute: stagedConfig for: oc4j:J2EEServer=standalone,handler=security,j2eeType=WSMHandlerGlobalConfig at oracle.oc4j.admin.management.farm.mbeans.J2EEServerAgr.setAttribute(J2EEServerAgr.java:1735) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:36) at sun.reflect.GeneratedMethodAccessor12.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:239) at javax.management.modelmbean.RequiredModelMBean.invokeMethod(RequiredModelMBean.java:1071) at javax.management.modelmbean.RequiredModelMBean.invoke(RequiredModelMBean.java:953) at oracle.oc4j.admin.jmx.server.mbeans.model.DefaultModelMBeanImpl.invoke(DefaultModelMBeanImpl.java:700) ... 36 more ---- Embedded exception javax.management.RuntimeMBeanException: RuntimeException thrown by the invoke method of the Dynamic MBean at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:227) at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815) at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784) at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.invoke(LocalizationFilterMBeanServer.java:579) at oracle.oc4j.admin.jmx.distributed.SimpleInstanceMBeanServerDelegate.setAttribute(SimpleInstanceMBeanServerDelegate.java:752) at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.setAttribute(LocalizationFilterMBeanServer.java:528) at oracle.sysman.ias.studio.jmx.spi.JMXConnectorImpl.setAttribute(JMXConnectorImpl.java:379) at oracle.sysman.ias.studio.sdk.SDKJMXUtil.setAttributeValue(SDKJMXUtil.java:539) at oracle.sysman.ias.studio.oc4j.sec.JMXOc4jKeystoreAdminBean.setData(JMXOc4jKeystoreAdminBean.java:218) at oracle.sysman.ias.studio.oc4j.sec.Oc4jKeystoreHelper.handleEvent(Oc4jKeystoreHelper.java:194) at oracle.sysman.ias.studio.sdk.AbstractController.handleEvent(AbstractController.java:769) at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:378) at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:765) at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:283) at oracle.sysman.ias.studio.app.StudioConsole.doGet(StudioConsole.java:385) at oracle.cabo.servlet.UIXServlet.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:763) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65) at oracle.sysman.ias.studio.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:75) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15) at oracle.sysman.ias.studio.app.MultipleJVMFilter.doFilter(MultipleJVMFilter.java:85) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.PostLogonFilter.doFilter(PostLogonFilter.java:80) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.ShortHostnameRedirectFilter.doFilter(ShortHostnameRedirectFilter.java:68) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595) Caused by: javax.management.RuntimeMBeanException: Error setting attribute: stagedConfig for: oc4j:J2EEServer=standalone,handler=security,j2eeType=WSMHandlerGlobalConfig at oracle.oc4j.admin.jmx.server.mbeans.model.DefaultModelMBeanImpl.invoke(DefaultModelMBeanImpl.java:709) at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213) ... 35 more Caused by: oracle.oc4j.admin.jmx.shared.exceptions.JMXClusterRuntimeException: Error setting attribute: stagedConfig for: oc4j:J2EEServer=standalone,handler=security,j2eeType=WSMHandlerGlobalConfig at oracle.oc4j.admin.management.farm.mbeans.J2EEServerAgr.setAttribute(J2EEServerAgr.java:1735) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:36) at sun.reflect.GeneratedMethodAccessor12.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:239) at javax.management.modelmbean.RequiredModelMBean.invokeMethod(RequiredModelMBean.java:1071) at javax.management.modelmbean.RequiredModelMBean.invoke(RequiredModelMBean.java:953) at oracle.oc4j.admin.jmx.server.mbeans.model.DefaultModelMBeanImpl.invoke(DefaultModelMBeanImpl.java:700) ... 36 more ---- Embedded exception javax.management.RuntimeMBeanException: Error setting attribute: stagedConfig for: oc4j:J2EEServer=standalone,handler=security,j2eeType=WSMHandlerGlobalConfig at oracle.oc4j.admin.jmx.server.mbeans.model.DefaultModelMBeanImpl.invoke(DefaultModelMBeanImpl.java:709) at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213) at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815) at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784) at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.invoke(LocalizationFilterMBeanServer.java:579) at oracle.oc4j.admin.jmx.distributed.SimpleInstanceMBeanServerDelegate.setAttribute(SimpleInstanceMBeanServerDelegate.java:752) at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.setAttribute(LocalizationFilterMBeanServer.java:528) at oracle.sysman.ias.studio.jmx.spi.JMXConnectorImpl.setAttribute(JMXConnectorImpl.java:379) at oracle.sysman.ias.studio.sdk.SDKJMXUtil.setAttributeValue(SDKJMXUtil.java:539) at oracle.sysman.ias.studio.oc4j.sec.JMXOc4jKeystoreAdminBean.setData(JMXOc4jKeystoreAdminBean.java:218) at oracle.sysman.ias.studio.oc4j.sec.Oc4jKeystoreHelper.handleEvent(Oc4jKeystoreHelper.java:194) at oracle.sysman.ias.studio.sdk.AbstractController.handleEvent(AbstractController.java:769) at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:378) at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:765) at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:283) at oracle.sysman.ias.studio.app.StudioConsole.doGet(StudioConsole.java:385) at oracle.cabo.servlet.UIXServlet.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:763) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65) at oracle.sysman.ias.studio.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:75) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15) at oracle.sysman.ias.studio.app.MultipleJVMFilter.doFilter(MultipleJVMFilter.java:85) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.PostLogonFilter.doFilter(PostLogonFilter.java:80) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.ShortHostnameRedirectFilter.doFilter(ShortHostnameRedirectFilter.java:68) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595) Caused by: oracle.oc4j.admin.jmx.shared.exceptions.JMXClusterRuntimeException: Error setting attribute: stagedConfig for: oc4j:J2EEServer=standalone,handler=security,j2eeType=WSMHandlerGlobalConfig at oracle.oc4j.admin.management.farm.mbeans.J2EEServerAgr.setAttribute(J2EEServerAgr.java:1735) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:36) at sun.reflect.GeneratedMethodAccessor12.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:239) at javax.management.modelmbean.RequiredModelMBean.invokeMethod(RequiredModelMBean.java:1071) at javax.management.modelmbean.RequiredModelMBean.invoke(RequiredModelMBean.java:953) at oracle.oc4j.admin.jmx.server.mbeans.model.DefaultModelMBeanImpl.invoke(DefaultModelMBeanImpl.java:700) ... 36 more ---- Embedded exception oracle.oc4j.admin.jmx.shared.exceptions.JMXClusterRuntimeException: Error setting attribute: stagedConfig for: oc4j:J2EEServer=standalone,handler=security,j2eeType=WSMHandlerGlobalConfig at oracle.oc4j.admin.management.farm.mbeans.J2EEServerAgr.setAttribute(J2EEServerAgr.java:1735) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:36) at sun.reflect.GeneratedMethodAccessor12.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:239) at javax.management.modelmbean.RequiredModelMBean.invokeMethod(RequiredModelMBean.java:1071) at javax.management.modelmbean.RequiredModelMBean.invoke(RequiredModelMBean.java:953) at oracle.oc4j.admin.jmx.server.mbeans.model.DefaultModelMBeanImpl.invoke(DefaultModelMBeanImpl.java:700) at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213) at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815) at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784) at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.invoke(LocalizationFilterMBeanServer.java:579) at oracle.oc4j.admin.jmx.distributed.SimpleInstanceMBeanServerDelegate.setAttribute(SimpleInstanceMBeanServerDelegate.java:752) at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.setAttribute(LocalizationFilterMBeanServer.java:528) at oracle.sysman.ias.studio.jmx.spi.JMXConnectorImpl.setAttribute(JMXConnectorImpl.java:379) at oracle.sysman.ias.studio.sdk.SDKJMXUtil.setAttributeValue(SDKJMXUtil.java:539) at oracle.sysman.ias.studio.oc4j.sec.JMXOc4jKeystoreAdminBean.setData(JMXOc4jKeystoreAdminBean.java:218) at oracle.sysman.ias.studio.oc4j.sec.Oc4jKeystoreHelper.handleEvent(Oc4jKeystoreHelper.java:194) at oracle.sysman.ias.studio.sdk.AbstractController.handleEvent(AbstractController.java:769) at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:378) at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:765) at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:283) at oracle.sysman.ias.studio.app.StudioConsole.doGet(StudioConsole.java:385) at oracle.cabo.servlet.UIXServlet.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:763) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65) at oracle.sysman.ias.studio.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:75) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15) at oracle.sysman.ias.studio.app.MultipleJVMFilter.doFilter(MultipleJVMFilter.java:85) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.PostLogonFilter.doFilter(PostLogonFilter.java:80) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.ShortHostnameRedirectFilter.doFilter(ShortHostnameRedirectFilter.java:68) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595)

    I had to set the scurity setting it in JDEV and deploy the Web Service. Then I was able to update the settings in EM. However, if you remove the setting from then you will need to redeploy the Web Service again before you can change it.

  • Stop managed server without node manager and admin server

    What are the commonly used ways to stop managed Weblogic server without node manager running and without administration server running?
    (I have only one solution: on the managed server startup dump process ID to a file, and then when I want to stop it, send a signal to this process ID and kill JVM. But it seems not very clean way.)
    (The managed server is started when both node manager and admin server are down, and I provide boot.properties of admin server to the managed server to start.)
    UPDATED: And I don't want to start neither admin server, nor node manager even temporarily.
    Edited by: user12163080 on Jun 24, 2010 4:40 AM

    Hai,
    I read the Oracle weblogic wlst script document without Admin server you cannot connect the managed server through the WLST script. see the below lines
    "The start command starts Managed Servers or clusters in a domain using Node Manager.
    To use the start command, WLST must be connected to a running Administration Server.
    To start Managed Servers without requiring a running Administration Server, use the
    nmStart command with WLST connected to Node Manager."
    "You shut down a server to which WLST is connected by entering the shutdown command
    without any arguments.
    When connected to a Managed Server instance, you only use the shutdown command to shut
    down the Managed Server instance to which WLST is connected; you cannot shut down another
    server while connected to a Managed Server instance.
    WLST uses Node Manager to shut down a Managed Server. When shutting down a Managed
    Server, Node Manager must be running.
    In the event of an error, the command returns"
    They are two option if you are using adminserver then we can stop the any Managed server.
    The option is if you are using the nodemanager without admin server we can stop the any Managed server.
    The last final solution to kill the particular Managed server pid.
    Regards,
    S.vinoth babu

  • Why does a job still show as running on the server even after it's deleted from Instance Manager?

    Deleting a job in Instance Manager doesn't seem to delete the job on the actual server.  Is there another location where we need to cancel the 'connection' to the database from where it's running?

    I should also note that this only seems to be an issue with music that was purchased through itunes. Once I delete songs purchased through itunes on my iphone 5 they still show up with the cloud and down arrow and I can still play them. I do not want them visible unless I choose to download them.

  • Solution Manager and Content Server / KW

    Hey guys,
    Im supposed to assess the advantages of using a content server instead of the database used by SolMan to store documents.
    Found some articles about connecting the content server but got confussed about the whole knowledge warehouse thing that seems somehow to be integrated in SolMan.
    Apparently that's a different Version of the KW, providing a change history but lacking some other features. Found e.g.  this document here: [Solution Manager and SAP KW Documents |http://help.sap.com/saphelp_sm40/helpdata/EN/a4/4f691faacf423db80f286787c5a527/content.htm]
    Can someone give me an overview about what's possible by using these two things togehter?
    It's been kind of hard to find some good infos and I'm relatively new to that topic (especially the KW thing), so I really hope you guys can help me.
    Cheers Joerg

    >
    LuongDK wrote:
    > Hi Experts,
    >
    > I want to install Solution Manager and SAP ECC on single server. Oracle database with different schema (e.x SAPSR3, SAPSR4)
    > But can I use same mount folders?
    >
    > Kindly highlight your experience and knowledge on this point?
    >
    > Thank you so much
    > Regards,
    > LuongDK
    Hello LuongDK,
    Please refer to the FAQ section on http://service.sap.com/solutionmanager, Check the installations section:
    Which system should I use to install SAP Solution Manager?
    The system has to be dedicated to the SAP Solution Manager. No other components can be installed on top of SAP Solution Manager.
    SAP Solution Manager does not necessarily require separate hardware. It can be installed as a separate instance on an existing hardware.
    This means that the hardware can be shared if it is sufficient to support 2 systems. However a MCOD option is not recommended at all.
    Regards
    Amit

  • Drop-down list to trigger instance manager

    I may have bitten off more than I can chew with this one, but I have two pages. One comprises a checklist of Y/N/NA drop-downs; the other page has a repeating table row.
    If the drop-down selection is N I want the Instance Manager to trigger a new row on the second page and populate one of the textboxes within it with the caption value of that drop-down.
    If anyone has an idea as to whether this can be done or, even better, how I could actually do it, do please let me know. I'm no programmer unfortunately so the best I can manage is to tweak other scripts.
    Thanks in advance

    Hi Manuel,
    You will find your answer, with diagrams, in section 3.4 Model Advanced Input Fields in the following document:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/07134c67-0b01-0010-0493-b89287cf330f
    Be sure that within the Entry List tab, your list scope is dynamic for 0CALYEAR, then just map the fields.
    Failing that, make sure you have values against 0CALYEAR in your source system.
    Regards,
    Chet.

Maybe you are looking for

  • HOW TO ADD NEW COLUMN IN EXISTING QUERY

    hi, i m working on oracle reorts 10g. i have a multiple query based report. now i want to add a new column in query 1 and order by on that new column . i added column in query but when i see that group i dont find that column in that group.wt do i ne

  • Oracle 8i and Ms SQL Server 2000

    Hi I have the problem that we need to install a Oracle 8i Application Server on a Microsoft Windows 2000 Server Sp4 whit have an Microsoft SQL Server 2000 Sp3 on it The installation runs well, but the Net8 Configuration don´t finish. Know anybody a s

  • Premiere Pro 2.0 - AME Won't open!

    Hello. Trying to export simple small AVI file to Quicktime. Premiere Pro 2.0, Windows XP, etc. 1st two attempts: Export/Adobe Media Encoder, chose Quicktime format. Encountered some kind of problem, error: Invalid profile file!  I think this is an au

  • ODBC on Linux: libsqora.so.10.1: undefined symbol: _tcsnccmp

    I try to access an Oracle database via iODBC from openSUSE Linux 10.3. I have installed the following packages from the Oracle web page: oracle-instantclient-basic-10.2.0.4-1.i386.rpm oracle-instantclient-devel-10.2.0.4-1.i386.rpm oracle-instantclien

  • Mail Custom Stationery Does Not Load

    I created and saved a custom, text only, stationery (i.e. no images, etc.). I can see it when I click Custom in the stationery list. But double clicking on the stationery does nothing. I've deleted and retried several times, to no avail. Help!