cancel
Showing results for 
Search instead for 
Did you mean: 

Object dependency syntax in superbom

11-25-2024 7:58 AM
TechnologistL Discoverer
630 views 2 comments
0 Likes
SAP Managed Tags
Labels
superbomsyntax
Subscribe

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.

0 Likes

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.