Error when breaking link to resource pool

I'm using a resource pool with about 25 resources and linked to 6 files.  When the project is complete I want to remove the file from the resource pool.  I do exactly as described in
http://office.microsoft.com/en-ca/project-help/stop-sharing-resources-HP045303497.aspx but every time I do MS Project completely crashes and the link is not broken when the file recovers.
I've completely recreated the files several times and always get the same response.
Frank

Frank,
Okay, which version of Project are you using? Is it updated with the latest service pack?
Project 2010 had some serious issues with files crashing, hence it's critical to have the latest updates installed.
You say you recreated the files several times. Did they ever work or do they always cause a crash?
John

Similar Messages

  • Error when creating link to documents from material

    Hi all,
    while creating the purchase order the error message "Error when creating link to documents from material 61260224060" is displayed.
    why this error message is displayed.?
    Regards,
    GaneshRaja

    Hello Ganesh
    Please check material master - view 'Bases data 2'.
    There is checkbox 'No link'. You can activate this checkbox if you are not storing any drawing/designe docuemnt for this material.
    Try to do this and check out again.....
    If this helps you in resolving your issue, i would appreciate if you reward the answer with suitable points.
    Best Regards
    Avinash

  • SQL2012 Express Error: "insufficient system memory in resource pool 'internal' to run this query"

    I am running the SQL2012 express (version shown below) and get the following error after a day or two of operation. This is a new server 2012 installation.
    source: SQL2012Express  "There is insufficient system memory in resource pool 'internal' to run this query."
    The installed version of SQL2012 express is:
    Microsoft SQL Server 2012 (SP1) - 11.0.3128.0 (X64)   Dec 28 2012 20:23:12  Copyright (c) Microsoft Corporation
    Express Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    I read a few of the postings but couldn't determine the exact hot fix or update to run or if I am running the latest already.
    Which .exe file should I run for the update? I downloaded a file called 473913_intl_x64_zip.exe but it said it wasn't tested yet?
    Can I uninstall this path or hot fix if it breaks something?
    What can I do to correct this internal memory error and prevent from happening.
    Thanks
    Morris
    Thank you Morris

    Hi MoCoder,
    According to your description, the error may be occurred by the following possible reasons, for example,
     the ram was be completely used, reached the maximum memory allocation configured values in SQL Server or virtual memory is full and so on. Before you install the related cumulative update of SQL Server 2012, I recommend you do the following
    steps for fixing this error. For example, allocate more memory to SQL Server, kill the unnecessary idle sessions, increase the RAM and virtual memory and reduce the number of users and so on.
    For more information, you can review the following article,
    http://sqlserverlearner.com/tag/there-is-insufficient-system-memory-in-resource-pool-internal-to-run-this-query
    In addition, you also need to check if there is the SQL Server memory leak, most of the memory leaks in SQL Server is caused by 3rd party Dll’s which are loaded in SQL Server process,
     or you enable the Auto Update Statistics Asynchronously statistics option in a database of Microsoft SQL Server 2012.
    For more information, see:
    http://support.microsoft.com/kb/2778088/en-us
    http://mssqlwiki.com/2012/12/04/sql-server-memory-leak/
    Regards,
    Sofiya Li
    If you have any feedback on our support, please click here.
    Sofiya Li
    TechNet Community Support

  • Sub-layer created when breaking link to symbol bad idea?

    When breaking the link to a symbol the contents is put into a sub-layer. I see no value in this and I am constantly disposing of the new layer. If it were a group it would be simple because groups don't exist without content, but layers must be deleted. Does anyone else have this grip or can you convince me this is a great new idea? I'm pretty sure this did not happen in CS4.

    For those frustrated by this issue, Cense posted a good workaround:
    http://forums.adobe.com/thread/684879?tstart=0
    Just group the symbol before breaking link and when you "break link" the resulting artwork is a nested group instead of a sub-layer.  No more useless layer to deal with.

  • Error when the link is clicked for detail page

    Hello I am creating pages using MySql and PHP with dream weaver. I created my master record set and detail page. the master record set works b but when you click the link to bring up the details page I get this error
    "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'name = 'Brandon' LIMIT 0, 10' at line 1"
    Any help with guidance on trouble shooting error would be greatly appreciated.
    David

    =====================================================Master page=============================================================
    <?php require_once('Connections/Onantional.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];
    $maxRows_Recordset1 = 10;
    $pageNum_Recordset1 = 0;
    if (isset($_GET['pageNum_Recordset1'])) {
      $pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
    $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
    mysql_select_db($database_Onantional, $Onantional);
    $query_Recordset1 = "SELECT * FROM Roster";
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $Onantional) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    if (isset($_GET['totalRows_Recordset1'])) {
      $totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
    } else {
      $all_Recordset1 = mysql_query($query_Recordset1);
      $totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
    $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
    $queryString_Recordset1 = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_Recordset1") == false &&
            stristr($param, "totalRows_Recordset1") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_Recordset1 = "&" . htmlentities(implode("&", $newParams));
    $queryString_Recordset1 = sprintf("&totalRows_Recordset1=%d%s", $totalRows_Recordset1, $queryString_Recordset1);
    ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table border="1" align="center">
      <tr>
        <td>First name</td>
        <td>Last Name</td>
        <td>Conference</td>
        <td>email</td>
      </tr>
      <?php do { ?>
        <tr>
          <td><a href="details.php?recordID=<?php echo $row_Recordset1['First name']; ?>"> <?php echo $row_Recordset1['First name']; ?>  </a> </td>
          <td><?php echo $row_Recordset1['Last Name']; ?>  </td>
          <td><?php echo $row_Recordset1['Conference']; ?>  </td>
          <td><?php echo $row_Recordset1['email']; ?>  </td>
        </tr>
        <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
    </table>
    <br />
    <table border="0">
      <tr>
        <td><?php if ($pageNum_Recordset1 > 0) { // Show if not first page ?>
              <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, 0, $queryString_Recordset1); ?>">First</a>
              <?php } // Show if not first page ?>
        </td>
        <td><?php if ($pageNum_Recordset1 > 0) { // Show if not first page ?>
              <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, max(0, $pageNum_Recordset1 - 1), $queryString_Recordset1); ?>">Previous</a>
              <?php } // Show if not first page ?>
        </td>
        <td><?php if ($pageNum_Recordset1 < $totalPages_Recordset1) { // Show if not last page ?>
              <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, min($totalPages_Recordset1, $pageNum_Recordset1 + 1), $queryString_Recordset1); ?>">Next</a>
              <?php } // Show if not last page ?>
        </td>
        <td><?php if ($pageNum_Recordset1 < $totalPages_Recordset1) { // Show if not last page ?>
              <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, $totalPages_Recordset1, $queryString_Recordset1); ?>">Last</a>
              <?php } // Show if not last page ?>
        </td>
      </tr>
    </table>
    Records <?php echo ($startRow_Recordset1 + 1) ?> to <?php echo min($startRow_Recordset1 + $maxRows_Recordset1, $totalRows_Recordset1) ?> of <?php echo $totalRows_Recordset1 ?>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>
    =====================================================end master ========================================================
    ========================================================details page=========================================================
    <?php require_once('Connections/Onantional.php'); ?><?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $maxRows_DetailRS1 = 10;
    $pageNum_DetailRS1 = 0;
    if (isset($_GET['pageNum_DetailRS1'])) {
      $pageNum_DetailRS1 = $_GET['pageNum_DetailRS1'];
    $startRow_DetailRS1 = $pageNum_DetailRS1 * $maxRows_DetailRS1;
    $colname_DetailRS1 = "-1";
    if (isset($_GET['recordID'])) {
      $colname_DetailRS1 = $_GET['recordID'];
    mysql_select_db($database_Onantional, $Onantional);
    $query_DetailRS1 = sprintf("SELECT * FROM Roster WHERE First name = %s", GetSQLValueString($colname_DetailRS1, "text"));
    $query_limit_DetailRS1 = sprintf("%s LIMIT %d, %d", $query_DetailRS1, $startRow_DetailRS1, $maxRows_DetailRS1);
    $DetailRS1 = mysql_query($query_limit_DetailRS1, $Onantional) or die(mysql_error());
    $row_DetailRS1 = mysql_fetch_assoc($DetailRS1);
    if (isset($_GET['totalRows_DetailRS1'])) {
      $totalRows_DetailRS1 = $_GET['totalRows_DetailRS1'];
    } else {
      $all_DetailRS1 = mysql_query($query_DetailRS1);
      $totalRows_DetailRS1 = mysql_num_rows($all_DetailRS1);
    $totalPages_DetailRS1 = ceil($totalRows_DetailRS1/$maxRows_DetailRS1)-1;
    ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table border="1" align="center">
      <tr>
        <td>First name</td>
        <td><?php echo $row_DetailRS1['First name']; ?> </td>
      </tr>
      <tr>
        <td>Last Name</td>
        <td><?php echo $row_DetailRS1['Last Name']; ?> </td>
      </tr>
      <tr>
        <td>Conference</td>
        <td><?php echo $row_DetailRS1['Conference']; ?> </td>
      </tr>
      <tr>
        <td>email</td>
        <td><?php echo $row_DetailRS1['email']; ?> </td>
      </tr>
    </table>
    </body>
    </html><?php
    mysql_free_result($DetailRS1);
    ?>

  • Link update error when updating linked excel file

    Im working with about 200 pages product catalog and the product information is on excel tables. I import the excel file as unformatted table in Indesign and format the table using the table and cell styles. The importing and formatting goes just fine, but when i edit the linked table in excel and then try update the link the Indesign notes: "Cannot update the link for xxxx.xls. Please place the document again to reset the link." The catalogs product information is on 5 separete excel files and each file contents about 3000 rows and 7 colums, the idea was that i import the excel tables to Indesign and when the customer makes changes or correction in excel, i just update the links and thats it. This updating error sinks the whole idea, has anyone a good idea how to fix this problem or can i do the job some other way?
    Im using Indesign CS3 (5.04) and Mac OSX (10.4.11( and i have tryed two different excel version, Excel 2008 for Mac (12.1.3) and Excel 2004 for Mac (11.3.7).

    I've seen this error sporadically and have no clue what causes it. The
    only thing you can do is follow the direction and re-place the file.
    Bob

  • JavaScript error when a link is clicked

    Hello,
    I have a commandLink in my screen (JSF application). When I click on the link I am getting a javaScript error saying (in Firefox browser)
    clear_header_3Abanner_3ApasswordChange is not defined
    So when i checked the page source i could see that its generating the clear_header_3Abanner_3ApasswordChange(); tag extra as below
    span class="username">Joe McUser</span> | <a href="# onclick="[bclear_header_3Abanner_3ApasswordChange();document.forms['header:banner:passwordChange'].elements['header:banner:passwordChange:_link_hidden_'].value='header:banner:passwordChange:passwordLink';if(document. ...................
    I don't have a subview or form named "clear" and I am not sure where the _3A is coming from.
    My JSF looks like this
    <f:subview id="banner">
              <h:panelGrid styleClass="accentBar">
                   <h:panelGroup />
              </h:panelGrid>
              <h:panelGrid styleClass="headerBar">
                   <h:panelGrid styleClass="headerBanner" columns="3" columnClasses="logo,title,options">
                        <h:panelGroup>
                             <h:outputText styleClass="title" value="text" />
                             <h:outputText value=" " />
                             <h:outputText styleClass="subtitle" value="text" />
                        </h:panelGroup>
                        <h:form id="passwordChange" >
                        <h:panelGroup>
                             <h:outputText styleClass="username" value="Joe McUser" />
                             <h:outputText value=" | " />                         
                             <t:commandLink id="passwordLink" value="Change Password" action="#{bannerOptionDto.doUpdateChangePassword}" />
                             <h:outputText value=" | " />
                             <h:outputText value="Logout" />
                        </h:panelGroup>
                        </h:form>
                   </h:panelGrid>
              </h:panelGrid>
         </f:subview>
    Could somebody please help me with this problem.
    Thanks!

    I had problems with t:commandLink too. Try to switch it with h:commandLink

  • Windows error when running link for other application

    When FF is not running and I click on a link in another application there is a error reported but FF loads and goes to the link. Example Outlook email link results in a Windows General failure error message.
    Run Windows 7 sp1

    Are you trying to run the app from a Command Prompt or fro Text Pad?
    The error occurs when java can not find the class you tried to run. It is very likely a Classpath problem. It may work from the Command Prompt from the directory where the NumberConvert.class is located, enter "java -classpath . NumberConvert"

  • 1068 Error when bringing cluster name resource online

    Hello Guys, 
    I have configured 3 node cluster setup on windows 2012R2 machines. When I try bring the networker name resource online, I got following error and name resource failed become online 
    "Network Name resource 'Cluster Name' (with associated network name 'DEDUPCSV') has Kerberos Authentication support enabled. Failed to add required credentials to the LSA - the associated error code is '1068'."
    Can anyone please helpme to resolve this problem. 
    Thanks,

    Hi Ajith G,
    Could you confirm every node the “Network List Service” service is running or not, if this service stopped please start it, after you start this service if the issue still
    exist please run your cluster validation then post the warning and error part.
    More information:
    Event ID 1068 — File Share Resource Availability
    http://technet.microsoft.com/en-us/library/cc756219(v=ws.10).aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Error when break-point is set

    Hi,
    When ever is set a break point,and run the BSP application , it displays an error page saying '500 internal server error'.Can anyone tell me what could be the problem?
    Thanks.

    Hi Eddy,
    The short text shown in St22 is "Templateinterpretation abgebrochen, Template nicht vorhanden."
    Error analysis as shown in St22
    "Sie können testweise den Service Parameter ~generateDynpro = 1 setzen,
    dann wird für diesen Service die HTML-Seite ohne Template generiert und
    Sie können zumindest sehen welches Dynpro vom Web AS gesendet wurde.
    Bitte vergessen Sie nicht, den Parameter wieder zurück zu setzen."

  • Error when trying to create Server Pool

    Hi there,
    I've been trying to create a server pool in the Oracle VM Manager. However I am getting the following error:
    (11/23/2012 12:41:06:471 PM)
    OVMAPI_4010E Attempt to send command: create_pool_filesystem to server: gunnar.blpc.com.bb failed. OVMAPI_4004E Server Failed Command: create_pool_filesystem lun /dev/mapper/271480530748fbd8c 2021663b7dffb10a 0004fb00000500004641e478723eecdc 0004fb00000100008126e601b77c2155 0004fb00000200002021663b7dffb10a, Status: org.apache.xmlrpc.XmlRpcException: exceptions.RuntimeError:Command: ['mkfs.ocfs2', '-b', '4K', '-C', '4K', '-J', 'size=4M', '-N', '32', '-L', 'OVS_POOL_FILESYSTEM', '-U', '0004fb00000500004641e478723eecdc', '--global-heartbeat', '--cluster-stack=o2cb', '--cluster-name=2021663b7dffb10a', '--force', '/dev/mapper/271480530748fbd8c'] failed (1): stderr: mkfs.ocfs2 1.8.2
    /dev/mapper/271480530748fbd8c is apparently in use by the system; format forced anyway.
    stdout:
    WARNING!!! OCFS2 uses the UUID to uniquely identify a file system.
    Having two OCFS2 file systems with the same UUID could, in the least,
    cause erratic behavior, and if unlucky, cause file system damage.
    Please choose the UUID with care.
    Cluster stack: o2cb
    Cluster name: 2021663b7dffb10a
    Stack Flags: 0x1
    NOTE: Feature extended slot map may be enabled
    Proceed (y/N): Aborting operation.
    Fri Nov 23 12:41:06 AST 2012
    Fri Nov 23 12:41:06 AST 2012
    I am connecting to iSCSI storage and I am sure that the oracle vm server is the only device connecting to the target.
    Please let me know if anyone has any suggestions.
    Thanks

    Seems like there's already an OCFS2 fs on that LUN. Could it be, that you tried to create a server pool on that LUN before, or that this target has been used to host some other OVM repository? If that is the case, then you need to wipe the LUN, before you can create a new OVM repository or server pool for that matter on it.
    But please… double check that this LUN isn't in use anywhere else, since you could loose data, if you'd wipe it!

  • Error when the AD User resource is provisioned twice

    Hi Everyone,
    I'm using OIM 9.1.0.1 with Weblogic.
    I've installed the Microsoft Active Directory User Management 9.1.1 connector.
    The "Allow Multiple" checkbox is not checked (Resource Management -> Resource Objects -> AD User)
    My problem is the following:
    - Provision a new resource (AD USER) to an user.
    - The resource is provisioned OK.
    - Then I revoke the resource (AD USER) to the user
    - The resource is revoked OK.
    - Then I want to provision "AD User" resource again, but an error appears.
    In the Administrative and User Console appears this error:
    DOBJ.SCHTM_SYSVAL_ERROR
    In the Log appears this error:
    DEBUG,05 Jan 2010 10:45:35,575,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: tcUserOperationsBean/provisionObject entered.
    ERROR,05 Jan 2010 10:45:35,646,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: tcUserOperationsBean/provisionObject encounter some problems: maoRejections:Error:
    ERROR,05 Jan 2010 10:45:35,653,[XELLERATE.WEBAPP],Class/Method: DirectProvisionUserAction/handleVerifyResource encounter some problems: Error:
    Thor.API.Exceptions.tcAPIException: Error:
    at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.provisionObject(Unknown Source)
    at com.thortech.xl.ejb.beans.tcUserOperationsSession.provisionObject(Unknown Source)
    at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.provisionObject(Unknown Source)
    at com.thortech.xl.ejb.beans.tcUserOperationsSession.provisionObject(Unknown Source)
    at com.thortech.xl.ejb.beans.tcUserOperations_voj9p2_EOImpl.provisionObject(tcUserOperations_voj9p2_EOImpl.java:3477)
    at Thor.API.Operations.tcUserOperationsClient.provisionObject(Unknown Source)
    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:597)
    at Thor.API.Base.SecurityInvocationHandler$1.run(Unknown Source)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.security.Security.runAs(Security.java:41)
    at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
    at Thor.API.Base.SecurityInvocationHandler.invoke(Unknown Source)
    at $Proxy61.provisionObject(Unknown Source)
    at com.thortech.xl.webclient.actions.DirectProvisionUserAction.handleVerifyResource(Unknown Source)
    at com.thortech.xl.webclient.actions.DirectProvisionUserAction.goNext(Unknown Source)
    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:597)
    at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
    at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(Unknown Source)
    at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
    at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Any idea for this?
    How can I resolve it?
    Thanks,
    Ariel

    Well it works absolutely fine for me. But I tried by modifying the AD connector for target-less provisioning. Just a couple of questions to know:
    - Is the resource instance being generated the second time as well. If yes then click the Resource Profile drop-down and click on this new instance. See which task is failing over there (Create User etc)
    - Have you used any entity adapters to do some custom tasks as well.
    Thanks
    Sunny

  • Error when adding second server to pool

    I've setup a system completely with OV Manager and it worked quite well with one server. Then I installed a second server with OVS and added it to my Pool.
    But no VM can be started on this server because the cfg and disk files are only on the first server. So I think there have to be some shared mounts, but I found nothing in the docs. Is there a description somewhere?

    servers in the same pool must have same view on storages, i.e. /OVS and /OVS/<uuid>(file system mounted throu /usr/lib/ovs/ovs-makerepos) must be shared.
    for /OVS you must manully mount it on each of the servers,
    for /OVS/<uuid>, ovs-makerepos must run on each servers, which will mount the shared storage.

  • GTX's receive data is error when the fpga logic resource is 70% used

    Hi
    My environment is : GTX core: 2.2      ISE: 14.6      FPGA: k732t-2
    My GTX ip setting: no 8b10b encoding  , no data scrambing ; line rate: 2.5G,  
    I use the example design code ,just change the data transmitted and the start of the frame.
    My data file is attached.
    Now I have a problem: when I just used the example design , the recv data is correct.
    but when I add other modules to deal with the recv data, the recv data from GTX is wrong. And the wrong data is 
    AAAA  ,  it is changed to AAEA or other data pattern.
    When the line rate is decreased (eg. 1.25G)  the recv data is correct though the other modules is attached.
    Could anyone help me give some advise ? which causes the phenomenon?
     

    I have already simulated it. The simulation is correct.
    And when I download the same bit file , sometimes it worked correct , but sometimes it didn't
     

  • Termination error when accessing resource tab in project template

    Hi,
    i am getting error when i am trying do resource in the project template. i have structured the project structure in the template. and i am trying to add roles for the project template but it is showing termination error when i click on "resource tab" in the template. 
    anybody can help on this error?
    thanks,
    Prabu
    i have serached for notes but it didnt help.
    fyi,  below are the error message i am getting,
    Error while processing your query
    What has happened?
    The URL call http://cmcw08v701.us.fit:8000/sap/bc/webdynpro/sap/CPROJECTS_FPM was terminated because of an error.
    Note
    The following error occurred in system CMD : Line types of an internal table and a work area not compatible.
    The error occurred on application server cmcw08v701_CMD_00 and in work process 8 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: RETRIEVE of program CL_DPR_API_APPLICATION_OBJECT=CP
    Method: IF_DPR_PROVIDER_ACCESS~RETRIEVE of program CL_DPR_API_APPLICATION_OBJECT=CP
    Method: RETRIEVE of program CL_DPR_API_BUSINESS_OBJECT====CP
    Method: IF_DPR_PROVIDER_ACCESS~RETRIEVE of program CL_DPR_API_BUSINESS_OBJECT====CP
    Method: IF_DPR_CORE_SERVICE_PROVIDER~RETRIEVE of program CL_DPR_API_CPROJECTS_CSP======CP
    Method: IF_DPR_CORE_SERVICE_ACCESSOR~RETRIEVE of program CL_DPR_API_CORE_SERVICE_MNGR==CP
    Method: HANDLEDEFAULT of program /1BCWDY/0O2TQEJ08RJE3X97BQID==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/0O2TQEJ08RJE3X97BQID==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_IF_VIEW=====CP
    Method: NAVIGATE of program CL_WDR_CLIENT_APPLICATION=====CP
    What can I do?
    If the termination type is RABAX_STATE, you will find more information on the cause of termination in system CMD in transaction ST22.
    If the termination type is ABORT_MESSAGE_STATE, you will find more information on the cause of termination on the application server cmcw08v701_CMD_00 in transaction SM21.
    If the termination type is ERROR_MESSAGE_STATE, you can search for further information in the trace file for the work process 8 in transaction ST11 on the application server. cmcw08v701_CMD_00 . You may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system adminmistrator.
    Error Code: ICF-IE-http -c: 120 -u: PTHANGARAJ -l: E -s: CMD -i: cmcw08v701_CMD_00 -w: 8 -d: 20110918 -t: 002509 -v: RABAX_STATE -e: OBJECTS_WA_NOT_COMPATIBLE -X: 005056B8017E1ED0B8B7AF786703B697_005056B8017E1ED0B8B7AF77EFCBF697_1 -x: 7BBDE1E038C3F1239697005056B8017E
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Line types of an internal table and a work area not compatible

    Hi Prabu,
    Just do a quick check if there is any custom implementation in Project management side. This may occur most probably due to not defining the navigations properly or if any modifications in the Define Navigation part of SPRO. Raising a ticket to your BASIS team might help some time to resolve this. Last option is OSS notes.
    Regards,
    Karthik

Maybe you are looking for

  • Adobe cloud - opens to blank white window

    just downloaded the adobe cloud for the first time.  30 day trial opens to blank white screen everytime, I can't try any programs.  Thanks

  • XSLT version supported in JDK 6 Transformer

    Hi! This is a simple question: Does JDK 6 Transformer Class support XSLT 2.0? My problem raise when I use the <xsl:character-map> tag. A Example: template.xslt <xsl:stylesheet version="2.0"> <xsl:output method="xml" version="1.0" encoding="UTF-8" use

  • Parsing a string of values in an expression

    I have a string being passed into my report (SSRS 2008R2) That I need to parse for display purposes. O know that I can do it with a SWITCH Statement, however there are enough different possible combinations of the string that It would become cumberso

  • EJB-REF problem

    Hi for all I am having problems when I have that reference other EJB from an EJB. I put the reference in the file ejb-jar.xml but like I use the weblogic server a error is generated when I try to do the deploy my EJB where it asks to do the reference

  • When breakpoit hit, execute a function and continue?

    E.g. in «gdb» I can set that when a breakpoint hit, the debugger will call a function, print me a result of the call, and continue execution. How can I do this in Visual Studio debugger? I didn't found anything ☹