cancel
Showing results for 
Search instead for 
Did you mean: 

Precondition Dependency syntax

Former Member
0 Kudos

I am trying to write a Precondition to my value .003 for characteristic MATL_THICKNESS. I want the characteristic MATL_TYPE, values NMX410 and NMX411 to display MATL_THICKNESS value .003. So if I choose NMX419 it will not display the value .003.

I have wrote this PRECONDITION, assigned to the .003 value, but got syntax errors:

MATL_TYPE = ('NMX410', 'NMX411')

Can anyon tell me why?

I do plan to use SPECIFIED MATL_TYPE as well.

Thanks,

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Otherwise you'd have to say

MATL_TYPE = 'NMX410' OR MATL_TYPE = 'NMX411'

Of course with the Specified statement and parenthesis in the appropriate places as well

MATL_TYPE SPECIFIED AND (MATL_TYPE = 'NMX410' OR MATL_TYPE = 'NMX411')

Bill

Answers (1)

Answers (1)

Former Member
0 Kudos

Make that statement

MATL_TYPE IN ('NMX410', 'NMX411')

That should do it

Bill