Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
Is it possible to create a report that would return all of the documents that a specific user has promoted or released?
Windchill 10.2 M020.
To do this you have to query on lifecycle history joined to the business object you are interested in. The attached zip contains a QML that will return all the EPMDocuments that changed state to Released or Prototype between dates. Unfortunately lifecycle history does not allow you to directly join to the user object, so you have to add criteria to match username from the user objectto actor name from the lifecycle history.
Personally I would just run this for all users between dates then use Excel to filter my search results to the users I was interested in. But if you get too many returns using this approach you could easily add a parameter for username to limit things, you then have to run the same report for each user. This report is only for EPMDocuments, if you are interested in other business objects you have to either duplicate this query for those or add the extra business object and an extra lifecycle history for each to one single query.
Note that this report will return any state change event, whether by a user or by a workflow. Depending on how your workflow is configured the actor responsible for the lifecycle history change will probably be your site or org adminfor state changes during a workflow process. If you want to query on workflow tasks that is an entirely different task and I would need some more information to assist with that.
Best regards,
-----
Lewis