Hi Ashok,
Have you found the documentation on this:
https://docs.mendix.com/appstore/modules/teamcenter-extension/
Perhaps more importantly an example application:
https://marketplace.mendix.com/link/component/225910
Hope this helps!
KR,
Hi Ashok, To populate dropdown values in Mendix using data from Teamcenter, follow these steps:
Fetch Data from Teamcenter Use Teamcenter’s REST or SOAP APIs to get the required values. Call these services in Mendix using a REST call or custom Java action (for SOAP).
Store and Map Data Create a non-persistent entity (if data is temporary) or persistent entity (if caching is needed). Use import mappings or a microflow to store the API response.
Bind Data to Dropdown Use a reference selector widget and set the data source to your entity. Use a microflow data source if you're loading values dynamically.
I hope this helps you! :)