Hi, I have a situation where in a dropdown filter, where I want to show data to that user which just he has entered in the database. No other user shall be able to see it in the dropdown. Please suggest a way to do it.
Hello Tushar, To do that you have to create and populate an attribute on your entity with the information related to the user who create the record. You might save that used Id in that field every time a record is created using the GetUserId() function :) (An example of that)
After that, and on the aggregate/data action 8assuming you are using reactive) you should filter the data according to the user id, something like:
GetUserId()=CancelReason.CreatedBy
By doing that you will filter the data that will populate the dropdown according to the user who create that records.
Best regards,
Ana