cancel
Showing results for 
Search instead for 
Did you mean: 

Variant Configurator

Former Member
0 Kudos

I have created a Table that is a Decision Table (AVAIL_THICKNESSES)

I want it to serve a Precondition.

I have two characteristics MAT_TYPEB & MAT_THICKNESSB.

I need the Precondition to only show possible thicknesses for each MAT_TYPEB.

For instance

MAT_TYPEB = NMX410 only .005 and .010 are possible so I do not want .00048 to be available in the Value Assignment.

I want to be able to use the Decision Table in a Precondition so I only have to write/maintain one dependency.

Where should I assign the dependency? And what Syntax? Can this be done as a procedure and assigned to the Config Profile, again Syntax?

Thanks,

Lance

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

You would have to write $self.mat_typeb specified AND ($self.mat_typeb='005' OR $self.mat_typeb='0010' )

But you are not using your table at all this way.

Look up Tables and preconditions documentation for how to write the precond that way

Former Member
0 Kudos

go to CT04 - enter material name -go to values- selectur charectics that thickness- go to extras - Other Dependencies - Select Procedure enter in front 10 write - $self.mat_typeb='005' and save

Former Member
0 Kudos

If I understand correctly I would then have to also add

OR MAT_TYPEB=.010

And I would have to do this for each value, which is what I am trying to avoid.

Any Syntax in regards to using the Table?

Thanks,

Lance