Retrieving information from TeamCenter

0
Hello everyone! I have a problem retrieving information from TeamCenter. I could retrieve info about “Item” but I also want to retrieve info about “ItemRevision”. I copy the microflow from TeamCenter Sample App, but in my app the result is empty. Here is the microflow, with the results in console and the page from the app. Any idea? Thanks!   (Business objectmapping: 'ItemRevision=TcConnector.ItemRevision;User=TcConnector.User;ReleaseStatus=TcConnector.ReleaseStatus;Group=TcConnector.Group')     This association is always empty, so the flow goes to the true arrow.        
asked
3 answers
0

What are the values of the fields in your ItemRevisionSearchCriteria?

If your search term doesn’t match any data, then nothing will be returned

answered
0

Hi Colin!

This is the Entity:

I enter the correct id when I search, but I don’t know how it is connected with the TC.

If you need anything extra, let me know.

Thanks!!

answered
-1

Your search input contains a field "item_id" which doesn't match any of those in the "Item Revision..." query definition in Teamcenter

If you enable extra logging for TcConnector it may show you this

Depending on the version of the Teamcenter Connector you are using, you should change the field to be either "ItemID" (3.6.0 onwards) or "Item_ID" (prior to 3.6.0)

answered