get the id of fetched row

0
Hi , I am not finding a way to get the id (generated by mendix in database for each row inserted) and populate the same in an object. can you please let me know how can i get the id
asked
1 answers
1

In a microflow, you can use the getGUID Java action from the Community Commons module to get the Mendix generated ID.  Then if you want to store this for later access, you can create a column in your entity and use a Change action to update the attribute.

If you don't have the Community Commons module in your project, it can be downloaded from the appstore.

Perhaps you could share a bit about what you are trying to accomplish as using the Mendix generated GUID is rarely the best way to build your model in Mendix.

answered