How to remove custom fields from the Sales Order page?

Sometimes there are so many custom fields showing on the Purchase order page for a single Sales Order. There are a lot of fields that we don’t want on the order history page we need some specific fields there. As shown in the below image there are a lot of fields here. For removing we… Continue reading How to remove custom fields from the Sales Order page?

Creating Progress Billing Sales Orders

When using progress billing, a progress sales order is created and approved. When a portion of the project has been completed, the progress sales order is fulfilled. In Progress billing, the billing is happening part by part. To create a progress sales order: Transactions > Sales>Enter sales orders > New. In the Custom Form field, choose Standard… Continue reading Creating Progress Billing Sales Orders

Proposal for sending email when no items are backordered on sales order

Proposal Summary  This proposal summarizes the functionality for sending automatic emails when the sales order don’t have backordered line items and closing the sales orders when they are not pick up/ ship for 30 days.  Requirements Corp design want to send automatic emails when the sales order doesn’t have backordered line items.   The sales orders would… Continue reading Proposal for sending email when no items are backordered on sales order

How to set memo field changes in a non-editable field in Sales Order?

Scenario: Need to remove the memo or edit the memo field, The memo to be saved in a none editable field and only show the NEW memo entered or empty memo field if removing the memo. The saved memo should be named “Previous memo “and stamped with date and time! Solution: To create Saved Search… Continue reading How to set memo field changes in a non-editable field in Sales Order?

The sales order is saved, or an alert message appears: Prior to submitting the sales order, the customer record is updated.

Task: If the “Trade partner” field of the salesperson in the sales order record is checked and the currently selected customer’s “trade partner” is also checked, then the sales type will be “Builder Order.” If the checkbox is unchecked, we cannot select “builder order” in a sales order. During the testing of this task, a… Continue reading The sales order is saved, or an alert message appears: Prior to submitting the sales order, the customer record is updated.

Set Sales Order’s Supply Required by Date to current date according to account time zone via SuiteScript

var targetTime = new Date(); targetTime.setMinutes(targetTime.getMinutes() + targetTime.getTimezoneOffset()) let soRec = record.load({ type:’salesorder’, id:51451//internal is of sales order }); soRec.setSublistValue({ sublistId: ‘item’, fieldId: ‘requesteddate’, line: 0, value: targetTime }); soRec.save()