Quantcast
Channel: PTC Community: Message List - Windchill
Viewing all 8876 articles
Browse latest View live

Re: How to present windchill?

$
0
0

Hi Luar,

 

If you organization uses a desktop sharing application, then you can show case the information fro your desktop, and also give your client the permission to control your desktop, in that way your client will get a hands on experience of Windchill, with out any risks.

 

Thanks,

 

Athmanand


Can we get the iteration history of an object linked to a workflow task

$
0
0

Dear Experts,

 

I Would like to get the iteration history of an object which is linked to a particular workflow task for instance

 

If I have the workflow tasks like Review, Rework, Submit etc I would like to know which iteration of the object is linked to the task Review, ( Perhaps 1.2 ) and also for other tasks ( Rework, Iteration of the document 1.3 ) etc..

 

I would like to get this information displayed in the workflow process status table

 

Is there any way to display this information using Windchill UI ?

 

I am working on Windchill 10.1 M110

 

Thanks for your help and let me know if you have any questions !!!

 

Regards

 

Athmanand

Re: Windchill Desktop Integration: Server Connection Issue

$
0
0

Not that bad???  I hate it.  I've been on MS Office 2010 for over 2 years and I still hate it.

Re: Explicit Attributes with Creo and Windchill

$
0
0

Its looks like both implicit and explicit attributes publish information to the Creo parameters table. It also seems to be the case that the non-implicit attributes will disappear from the Windchill details page of an object if that CAD object has been modified and iterated.

Re: RE: Ghost Items in Drawings

$
0
0

Scott,

 

It's still a valid config.pro option. However, it is hidden so it won't appear in the config.pro editor. You have to type it in.

Re: Specifications and Requirements

$
0
0

Hello Edward,

 

You've posted this question in the Integrity Community.  I've moved it to the Windchill Community for you.

 

Regards,
Kael

Re: Specifications and Requirements

$
0
0

This sounds to me like a a question about managing requirements and therefore relevant to Integrity as well as Windchill. Could it belong in both forums?

Someone who's familiar with the Integrity-Windchill integration could help us here.

Re: Copying a VM with a simple Windchill server already installed.

$
0
0

If spkwindgdn1.spkaa.com is the target hostname of the system, then that command looks correct except for the the username. The username and password you should use in this command are the credentials for your WindchillDS admin user. The username is usually 'cn=Manager'.

 

Though, the error that you're getting when running the script is a NoClassDefFoundError, which is probably an issue with your environment rather than the command you're using.Make sure you're running the command from a Windchill shell. If you unset the ANT_ARGS variable before running the command, then try opening a new Windchill shell and running the script without unsetting ANT_ARGS.

 

For the repository, you're right that there aren't any more changes needed there. Since your LDAP entry doesn't include the hostname, and since the domain hasn't changed, the current entry will work with the new hostname without needing any changes.


Re: MS is crashing

$
0
0

Enabling wt.org debug logging should give a better idea of why Windchill is looking for this user, and why Windchill is looking in the wrong LDAP. To enable the debug logging add the below line to your <Windchill>/codebase/WEB-INF/log4jMethodServer.properties file and restart Windchill:
log4j.logger.wt.org=DEBUG

Office Worker - Creo View 3 Adaptor for PDF

$
0
0

Is there anyone out there who has successfully created an Office Worker for Creo View 3 Adaptor for PDF and could share their experiences?

 

Apparently there is a know bug regarding the GS Worker, that it fails to start (CS16946 and CS93677). The work around is to create a shortcut to the WorkerDaemon.exe program and place it in the Startup. However, this is not working for me either. If I get this to work when I login, the solution to having it start automatically is to create Autologin on the document publisher server (a separate computer - Windows 2008 server r2), which is a security hole.


Windchill 10.2 M020

 

Ken Morrison

kenneth.morrison@covidien.com

Re: Use of LOWER Operator in wt.query.SearchCondition

$
0
0

I opened a ticket and Mayur @ PTC helped with this.

 

From JavaDoc:
public SearchCondition(Class targetClass,String anAttribute,String value,boolean caseSensitive) throws QueryException

 

Therefore, add the false argument to the method at the end.

 

Correct:

wt.query.SearchCondition(wt.org.WTUser.class,wt.org.WTUser.NAME,wt.query.SearchCondition.LIKE,userArray[z],false)

 

(Original):

wt.query.SearchCondition(wt.org.WTUser.class,wt.org.WTUser.NAME,wt.query.SearchCondition.LIKE,userArray[z])

Re: Current Active Users List

$
0
0

FYI...

I have modified my customization.  I have been doing a lot of restarting of my 10.2 test system and did not want to keep clicking into Master Server Manager hyperlink, and do a Find for "ActiveUsers".  Too many clicks.  I decided to implement my customization for good, so that I can simply navigate to http://<host>/Windchill/wtcore/jsp/jmx/serverStatus.jsp and immediately see who is using Windchill.  A benefit is that this URL is bookmarkable, whereas the URL to the Master Server Manager is not.

 

