Hello gurus
I have a class with 3 characteristics:
Continent - Asia, Europe and Africa
Country - Japan, China, Germany, Spain, Egypt and Congo
Language - Japanese, Chinese, German, Spanish, Others
Where created object dependencies (precondition) for example:
1 - Characteristic Continent, value is: Europe:
Precondition is: Country = 'Germany' or Country = 'Spain' or Language = 'German' or Language = 'Spanish'
2 - Characteristic Country, value is: 'Germany'
Precondition is: Continent = 'Europe' or Language = 'German'
3 - Characteristic language, value is: 'German'
CONDITION: CONTINENT = 'EUROPE' OR COUNTRY = 'GERMANY'
Result is (for example):
Continent - Europe
Country - Germany
Langauge - German
Starting in this point, I can enter manually value in Continent (for example) Asia, and my result is changed to:
Continent - Asia
Country - Germany
Langguage - German
It´s wrong!!!
My question is::
Is there a way to lock insertion manually in these characteristics? Is possible only accept selected values for precondition?
Regards