cancel
Showing results for 
Search instead for 
Did you mean: 

Variant configuration

Former Member
0 Kudos

Hi

In our BOM we have following parts & condition

Tyre is charecteristic

10 Dunlop type 1 No (if chere.. Tyre is D)

20 Ceat type 1 No (if chere.. Tyre is C)

30 Fastner 2 No if Dunlop and 4 No if Ceat type

The type of type is choosen by charecteristic of tyre D and C,

Q1 can any body tell me how to write dependency to select qty based on type

Q2 In Bom when we want to define dependency for an item why Precondition & selection check box is disabled

Regards

Shreenath

Send instant messages

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

<b>Q1 can any body tell me how to write dependency to select qty based on type</b>

Procedure

1. Create a reference characteristic called QUANTITY with the following master data

reference: Table STPO field MENGE

2. Create a procedure with the following source code:

$SELF.QUANTITY = 2 if $PARENT.TYRE = 'D',

$SELF.QUANTITY = 4 if $PARENT.TYRE = 'C'

3. Allocate the procedure to BOM item 30 (component FASTENER).

<b>Q2 In Bom when we want to define dependency for an item why Precondition & selection check box is disabled</b>

On a BOM item we cannot assign a Precondition or a Constraint, thats why these are disabled. Here we can only assign Selection condition, Procedure and Actions.

Regards

Harry

Former Member
0 Kudos

Dear Mr.Harry

Thank you so much.

This was usefull

regards

shreenath

Former Member
0 Kudos

Rewards points if found useful.

Regards

Harry

Former Member
0 Kudos

Dear Harry

I have rewarded max points.