Quantcast
Channel: PTC Community : Discussion List - Windchill
Viewing all 5797 articles
Browse latest View live

Find Participant Issue

$
0
0

Hi All,

Could you please help me out to resolve the issue with ""Find Participant " tab opened as "blank" whenever we hit it to search any from Utilities -> Participant Administration (Windchill 10.2 MO30)


Getting comments from Adhoc tasks from Adhoc Activity in Workflow

$
0
0

hi all,

I have to get the task level comments from an adhoc task which is getting generated from a adhoc activity . I want to get the comment in a variable. Please suggest a way on how i can achieve it?

Apache SendBufferSize setting hurts file transfer performance

$
0
0

I am wondering if anyone else sees the same behavior that I have.  A company has multiple sites around the world, but the connection where it was most obvious was a WAN connection between the US and Malaysia.  There is a 30Mb pipe and a 250ms ping time.  However, Windchill file transfers would never go faster than 127kB/sec.  It was especially painful because the congestion on the network line would often not exceed 30%, yet Windchill was just using a small portion of what was available.

 

Using Wireshark for network troubleshooting it became obvious that the throughput was quite constrained.  The network adapter would put two 16kB packages on the WAN, then wait 250ms for an ACK before sending additional data.  At no point did it try to put out additional packets, even though the negotiated window was 130kB.

 

If you look in <Windchill>\HTTPServer\conf\extra\additions.conf you will find these lines:

 

# At least on Windows with high bandwidth, high-latency connections this

# setting speeds downloads.  It should not hurt in other cases.

#

# [Note that stock Apache 2 does not support this option on Windows at the

# time of this writing.  Support for this has been patched into this Apache

# binary.]

#

SendBufferSize 16384

 

The result of this line is that Apache will send two 16kB chunks of data, then do nothing until it received an acknowledgement.  It would send out this size of data regardless of whether the network thought it wanted less or could take more.  In the days when the max window size was 64kB, and often negotiated much smaller, this would result in an improvement in performance.  Now many (most?) WAN connections can accommodate much more than 16kB or 32kB of data "in flight", and this can become a performance hindrance.

 

Commenting out SendBufferSize line, the throughput increased from 127kB/sec to 1.5MB/sec.  Essentially, the tcp transfer was able to make use of the majority of the available bandwidth to the remote site.  Servers on both sides were Windows 2008 R2, and Apache was configured for HTTPS and file compression.  There are Riverbed Steelhead devices in the path, but the Windchill traffic was bypassed as they were not loaded with the server certs to allow them to accelerate HTTPS traffic.

 

I believe the setting might have been appropriate in the not so distant past, but you might find that this is now a constraint on your Windchill data throughput.

 

If you have slow replication performance or slow file transfers to clients you might want to try commenting out this line and restarting Apache.

Want to create the EPMDocument Using Windchill API ??

$
0
0

Hello Everyone,

 

i want to create the EPMDocument  by using the Windchill API? how it could be done? i am fresher to do this activity.

 

Thanks in advance

Custom OIR Rule Algorithm

$
0
0
Has anyone implemented a custom OIR rule algorithm that implements the RuleAlgorithm interface?  If so then is it possible to pass a handle to the object being created to the RuleAlgorithm.calculate() method?  For example pass a handle to an EPMDocument in the Object[] array?

public Object calculate(Object[] paramArrayOfObject, WTContainerRef paramWTContainerRef)

Patrick Williams | Engineering Systems |  c: 616.947.2110
[cid:image001.jpg@01CD807F.0A867BC0]

How often are you applying Windchill 10.2 CPS (Critical Patch Sets) and how long is it taking?

$
0
0

We have multiple 10.2 Windchill environments (development, testing, staging) which are also clustered, some with multiple nodes. 

We will compare the files being updated to make sure that we are good on our existing customizations and configurations.

We will also do some level of testing before executing the PSI on production.

 

1. Back up codebases on all 4 prod nodes

2. Run CPS PSI on cache master node

3. Fix permission on IE tasks (we have non default settings on some which get wiped out when running the PSI)

4. Back up modified cach master codebase

5. Move\rename pre-CPS codebases on MS nodes

6. Restore cache master codebase from step 4 on MS nodes

7. Update new MS node codebases with site.xconf from pre-CPS codebase and propagate properties

8. Fix Creo publishing configuratin on each MS node

9. Fix middleware credentials on each MS node

10. Restart and a quick technical checkout

 

Just focusing on these 10 steps for production it takes a good 4-5 hours.

 

Our management is interested in what others are doing in the area of Critical Patch Sets; how often (monthly, quarterly, etc.) and how long (in hours per environment).

Can you guys share how often and how long (please specify monolithic or clustered)?

Winchill timeout in internal browser?

$
0
0


