Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Itemfulfillment shipStatus
Hi
I am doing Itemfulfillment for a sale order using the following code.
NetSuiteWS.ItemFulfillment nsItemFulfillment = new Nortech.NetSuite.NetSuiteWS.ItemFulfillment();
RecordRef iRefCreated = new RecordRef();
iRefCreated.type = RecordType.salesOrder;
iRefCreated.typeSpecified = true;
iRefCreated.internalId = itemFulfillment.InternalId;
nsItemFulfillment.createdFrom = iRefCreated;
List<NetSuiteWS.ItemFulfillmentItem> nsItemFulfillmentItems = new List<NetSuiteWS.ItemFulfillmentItem>();
foreach (ItemFulfillmentItem item in itemFulfillment.Items)
{
NetSuiteWS.ItemFulfillmentItem nsItemFulfillmentItem = new Nortech.NetSuite.NetSuiteWS.ItemFulfillmentItem();
RecordRef itemRef = new RecordRef();
itemRef.type = RecordType.inventoryItem;
itemRef.typeSpecified = true;
itemRef.internalId = item.InternalId;
RecordRef locationRef = new RecordRef();
//As per client advise, this will be fixed all the times [Victory - Brisbane]
locationRef.internalId = "6";