This sync can be done by using Magento Category to NetSuite Add/Update flow in Celigo. The product categories in Magento is as shown below. To sync this category into NetSuite, perform mapping in celigo as shown below. Then run the flow and verify the sync in NetSuite by navigating to Customization> Lists, Records, Fields> Record… Continue reading Sync Product Category from Magento to NetSuite
Category: Celigo
Debug scripts in integrator.io
To add JavaScript debugging statements to your integrator.io scripts, call a console object method, as follows: Method Description Level console.debug(string1, string 2, …) Fine-grained informational events that are most useful to debug an application. Debug console.info(string1, string 2, …) Equivalent methods for printing informational messages to the execution log. Info console.log(string1, string 2, …) console.warn(string1, string 2, …)… Continue reading Debug scripts in integrator.io
Amazon S3 – NetSuite integration
Amazon S3 (Simple Storage Service) offers object storage of storing and retrieving data from anywhere on web. Each piece of data is called ‘object’ and stored in containers called ‘buckets’. To get connection with celigo ,the required fields are Name Access key ID Secret access key Ping bucket The prebuild flows are : Export attachments… Continue reading Amazon S3 – NetSuite integration
Install the Magento2-NetSuite Integration in Celigo
STEPS Login to your integrator.io account. In the left pane, click Marketplace. On the Marketplace page, click Magento 2. Click Install. On the “My Integrations” page, you can now find the Magento 2 – NetSuite integration app. On the tile, click Continue setup. Configure your connections. (NetSuite, Magento) Install integrator bundle. Install Magento bundle. Install Magento Extension After completing all these… Continue reading Install the Magento2-NetSuite Integration in Celigo
HTTP request body to update the Inventory quantity of a single item on Amazon Seller Central
<?xml version=”1.0″ encoding=”utf-8″ ?> <AmazonEnvelope xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”amzn-envelope.xsd”> <Header> <DocumentVersion>1.01</DocumentVersion> <MerchantIdentifier>xxxxxxxxxxxxxx</MerchantIdentifier> <FulfillmentCenterID>xxxxxxxxx</FulfillmentCenterID> </Header> <MessageType>Inventory</MessageType> <Message> <MessageID>1</MessageID> <OperationType>Update</OperationType> <Inventory> <SKU>ASUSVNA1</SKU> <Quantity>8</Quantity> </Inventory> </Message> </AmazonEnvelope>
Hook
PreMap Hook: Formatting data needed for mapping. PostMap Hook: Setting default values based on mapped data. PostSubmit Hook: Validating the response from the target system.
Sync Cancellation in Shopify-NetSuite Integration
In Shopify NetSuite integration app, there is provision to sync order cancellations from NetSuite to Shopify and vice-versa. This bi-directional behavior simplifies the cancellation process. Customers can choose to provide the reason for cancellation, auto restock inventory. NetSuite Cancellation to Shopify Cancellation Add flow syncs fully canceled Shopify orders from NetSuite to Shopify when the… Continue reading Sync Cancellation in Shopify-NetSuite Integration
Editions Of Shopify-NetSuite Integration
There are four editions in Shopify NetSuite Integration app. The editions and the flows which come under them are listed as shown. 1.Starter (previously “standard”) edition: Imports/Updates Customers from Shopify to NetSuite Imports Sales Orders from Shopify to NetSuite Imports Cash Sale from Shopify to NetSuite Imports Order Transactions from Shopify to NetSuite Exports Fulfillments… Continue reading Editions Of Shopify-NetSuite Integration
Boolean selectors in celigo
Boolean selector: NOT is enabled by default in celigo, meaning that the filter excludes any data that meets the criteria you define with the rules. If NOT is disabled, the filter includes any data that meets your defined rule criteria. Ex: If you want to exclude all records that have customer ID 1256 , select… Continue reading Boolean selectors in celigo
Cron expressions
Examples of corn expressions: * * * * * Every minute 0 * * * * Every hour 0 0 * * * Every day at 12:00AM 0 0 ? * FRI At 12:00AM only on Friday 0 0 1 * ? At 12:00AM on the first day of the month