All -

 

I have a user who reports that after using a Creo (2.0, M110) session for a while (the amount of time varies), his internal Windchill session (mozilla-based browser) will stop working, and the browser window goes blank/white.  Is there some weird config setting for Windchill timeout that he may need or that he has and needs to get rid of?  Or does this sound like a machine/network problem (in which case, this is getting chucked over to I.T.....)

 

Thanks in advance -

Chrystal Johnstone

Seattle, WA

Customizing Table Views

$
0
0

Hello,

 

Is there any way we can add new attributes in the Customizing Table Views, when I try to create a new custom view I can see the some attributes are missing is there any way we can add it


JSP Page to Set State

$
0
0

I am working on an administrative JSP page that would allow me to Set-State on wtdocuments and/or epmdocuments. I am using the Search-Objects webject to search for and get the information about the documents but, I cannot find a webect that allows me to set-state. Would anyone know how this could be accomplished in a JSP page? Is this something I would need to create a java class to handle? I have limited exposure to java so I would like to stick with the JSP if possible. Here is the search page I have currently. I would like to have the button that is clicked submit the request to the server for the state change.

 

search1.jpg

 

 

<%@page language="java" session="false"%>
<%@ taglib uri="http://www.ptc.com/infoengine/taglib/core" prefix="ie" %>

<html>
<head>


<title>WindSearch3.0</title>

<body>

</head>
<body>
<h2> Info*Engine JSP Test Page</h2>
<%
String where = request.getParameter ("where");
if ( where == null )
where = "()";
else if( where != null )
where= "(name='*" + where + "*')";
String wherevalue = request.getParameter ("where");
%>

<div class="main">
<h1>WindENG Search 3.0</h1>
<form action="aindex.jsp" method="POST">
Search: <input type="text" name="where" value="<%=wherevalue%>">
<input type="submit" value="Search">
<link rel="stylesheet" type="text/css" href="jsp.css">

<p><b>
Searching with where clause <%= where%>.
</b></p>

<ie:webject name="Search-Objects" type="OBJ">
       <ie:param name="INSTANCE" data="com.ptc.net.HostID.Windchill"/>
       <ie:param name="TYPE" data="wt.epm.EPMDocument"/>
       <ie:param name="VERSION" data="LATEST"/>
       <ie:param name="ITERATION" data="LATEST"/>
       <ie:param name="WHERE" data="<%=where%>"/>
       <ie:param name="WHERE" data="(state.state='Released')" />
    <ie:param name="ATTRIBUTE" data="CADName,name,state.state,versionInfo.identifier.versionId,obid" delim=","/>
       <ie:param name="GROUP_OUT" data="epmdocument"/>
</ie:webject>

<br>
<table border="1" cellpadding="2"
        <tr>
                <td>All<INPUT type=checkbox onclick="selectAll(this)" value=checkbox name=allcheckbox></td>
                <td>CADname</td><td>name</td><td>state.state</td><td>versionInfo.identifer.verisonID</td><td>OBID</dt>
        </tr>

    <ie:forEach groupIn="epmdocument" groupOut="row">
        <tr>
            <td><input value=" " type="checkbox"></td>
                <td><ie:getValue name="CADName"/></td>
                <td><ie:getValue name="name"/></td>
                <td><ie:getValue name="state.state"/></td>
                <td><ie:getValue name="versionInfo.identifier.versionId"/></td>
                <td><ie:getValue name="obid"/></td>
                <td><input type="submit" value="In Work"></td>
                <td><input type="submit" value="Preproduction"></td>
                <td><input type="submit" value="Released"></td>
                <td><input type="submit" value="Obsolete"></td>
        </tr>
    </ie:forEach>
</table>

</body>
</html>

Anyone has experience setting NX PCB Exchange with Windchill?

$
0
0

Looking for help with workflows from NX PCB exchange (A Maya product) to Windchill 10.

 

The IDX xml file from Cadence when imported ino NX loads all 3D components only if they are present in the local workspace. Can NX search from our global Windchill database across projects and load parts that are listed in the xml .idx file?

Problem Report Task Messages

$
0
0

Hello,

 

How can I change text message  "You have been assigned a.... ".  I need related java file.

 

This message is sent when a problem report is assigned to someone.

 

Adsız.png

Link/Shortcut object type to point to a shared network folder?

$
0
0

Does anyone know how to create a link within a PDMLink document folder to a network folder outside of PDMLink?

 

I know how to create links to other websites, but would like to create one to related shared network folders.  When I try to it always inserts the prefix http.. in front of the network location, so it doesn't work.  In addition, users have permission to create or delete link objects, but users cannot edit them!

 

Any ideas?

Summary Activity not completed

$
0
0

