The error says it's the Comments field. I've corrected all fields. Some attribute values are no longer available and I am trying to correct those but it's not letting me. Other similar records are not giving me this problem when trying to update?
Re: Problem with check out edit of one record (9.1)
Re: How to reload class files in MS without restarting?
These types of questions get asked from time to time. But I think Chris Spartz has a good response here: .
The answer to your question is that it is not possible. But perhaps if you have your system set up with Eclipse, Shreyas Atre has a suggestion a little higher for your test or dev site.
(Note both of these hyperlinks go to the same discussion, but 2 different postings in the discussion.)
Re: Delete Unwanted Revision
Lee,
It indeed gets much more messy when dealing with Family Tables. In some cases I have had to resort to the Purge Management utility in order to remove some unwanted FT objects.
Re: How to reload class files in MS without restarting?
There are great posts, but I was just curious to know if anyone has any tool. Anyway I will do research on this and come up with something handy.
Re: Problem with check out edit of one record (9.1)
Can you check if there is any OIR (object initialization rule) set for this attribute with RequiredValue constraint.? I guess there might be some constraint to throw an error.
You can access this page under Business Administration of Product/Library > Utilities or Org/Site> Utilities.
Re: Problem with check out edit of one record (9.1)
But would that matter, it's only happening on this one record? All other records of the same type, with the same attributes, are allowing me to check in.
Re: Problem with check out edit of one record (9.1)
what is written in method server log?
Re: Set Up Participants
Great point. I'll try it out.
Change the workflow to use the group instead of the role. Leave the group in the context team role.
I guess I was thinking of uniformity. That may be an unnecessary restriction during the next phase of change management implementation which your suggestion seems to get around very cleanly. The changeover may take some days to verify, but I'll be sure to post back once results are in.
Re: report objects in workspaces
Hi Mike,
I don't seem to be able to find this report. Could you send it to me?
Thanks
Recover (Undo) Deleted Workspace in Windchill 10.2
How to recover (Undo) deleted workspace in Windchill 10.2. I accidentally deleted workspace that had 1 week worth work.
Any suggestions are welcome .
Re: "No Cache designated vault" exception while uploading graphics
please tell me where i can find the Site>Utilities>External Storage Administrator>Vault Configuration. and i am not the administor of the Croe ,and whether i have the right to modify .
and please tell me the detail
Re: "No Cache designated vault" exception while uploading graphics
You need to be a site Administrator to access Site Tab. Could you get hold of an administrator or administrator credentials?
There is a least preferred method of updating the db tables, if you have db access.
Thank you,
Binesh Kumar
Barry Wehmiller
Re: Recover (Undo) Deleted Workspace in Windchill 10.2
System should not allow you to delete a workspace that has checked out content. Are those item new items in workspace? Did you do a upload to server?
Thank you
Binesh Kumar
Barry Wehmiller
Re: Recover (Undo) Deleted Workspace in Windchill 10.2
I had no checked out objects. I did not upload on server.
Re: Recover (Undo) Deleted Workspace in Windchill 10.2
There is a recovery tool available from Ron Thellan somewhere on this site that may help.
There have been other posts about this in the past month.
If you have not run remove unreferenced files, you may be able to recover your files by running that command with the option to move the files to the unreferenced folder and then search the file headers for your files.
Re: Recover (Undo) Deleted Workspace in Windchill 10.2
Here it is
Re: "No Cache designated vault" exception while uploading graphics
thank you , I am not the Croe administer , I am just a user.
Re: Recover (Undo) Deleted Workspace in Windchill 10.2
Thank you all for helping me out with this. I was able to recover all the assemblies and drawing with use of the tool.
Re: Find all EPM Documents without Visualisation
Hello Tom,
Sorry for the delayed response. Is this what you are looking for?
SELECT edm.documentnumber, edm.name, edm.cadname, ed.versionida2versioninfo "Rev", ed.iterationida2iterationinfo "Iteration", di.NAME ,ad.filename, ad.role FROM epmdocument ed, epmdocumentmaster edm, derivedimage di,APPLICATIONDATA ad, HOLDERTOCONTENT htc WHERE ed.ida3masterreference =edm.ida2a2 AND ed.ida2a2 IN di.ida3therepresentablereferenc and htc.ida3b5 = ad.ida2a2 AND htc.ida3a5 = di.ida2a2 and ad.ROLE='ADDITIONAL_FILES'; /* Use ad.Role type PRODUCT_VIEW_* for Creo view, THUMBNAIL* from Thumbnails and ADDITIONAL_FILEs for Additional file types */
Thank you,
Binesh Kumar
Barry Wehmiller
Re: Find all EPM Documents without Visualisation
Thanks Binesh Kumar! I've actually spent the last several days working on this. It took quite a while to locate the "Holder To Content" table. I wish I would have seen that sooner. Oh well. Here's what I've come up with so far.
In order to find documents that are missing either their representations or were published without additional files, I had to do multiple LEFT JOINs. To further complicate this we have a parameter that may exist in the CAD objects that is used to control publishing additional files (EXPORT_DATA yes/no).
This is just for drawings at the moment:
SELECT edm.CADName "CAD Name", ed.statestate "State", ed.versionIdA2versionInfo "Rev", ed.iterationIdA2iterationInfo "Iter", ss_di.[Publish Name], ss_di.[Publish Description], ss_di.[File Type], ss_di.[Additional Files Name], ss_export.EXPORT_DATA FROM windchill.EPMDocumentMaster edm JOIN windchill.EPMDocument ed ON edm.idA2A2 = ed.idA3masterReference LEFT JOIN ( SELECT ss_ad.[File Type], ss_ad.[Additional Files Name], ss_ad.idA3A5, di.idA3theRepresentableReferenc "EPM idA2A2", di.name "Publish Name", di.description "Publish Description" FROM windchill.DerivedImage di LEFT JOIN ( SELECT ad.fileName "Additional Files Name", ad.role "File Type", htc.idA3A5 FROM windchill.HolderToContent htc, windchill.ApplicationData ad WHERE htc.idA3B5 = ad.idA2A2 AND ad.role = 'ADDITIONAL_FILES' ) ss_ad ON di.idA2A2 = ss_ad.idA3A5 WHERE di.defaultRepresentation = '1' ) ss_di ON ed.idA2A2 = ss_di.[EPM idA2A2] LEFT JOIN ( SELECT bv.idA3A4 "EPM A2", bv.value "EXPORT_DATA" FROM windchill.BooleanValue bv, windchill.BooleanDefinition bd, windchill.LWCIBAAttDefinition iba WHERE bv.idA3A6 = bd.idA2A2 AND bd.idA2A2 = iba.idA3A7 AND iba.name = 'EXPORT_DATA' ) ss_export ON ed.idA2A2 = ss_export.[EPM A2] WHERE edm.docType = 'CADDRAWING' AND ed.latestiterationInfo = '1' AND ed.statestate = 'RELEASED' AND ( ss_di.[Publish Name] IS NULL OR ss_di.[Additional Files Name] IS NULL ) AND ( ss_export.EXPORT_DATA = 1 OR ss_export.EXPORT_DATA IS NULL ) ORDER BY edm.CADName, ed.versionIdA2versionInfo, ed.iterationIdA2iterationInfo, ss_di.[Publish Description], ss_di.[File Type];
I've also attached the SQL query itself (the formatting looks much better).