Hello, I have a visit activity page, in that page, I used an interaction dropdown search. when I click the customer name it will list down the customer list(i have a customer entity) but when I save that record in the visit activity page, the customer name shows like a number.
Hello,
I thing here you have missed Join Condition
You need to create a Join betwen both the Activity and Customer Entity in a Agregate
And After that you need to pass the Expression in your table someting like
GetActivity.List.Current.Customer.Name
As @Kilian Suggested,
What you are doing wrong here -
You are binding your expression to the Foreign Key. in your Activity table
I am attaching Oml for referernce example you can refer to it
If this cant help please Share Oml , or Share more screen Shots with detail previw of your Aggregate.
Hope this helps
Best Regards
Tousif Khan
Hi Prabinraj,
Check the expression that's in that column. It probably says "GetCustomers.List.Current.Customer.Id" instead of "GetCustomers.List.Current.Customer.Name" or something to that effect.
it is also save like this
It's unfortunate that we can't see what "Value" is exactly, since it's chopped off. That said, if it's saved wrong, then you need to inspect your save action. Debug the application to see where it goes wrong.