Re: How do you set a Document's Name in an OIR?
That allows me now to specify the rule and upload the OIR, but when I try to create a document, if I leave the name field blank, it specifies that it is a required field. If i give it a value, that is...
View ArticleRe: How do you set a Document's Name in an OIR?
I remember seeing something on this and I think you need to make the OIR "aware" of the IBA(s) that you are using with VarDef and then using the value with VarRef. Look in the Help Center under Syntax...
View ArticleRe: Drawing distribution and release process using Windchill
Look into the Change Management workflows (Change Notice/Change Activity) for your release process. I've implemented it and have been very happy with the results. It was fairly easy to tailor to our...
View ArticleRe: Oracle / Windchill File count
When using these joint tables I still only get a few more results - SQL> select count(*) from 2 epmdocumentmaster edm, 3 epmdocument ed 4 where 5 upper(edm.name) like '%.PRT' and 6...
View ArticleRe: PLM and SAP Integration
Hello, We have a customer who purchased ESI to integrate with their SAP (Windchill 10.2M020). However, they do have security requirement to pass information through SAP PI only. Is there any way to use...
View ArticleRe: Oracle / Windchill File count
Ahh. You need to query the cadname field instead of name field in epmdocumentmaster ie:select count(*) from epmdocumentmaster edm, epmdocument edwhere edm.cadname like '%.asm' and...
View ArticleHow to setup a Remote apache webserver when no access to the Windchill loadpoint
Hi, I have previously sucessfully setup a Windchill 9.1 Remote Apache server located in a DMZ (for external Internet access) that had no access to the Windchill Server's application loadpoint. I have...
View ArticleRe: Oracle / Windchill File count
Perfect Randy thank you very much for that! This is exactly what I was looking for! Just to confirm to anyone reading this back in the future these are the commands I ran select count(*)...
View ArticleRe: How to get "Synchronize" component in the workflow in the javacode
Archana, Your question does not provide enough information about what you are trying to do. I will say that the Help Centre covers information on using Synchronization Robots. There are different...
View ArticleRe: What is the best way to call a custom java class methods present in...
Just in case people hadn't run across it yet... There is a group on here dedicated to Windchill Customization. While it might not provide an answer to this question, if enough people get involved...
View ArticleWindchill and AutoCAD External references
Hello everyone,I am learning Windchill and I am looking for information on how to attach AutoCAD external references, the referenced file can be another dwg, a tif or a pdf, all of them are in...
View ArticleRe: How to setup a Remote apache webserver when no access to the Windchill...
So for the app-<yourWindchillWebAppNameHere>.properties (e.g. app-Windchill.properties) file in Apache/conf/extras, you'll want to modify/ensure two lines:...
View ArticleRe: Workflow Activity Routing based on Attribute
Please find the below error, Checking Syntax...C:\ptc\Windchill_10.2\Windchill\temp\WfExpression99308.java:43: error: illegal start of expression )...
View ArticleRe: Workflow Activity Routing based on Attribute
Try below expression. if (primaryBusinessObject != null){try{com.ptc.core.lwc.server.PersistableAdapter obj = new com.ptc.core.lwc.server.PersistableAdapter(primaryBusinessObject,null,...
View ArticleEmail notification when needed
Our business unit director want to be emailed as part of a workflow but only when necessary. Currently there is an email node that sends out an email to multiple users each time a document is created...
View ArticleRe: Workflow Activity Routing based on Attribute
Now, there is no syntax error, but Default "Route2" option is executing. If choose IF condition as null, throwing an error. ATTENSION: null ThanksMahesh
View ArticleRe: Email notification when needed
Hello Greg, We actually have this setup in our CN workflow. There are certain groups that only need to see certain CNs so we control it via attributes in the CN. However, our users can update these...
View ArticleRe: How to get "Synchronize" component in the workflow in the javacode
Hi Shreyas,Thanks for ur reply. Hope u have remembered my earlier post "workflow tasks to get in the code" for which u have provided me a solution.In the same way, can u please let me know is there...
View ArticleRe: How to get "Synchronize" component in the workflow in the javacode
Sorry for the typo. It is not entering in to the below code when it is stuck at "Sync robot" in the workflow if(obj instanceof WfSynchRobot){WfSynchRobot...
View ArticleRe: Email notification when needed
That's exactly what I was thinking...I setup a variable (boolean) on the task so there is a checkbox for the user to select...or not. Now I need to figure out a true false code to enter into the...
View Article