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.
Update ItemFulfillment take too long
fils[0].setShipStatus(ItemFulfillmentShipStatus._packed);
fils[0].setPackageFedExList(addFedExPackage(weightField.g etText(),lengthField.getText(),heigthField.getText (),widthField.getText()));
WriteResponse res2 = _port.update(fils[0]);
if (res2.getStatus().isIsSuccess()) {
//Success
}
public ItemFulfillmentPackageFedExList addFedExPackage(String weight,String length,String height, String width){ // ups package
ItemFulfillmentPackageFedExList FedExPackageList = new ItemFulfillmentPackageFedExList();
ItemFulfillmentPackageFedEx[] pkg = new ItemFulfillmentPackageFedEx[1];
pkg[0] = new ItemFulfillmentPackageFedEx();
pkg[0].setPackageWeightFedEx(Double.parseDouble(weight)) ;
pkg[0].setPackageLengthFedEx(Math.round(Double.parseDoub le(length)));
pkg[0].setPackageHeightFedEx(Math.round(Double.parseDoub le(height)));
pkg[0].setPackageWidthFedEx(Math.round(Double.parseDoubl e(width)));
FedExPackageList.setPackageFedEx(pkg);
return FedExPackageList;
}
Itemfulfillment is created once workers finish picking.
Here is my code to update item fulfillment from "picked" to "packed" with dimension and weight.