Hi VC Experts,
I have a configurable material say C001.00001 with Variant class 300 Z_CB_WRL. In this there are two Characteristics like Z_BRAND with single value setting no values are assigned and another characteristic Z_GRAMMAGE with Single value and restrict able without values assigned.
Currently this material is assigned with a configurable profile in that dependency net assigned having Constraint Z_CB_GRAMMAGE
While creating sales order in the VC screen the grammage values say 200, 220, 270, 330, 450 are coming from VC table which is defined in constraint Z_CB_GRAMMAGE based on the brand.
Now the business requirement is to have a new set of Grammage values for a given Brand to be added in the VC table and don't want to use the old grammage values. During creation of Sales Order the old values should appear for the user for selection.
How to hide these characteristic values which are coming from VC table in the constraint.
Has anybody come across this kind of situation. If so, how did you resolve this please provide the code.
The constraint code is as follows
A IS_A(300) Z_CB_WRL
*CONDITIONS:
RESTRICTIONS:
TABLE Z_CB_GRAMMAGE
(Z_T_BRAND = A.Z_BRAND,
Z_T_PRODUCTSPECIFICATON = A.Z_PRODUCTSPECIFICATION,
Z_T_GRAMMAGE = A.Z_GRAMMAGE,
Z_T_STIFFNESS = A.Z_STIFFNESS)
INFERENCES:
A.Z_PRODUCTSPECIFICATON, A.Z_GRAMMAGE, A.Z_STIFFNESS
Please let me know what code do I have to include in this.
Thanks and Regards,
Kimo