Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
Even in Advanced search I cannot find the check-in Comments field.
If we modified a objects for CAR-XXX then in the future we can search the check-in comments for all objects in the specific product / project or library for CAR-XXX. We would instantly in the future what objects were modified for CAR-XXX.
I was also thinking may be some type of report may be able to provide this info?
Thank You
Solved! Go to Solution.
Hello Bob,
Based on your advice and PTC this was the final QML and it work well
thx
In 9.1 I had this issue and resorted to a sqlplus query like this:
select
epmdocumentmaster.documentnumber,
epmdocumentmaster.name,
epmdocument.noteiterationinfo,
epmdocument.createstampa2,
epmdocument.updatestampa2
from
EPMDOCUMENT,EPMDOCUMENTMASTER
where
epmdocument.ida3masterreference=epmdocumentmaster.ida2a2
and
epmdocument.noteiterationinfo like '%CHECKIN COMMENT GOES HERE%'
You could use QueryBuilder to make a 2-column report:
You can then run the report and provide a criteria on the check-in comment, thus giving you the same capability as search.
Let me know if you'd like assistance building this report or with any other Windchill questions you may have.
Hello Bob,
I think we have decided to use a similar approach using a QML report. Its for office documents (as that's what we needed it for).
I have attached
Main issue now is we want to be able to search all iterations as the specific comment we are looking for may be in a previous iteration comment for the object (the QML I got from PTC only looks for latest object comment)
Second is we need a way to also have the object number displayed as the QML shows name etc but not the number. It’s the unique object number generated by WC
Assuming you are importing this QML into querybuilder, you can accomplish what you are looking for by:
Hope this helps!
Hello Bob,
Based on your advice and PTC this was the final QML and it work well
thx