Hi all
I need some guidance on how to create an attribute with value for and product variant engineering version in x++
Here is the code snippet I have so far
productReleaseVerrsionAttribute.Attribute = attributeValue.RecId;
productReleaseVerrsionAttribute.insert();
attributeType = EngChgAttributeType::construct(attribute.RecId);
attributeType.setValue(textValue.RecId, _model.parmAttributeValue(),productReleaseVerrsionAttribute,false);
However, EngChgAttributeType in not accessible publicly, so will not allow me to use the public methods of that class.
Any help is appreciated.