We created a project in Auto execution  mode. Then we import a project plan(.mpp) file in it.  It has few Phases (summary activities). All activities of a phase are completed (100% work complete and has  'Tick Mark' symbol) but for summary activity it still shows status as "unavailable"('Question Mark' symbol) and state as "In Process".


If project is created in manual mode then summary activity shows status as completed.

Following are environment Details

 

·         Windchill Environment Details –Windchill PDMPJL 10.2 M030 CPS08

·         Microsoft Project 2010

Please find attached related document which has screenshots.

Disable the import plan option in product manager profile

$
0
0

I have to disable the option of Import Plan for a particular role/user in a Project created by me.  I tried doing it using Policy Administration, but could not do it. Please let me know how to do.

Methodserverlog - Workspace is out of date

$
0
0

Does anybody know, what following entry in methodserverlog is standing for? Can't find anything at PTC Knowledgebase or here in our Community

 

"2016-03-10 07:50:40,092 ERROR [ajp-bio-8011-exec-1] com.ptc.windchill.uwgm.proesrv.cache.WorkspaceRequestCacheAdapter user - WorkspaceRequestCacheAdapter.validateWorkspaceUpdateCounter :: workspacename[wt.epm.workspaces.EPMWorkspace:131143473](xxx|Product(product)) is out of date: 273/1/2760 < 274/1/2761"


i am unable to get custom variables on task page of workflow in proper alignment. So what should i do to bring them in a proper format?

$
0
0

i am unable to get  custom variables on task page of workflow in proper alignment. So what should i do to bring them in a proper format?

WTpart subtype assigning while check in

$
0
0

How do I assign the sub Type of the WTPart that the EPMDocument will create and associate during Checkin? One way is to use a subtype of the epmdocument itself and assign "Default part type to Create", but I dont want to take this option. Kindly pour in your thoughts.

 

Iam using Windchill 10.2 with Creo 2.0.

 

For some assemblies , when checked in, i want to create Part subtype A, while for some other assemblies I want to create Part type B.

There is a clear rule for this on what conditions Part Subtype A or B should be created, but there seems to be no direct way to specify (as an attribute ).

Are there any preferences?

 

Thanks & Regards

Hari Varadharajan

Query builder for project document count & size

$
0
0

Is it possible to create a report that will list the projects in an Org (or by providing project name) and will tell me the number of documents in the project and the size of the files in the project.

 

Thanks,

Kevin

File Vaults and Folders

$
0
0

Our current production system has all the file vaults and folders on a single server. Wondering if it is possible to move the vaults and folders across multiple servers. Thanks in advance!

Apache SendBufferSize setting hurts file transfer performance

$
0
0

I am wondering if anyone else sees the same behavior that I have.  A company has multiple sites around the world, but the connection where it was most obvious was a WAN connection between the US and Malaysia.  There is a 30Mb pipe and a 250ms ping time.  However, Windchill file transfers would never go faster than 127kB/sec.  It was especially painful because the congestion on the network line would often not exceed 30%, yet Windchill was just using a small portion of what was available.

 

Using Wireshark for network troubleshooting it became obvious that the throughput was quite constrained.  The network adapter would put two 16kB packages on the WAN, then wait 250ms for an ACK before sending additional data.  At no point did it try to put out additional packets, even though the negotiated window was 130kB.

 

If you look in <Windchill>\HTTPServer\conf\extra\additions.conf you will find these lines:

 

# At least on Windows with high bandwidth, high-latency connections this

# setting speeds downloads.  It should not hurt in other cases.

#

# [Note that stock Apache 2 does not support this option on Windows at the

# time of this writing.  Support for this has been patched into this Apache

# binary.]

#

SendBufferSize 16384

 

The result of this line is that Apache will send two 16kB chunks of data, then do nothing until it received an acknowledgement.  It would send out this size of data regardless of whether the network thought it wanted less or could take more.  In the days when the max window size was 64kB, and often negotiated much smaller, this would result in an improvement in performance.  Now many (most?) WAN connections can accommodate much more than 16kB or 32kB of data "in flight", and this can become a performance hindrance.

 

Commenting out SendBufferSize line, the throughput increased from 127kB/sec to 1.5MB/sec.  Essentially, the tcp transfer was able to make use of the majority of the available bandwidth to the remote site.  Servers on both sides were Windows 2008 R2, and Apache was configured for HTTPS and file compression.  There are Riverbed Steelhead devices in the path, but the Windchill traffic was bypassed as they were not loaded with the server certs to allow them to accelerate HTTPS traffic.

 

I believe the setting might have been appropriate in the not so distant past, but you might find that this is now a constraint on your Windchill data throughput.

 

If you have slow replication performance or slow file transfers to clients you might want to try commenting out this line and restarting Apache.

Viewing all 5797 articles
Browse latest View live