How to get Drop downs in mendix from teamcenter

0
Hi Team, I'm currently working on integrating Teamcenter with Mendix, and I'm fairly new to both environments. I'm trying to dynamically populate dropdown values in Mendix using data from Teamcenter. Could someone please guide me on the best approach to achieve this? Specifically: How can I fetch dropdown values from Teamcenter? What’s the recommended way to bind this data to a dropdown widget in Mendix? Are there any best practices or examples for this kind of integration? Any help, examples, or documentation links would be greatly appreciated! Thanks in advance!
asked
2 answers
0

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,

answered
0

Hi Ashok, To populate dropdown values in Mendix using data from Teamcenter, follow these steps:

  1. 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).

  2. 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.

  3. 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! :)

answered