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.
tchan help me out about SerializedInventoryItem 's serialNumber.name
SerializedInventoryItemNumbersList siinl = new SerializedInventoryItemNumbersList();
SerializedInventoryItemNumbers[] siin; string siinName="";
searchPreferences.bodyFieldsOnly = false; //it's false now!!!
_service.search(item_inventory);
when I get (getlrres.recordList[i].GetType().Name == "SerializedInventoryItem")
then
siinl = sinventoryitem.numbersList;
if (siinl != null)
{
siin = siinl.numbers;
siinName = siin[0].serialNumber.name;
}
SerializedInventoryItem 's serialNumber.name is always null ,
only the internalId is not null.
why??? I need the serialNumber 's name!!!
when the item get stock,I enter the serialNumber 's name but I can't get it through suitetalk 's api....???