Hi, I added a field JOBCat to the customer table and give it an Enum as the following:
enum 50102 JobsCat
{
value(0; "Web Developer")
{
}
value(1; "Mobile Developer")
{
}
value(2; "Desktop Developer")
{
}
value(99; "Jobless")
{
}
}
The problem is all customer affected to the first job in enum, question is how can I specify the job of enum by default?
for example, all customers must have Jobless which has 99 id of enum.