cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Object dependency syntax in superbom

TechnologistL
Discoverer
0 Likes
540

Hi experts,

I have a problem with dependency syntax in superbom, when creating configurable material.

I have one class (variant-300) with 8 characteristics and very big superbom.

When I want to order KMAT, I want to select in characteristic #2 option "B" and in characteristic #8 option "D".

But in superbom I want to have dependency for material (p.0150): 

-select this meterial when I choose characteristic #2 and option "B" 

and

-do NOT select when I choose characteristic #8 and option "D".

 

Example:

CHAR_2 = 'B' AND

NOT(CHAR_8 = 'D')

But this kind of syntax does not work. Would appreciate some help.

Thanks in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

Flavio
Active Contributor
0 Likes

What about something like this?

CHAR_2 = 'B' AND CHAR_8 <> 'D'
TechnologistL
Discoverer
0 Likes
It works, thank you.