Users can fulfill the order in NetSuite and the NetSuite connector will sync the fulfillment information back to BigCommerce. Item fulfillment in NetSuite The Users must include a tracking number on the item fulfillment for the order when fulfilling it. This will allow you to confirm the tracking number populates in your marketplace/cart. If you… Continue reading Netsuite Connector Implementation: Fulfillment Sync
Month: February 2023
Beta Testing
Beta testing is the testing done by end-users at the end user’s site. It is also known as beta-site testing or field testing. It is performed by the client or real users who are not the employees of the company. It is the last test before shipping a product to the customers. One of the major… Continue reading Beta Testing
Saved search to select transactions created in the last few seconds/minutes/hours
NetSuite provides the option to filter out the transactions created by the user in the last few seconds/minutes/hours. We can also use this method to filter out records on ‘date fields’ storing the exact time. Below is an example of a saved search to fetch the sales orders created in the last few minutes: Criteria… Continue reading Saved search to select transactions created in the last few seconds/minutes/hours
Add Discount at line level for Ordersusing NetSuite Connector
We can add discount as line items or in order header for applying in sales orders. The option is highlighted in the screenshot below
Error Notification for Inventory Sync through NetSuite Connector
We can handle the error notification in the NetSuite Connector by enabling error notification feature and adding the email address in the NetSuite Connector I have attached a screenshot for quick reference
Challenges Solving in NetSuite Connector
Managing Data properly in Different Systems. Add, update or remove product information once and propagate your changes across systems, ensuring accuracy and eliminating manual data entry. Inaccurate Inventory Levels. Accurately track inventory across multiple locations. Order Processing and Fulfillment Delays. Automatically send orders to 3PLs, vendors or warehouses. Manual Accounting Processes. Built in connectors for Shopify, Bigcommerce, Amazon
To get the link of a particular record using the script
If we need to set the record id instead of setting it by hard coding, add the following code, For Eg, we need the link to a particular sales order ‘123’ var salesOrderURL = url.resolveRecord({ recordType: record.Type.SALES_ORDER, recordId: salesOrderId, isEditMode: false }); // to get the link of the sales order var companyInfo = config.load({… Continue reading To get the link of a particular record using the script
Function to fetch the Start time and End time for saved search based on the availability of the processor.
Case: When we schedule a script to run every 6 hours, then it will run at 12 am, 6 am, 12 pm, and 6 pm. when the script runs at 6 am, then we need the data from the time 12 am up to 5.59 am. But in case of priority, the scheduler runs at… Continue reading Function to fetch the Start time and End time for saved search based on the availability of the processor.
Top sites to check your Website performance for free
While dealing with Search Engine Optimization[SEO], it is important to check your website performance in all aspects. Want to know more about the site’s outrage in loading pages, the broken links, keyword competency, and the images that negatively affect the site?Then check these pages! 1. Google keyword plan: (to check the keyword competition) Google ads… Continue reading Top sites to check your Website performance for free
Methods to connect a Saved Search in NetSuite to a Suitescript
We can create a saved search inside the suite script and run it using the ‘N/search’ module functions. But there can be instances where the search result should be fetched byrunning an existing saved search present in the NetSuite account. This is when the user wants to update the saved search conditions over time without… Continue reading Methods to connect a Saved Search in NetSuite to a Suitescript