Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
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";