Hello,
I have created a custom enumeration with data as below;
| db_value | Client_value | Seq |
| CS01 | Class 01 Object | 1 |
| CS02 | Super Class Object | 2 |
| CS03 | Unattended | 3 |
| CS04 | Restricted Object | 4 |
| CS05 | Other | 5 |
I have another custom enum, which created an LOV in a page where the user selects something called “class” from the LOV. The enum looks like this:
| db_value | Client_value | Seq |
| CS01 | Class 01 | 1 |
| CS02 | Class 02 | 2 |
| CS03 | Class 03 | 3 |
| CS04 | Class 04 | 4 |
| CS05 | Class 05 | 5 |
However, I want to create a link between these two enums;
when a user selects a “Class”, the description (Client Value) From first table should be automatically fetched into a custom read-only field. I cannot use the same enum for the description because both types of client values are needed in different situations.
How can I achieve this without using code?
.Kalindu