cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding Variant configuration

Former Member
0 Kudos

Hi gurus

I have to write procedure with set_default

as if i select eg Charcteristics - ASD - with values ASD11 and BSD - wtih BSD11 so combination is\

like if i select ASD11 from ASD and BSD11 from BSD the i should get another characteristics from

CSD - CSD11 as default

how to write the proceudre for that

Please i need reply for this

Thanks in advance

Rajesh

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Thanks

Former Member
0 Kudos

Thank u Mr. Bill Hooper

i have done that

As u said i am not able to connect two characteristics, it is working very fine as u said for single characteristics values but i should combine two characteristics values and based on that i have to set a default value

$SET_DEFAULT ($self, char, 'value') if char = 'value'

it is for single how to write to more that one ie combination of two or more

How to do that

Thanks

Former Member
0 Kudos

Actually that last reply is not going to Default it, it's going to make it a required entry.

What you want is a Procedure attached to the config profile that says $SET_DEFAULT ($SELF, CDS11, 'CDS111') IF (whatever your other values were.....)

Just remember you are going to need the inverse logic for $DEL_DEFAULT(...) or it will never go away

former_member183879
Active Contributor
0 Kudos

Hi,

You have to create a select condition dependency for this.

It should be something like this.

Create a dependency say ZCSD1

The code is ASD EQ 'ASD11' and BSD EQ 'BSD11'

Now save the dependency.

Now go to the characteristic CSD

Select the value CSD11 and in the menu.... assign the dependency

There assign the dependency ZCSD1

Now if you configure the class in your sales order, you can see that CSD becomes CSD11 when ASD = ASD11 and BSD = BSD11

Hope this helps