on 2023 Feb 28 5:12 PM
Hi
I have two characteristics for a material :
CHAR_Y_N , values 'Y' and 'N'
CHAR_INT4, numeric, 4 char, 0 decimals
Requirement:
If the value of CHAR_Y_N = 'N' there is no resctriction for value of CHAR_INT4 (from 0 to 9999)
If the value of CHAR_Y_N = 'Y' the value of CHAR_INT4 must be less then 600
How can I do this check?
Thanks in advance for help
Request clarification before answering.
Hi Andrea.
I did not model for quite some time, but it should work via a constraint.
Create a dependency net in CU21 or PMEVC and write a constraint similar to this:
OBJECTS: X IS_A(300) <your class name>
CONDITION: X.CHAR_Y_N = 'Y'
RESTRICTIONS: X.CHAR_INT4 < 600
INFERENCES: X.CHAR_INT4
'Restrictable' flag might have to be set when defining characteristic CHAR_INT4 via transaction CT04.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Michael
it works!
User | Count |
---|---|
20 | |
4 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.