0
votes

In NetSuite Web Service, for Inventory Item there is an attribute called matrixType which is responsible for defining the parent child relationship. This attribute accepts value as _parent or _child. But this attribute is not available in to update in Assembly Item via NetSuiteā€™s web-service

However, it is available if we try to do an Import via CSV. In which case we can define an item as Inventory type or Assembly type and can also define matrixType (Parent or Child) attribute.

I'm unable to find that if there is a way to do this via web-service.

Can any one help on this?

1

1 Answers

0
votes

In Web Service Item class has matrixTypeField field

public ItemMatrixType matrixType 
{
            get {
                return this.matrixTypeField;
            }
            set {
                this.matrixTypeField = value;
            }
 }

And

public enum ItemMatrixType {

        /// <remarks/>
        _parent,

        /// <remarks/>
        _child,
    }
Item.matrixType = ItemMatrixType._parent;