Futhermore, I decided to take things a step further and return the email address of the users currently using Windchill.  That way I can copy and paste into the TO field of an email if I need to send them an email for some reason.

 

Modified Procedure for customizing the <WT_HOME>/codebase/wtcore/jsp/jmx/serverStatus.jsp file:

 

CAUTION:

I have done this on a test site thus far.  I have not done any types of verifications.  Also, I'm just a beginner.  I appreciate any corrections to the procedure below.

 

NOTE:

When modifying /codebase files, reference the Windchill Customization Guide with respect to the wtSafeArea.

 

1.  Open the <WT_HOME>/wtSafeArea/siteMod/... .../serverStatus.jsp file in a text editor.  Per the Customization Guide, use wtSafeArea instead of modifying the file in /codebase directly.  There is a command that will copy the modified file in the proper location in /codebase.

 

2.  Find

Integer  activeUsers = null;

Below that, add 2 lines to instantiate 2 arrays for the active users.

String[] activeUserArray = null;
String[] activeUserArrayEmails = null;

 

3.  Find

activeUsers = (Integer) mbeanServer.getAttribute( activeUsersMBeanName, "TotalActiveUserCount" );

Below that, add some lines to populate the activeUserArray and activeUserArrayEmails arrays.

       activeUserArray = (String[]) mbeanServer.getAttribute( activeUsersMBeanName, "TotalActiveUsers" );       activeUserArrayEmails = new String[activeUserArray.length];       for (int z=0; z<activeUserArray.length; z++) {         wt.org.WTUser user;         wt.query.QuerySpec qspec=new wt.query.QuerySpec(wt.org.WTUser.class);         qspec.appendWhere(new wt.query.SearchCondition(wt.org.WTUser.class,wt.org.WTUser.NAME,wt.query.SearchCondition.LIKE,activeUserArray[z],false),newint[]{0});         wt.fc.QueryResult qresult=wt.fc.PersistenceHelper.manager.find((wt.pds.StatementSpec)qspec);         while(qresult.hasMoreElements()){           user=(wt.org.WTUser) qresult.nextElement();           activeUserArrayEmails[z]=user.getEMail();         }       }

4.  You might need or desire to add an entry to the catch block for activeUserArray and/or activeUserArrayEmails.

5.  Add the display of the variable anywhere in the page.  Look for the screenshot as to where I added it.  Code for my addition of the variables is listed below.  I added it as the last table on the page, right before the closing </body> and </html> tags.

<%= MBeanUtilities.formatMessage( RB.getString( serverStatusResource.DATA_COLLECTED_BETWEEN_MSG ),                                  dateFormat.format( new Date( dataCollectionStart ) ),                                  dateFormat.format( new Date( dataCollectionEnd ) ) ) %></i></td></tr></tbody></table><%-- Custom table for displaying usernames --%><table>  <tbody>    <tr>      <td>        <b>Ben's list of all Active Users:</b>      </td>    </tr>    <tr>      <td>        <%          int i=0;          for (i=0;i<activeUserArray.length;i++) {            out.print(activeUserArray[i] + "<br />);          }        %>      </td>      <td>        <%          int j=0;          for (j=0;j<activeUserArrayEmails.length;j++) {            out.print(activeUserArrayEmails[j] + "<br />);          }        %>      </td>    </tr>  </tbody></table></body></html>

 

serverStatus.png

Re: Object Type Customization

$
0
0

Hi!.

 

I want to add "ASSEMBLY" object type. and by the way im using PDM Essentials.

Re: Office Worker - Creo View 3 Adaptor for PDF

$
0
0

And my bank account is...

 

Your welcome!

Björn

Re: In Workflow Editor, Start flag and robots are not visible.

$
0
0

Did clearing the cache solve the problem?

 

If not, are you running this in a VM? If so, try to disable in the VM settings the direct support of the graphic card.


Re: In Workflow Editor, Start flag and robots are not visible.

$
0
0

Hello Björn Rüegg,

 

I dhad cleared all cache, take a restart but issue is still their.

 

No, I am not using VM.

 

My current java version is : 1.7.0_65.

 

now i am updating my java version to java 8, and check once again.

 

once it finish i will update you on same.

 

Regards,

Vivek

 

 

Re: How to write The Login Service in windchill ?

$
0
0

Hello Sandeep,

 

Could you explain in detail about your requirement ?

 

Thanks,

 

Athmanand

Re: Folder Customization in Windchill

$
0
0

Hello Athmanand,

 

Im already did what you said. The question is how to map it to the folder that I want to be specific?

q.jpg

Re: Object Type Customization

$
0
0

I already saw the file but im confused where to add the code.

Re: Folder Customization in Windchill

$
0
0

Hello Luar,

 

Click on Edit option when you right click on the folder and then you will get the below pop up where you can select the domain which you had created

 

Domain selection.bmp

 

You can click on find to navigate to the domain you have created.

 

Thanks,

 

Athmanand

Viewing all 8876 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>