Hi Binesh,
It helps a lot. I was hoping that I did not have to rehost because of the different URLs (certificate) but I do. The other items mentioned I sent on to the security team. Appreciate your feedback.
Regards,
Mitch
Hi Binesh,
It helps a lot. I was hoping that I did not have to rehost because of the different URLs (certificate) but I do. The other items mentioned I sent on to the security team. Appreciate your feedback.
Regards,
Mitch
Hi Iker,
I will keep an eye on it once I rehost the URL changes.
Thanks,
Mitch
When I go to create a new Change Notice, I open the form and select the box for Automatically create the Change Notice and then Complete Task. I get a pop-up saying I don't have permission to view the subject. What do I need to change to get access to complete the task? I am the system admin!
If I do not check the box for Automatic, the system says I need to create the change notice manually.
Windchill 10.0 m040
The only error I saw was this.
2016-03-23 10:54:46,034 ERROR [ajp-bio-8010-exec-40] com.ptc.core.components.beans.DataUtilityBean xxx - CaughtException while processing column: changeTask_needDate. Enable 'com.ptc.core.components.beans.DataUtilityBean' logger for full stack trace.Error converting value, "null" is not a valid Date.
We have multiple Electronics component parts which uses same CAD data.
How do we link one CAD file to multiple Electronics Component Parts? What type of links need to be used?
How do we get the CAD Viewable on every linked Electronics Component Part details page? Which type of link supports this?
Please share if there are any best practices.
Refer to this page
http://support.ptc.com/cgi/support/apps/sft_upd_dsp/sft_upd_dsp_adv.pl?product=WNC
Thanks
Binesh Kumar
Thank you! I wonder why this didn't come up when I searched the support DB . .. oh well!
Not unless you know the file codes or have them stored in a file.
You can open the image and then open the version.xml file which will tell what the file is for.
The codes do not change, just the date codes when a new version/build comes out.
All that you listed are for Windchill 10.1 (101) with various build codes (F000, M030).
From your list, I have:
60171 - InfoEngine
60318 - Service Pack
60379 - PDMLink
60418 - Services
60419 - Third Party Software
60423 - Multi-Language Pack
60686 - Index Search
60702 - PTC Solution Installer
60703 - JAVA JDK
60704 - Business Reporting
607041 - Windows Server
607042 - Solaris
607043 - HP-UX
607044 - AIX
607045 - RH Linux
607046 - Language Pack
60707 - Workgroup Managers
60756 - Point Release
60757 - Help Center
60800 - Directory Services
Some you did not list:
60310 - ProjectLink
60319 - ECAD WGM
60430 - ProductView
60481 - Aphelion DS
60482 - PV Doc Support
60758 - ProductView Client
60795 - Product Analytics Process Advisor
60898 - Common Base
61006 - CPS sets
Hopefully you can fill in the rest or some else can.
I assume it is not an ACL issue, as you are the system administrator. I remember facing the issue (with Oracle DB) when some of the indexes went to disabled state. You can check it using the below query
select index_name, table_owner, table_name, status,funcidx_status from user_indexes where funcidx_status = 'DISABLED'
If you find it disabled, you can enable it by running "alter index index_name enable"
Not sure whether you are facing the same issue, but it is worth checking
Thanks
Binesh Kumar
Thanks, that is helpful. Anything to narrow down the subject and 'crack the code' here is exactly what I need.
No rows returned
I did not set up the system, so it may be an ACL issue that I haven't found yet. I have put myself in all roles for change request and those assign me tasks and I can complete them. I did complete the review task before the Change Notice creation was triggered.
We are in the process of selling a portion of our company. We will need to move their data to it's own Windchill server. The new company will not be purchasing all the modules that we own, specifically they will be dropping ESI, PartsLink and ProjectLink. Has anybody had any experience with either of those two scenarios
Thanks,
Steve D.
Sounds like a good can of worms.
I don't have anything to offer that's helpful but interested in you end up approaching. Please keep us posted.
PTC does not "officially" support removing any module after it's been installed. I know there are companies that specialize in migrations. Might be worth talking to one of them.
One more for you to read: https://support.ptc.com/appserver/cs/view/solution.jsp?source=subscription&n=CS210470
Cummins Inc. would like to engage with the relevant Technical Committee membership and PTC Product Managers to facilitate a discussion on several Windchill Product Enhancement Ideas related to Admin role permissions and tools. Please take 3-5 minutes to indicate your interest in further discussion on the proposed topic set by completing this brief, four question survey:
Windchill Admin Permission & Tool Enhancement Requests Survey
Your responses are anonymous. Only the composite response statistics will be shared with the Windchill Technical Committee Leaders and PTC Windchill Product Managers to review opportunities for future discussion on relevant Product Enhancement Ideas.
Please respond by the end of the day Wednesday, April 6th. Thank you in advance for your participation!
Hi,
I'm trying to auto-create the Change Request once the Problem Report has been confirmed (Accepted state).
I was able to do this with an Expression Robot from a PTC support site article using this code:
wt.change2.ChangeIssue ci =( wt.change2.ChangeIssue)primaryBusinessObject;
wt.change2.WTChangeRequest2 CRNew2 = wt.change2.WTChangeRequest2.newWTChangeRequest2();
CRNew2.setName(ci.getName());
CRNew2.setOrganization(ci.getOrganization());
wt.team.Team team = wt.team.TeamHelper.service.getTeam(ci);
if (team == null) {
team = wt.team.TeamHelper.service.getTeam(CRNew2);
}
CRNew2 = (wt.change2.WTChangeRequest2) wt.fc.PersistenceHelper.manager.save(CRNew2);
CRNew2 = (wt.change2.WTChangeRequest2) wt.fc.PersistenceHelper.manager.refresh(CRNew2);
//CRNew2.setCategory("Low");
System.out.println("IN ..Save...*********" + CRNew2.getNumber());
wt.change2.FormalizedBy fb = new wt.change2.FormalizedBy();
fb.setChangeIssue(ci);
fb.setChangeRequest2(CRNew2);
wt.fc.PersistenceServerHelper.manager.insert(fb);
This works to create the new ECR, but the problem is that it is created at the Site level, and not within whatever Context the Problem Report existed.
I know I'm missing something here.
Any idea what?
Thanks in advance,
Zack
Set the folder in the OIR, using context. Look in an existing OIR for Change Request and see who it is defined OOTB.
Add this to your code, this will the set the container of change request to change issues
CRNew2.setOrganization(ci.getOrganization()); CRNew2.setContainer(ci.getContainer());
On a side note, FormalizedBy link got replaced by ChangeProcessLink in WC 11
Thank you
Binesh Kumar