STEPS 1.Create Export Connection 2.Create Source (NetSuite) 3.Create connection for Magento. 4.Create import for Magento and give all required information such as API Name, Operation, SKU etc. 5.Perform Mapping 6.Then on running the flow we can see that the related item from the item record in NetSuite is successfully synced to Magento as Related Product.
Category: Celigo
Error in “NetSuite fulfillment to Magento Shipment Add” flow
While running the ‘NetSuite fulfillment to Magento Shipment Add’ flow an error is raised as shown below: “Could not find value for static lookup: shipmethodLookup {Lookup Key: Shiphawk Shipping} {Extractor Field: [Shipping Method]}” Solution: To resolve this flow perform lookup mapping for shipping method as shown. Then we can run the flow successfully.
Navigate your Integration App
When you open an integration, you can use the tools available from the following tabs to track the status of flows in your integration. Your Settings tab helps you customize your forms and fields at the integration, flow, export, import, or connection level. The Flows tab allows you to monitor the status of all your integration flows. The integration Dashboard shows… Continue reading Navigate your Integration App
Sync Inventory from NetSuite to a specific Source in Magento
To sync inventory from NetSuite to a specific source in Magento , we need to update the settings tab in Celigo as shown below. STEPS 1.Log in to Celigo. 2.Navigate to Settings > General > Multi Source Inventory > Map NetSuite locations to Magento 2 Sources 3.To sync inventory from NetSuite location “Main Warehouse” to… Continue reading Sync Inventory from NetSuite to a specific Source in Magento
Sync Inventory from a specific location in NetSuite to Magento
To sync inventory from a specific location in NetSuite to Magento , we need to update the settings tab in Celigo as shown below. STEPS 1.Log in to Celigo. 2.Navigate to Settings > Inventory 3.If the customer wants to get the quantity from specific locations, then choose the locations in the field “NetSuite locations to… Continue reading Sync Inventory from a specific location in NetSuite to Magento
Difference between Amazon Seller Central and Amazon Web Services
Amazon Seller Central is a platform designed for individuals, businesses, and brands to sell products directly to customers on Amazon’s marketplace. It provides a set of tools and features to manage various aspects of the selling process, such as listing products, managing inventory, processing orders, handling customer service, and accessing sales reports. Seller Central is… Continue reading Difference between Amazon Seller Central and Amazon Web Services
Custom Product Attribute missing for Mapping
Scenario: A new custom Product attribute is created in Magento. However this attribute is not available in the mapping of the flow “NetSuite Item to Magento Product Add/Update”. Solution: Run the flow “Magento Attribute Set to NetSuite Add/Update”. Even though this flow add/update the Magento Attribute set to NetSuite, it has got a connection to… Continue reading Custom Product Attribute missing for Mapping
Enable/Disable a product in Magento using Celigo Integration.
A product in Magento Catalog can be enabled or disabled using “NetSuite Item to Magento Product” Add/Update flow. To enable a product in Magento, set the mapping field of Celigo as shown. Then on running the flow and checking the product in Magento we can see that the product is enabled. To disable the product… Continue reading Enable/Disable a product in Magento using Celigo Integration.
Suitescript Hook to fetch data from an Item saved search
In the saved search the columns include stock descriptions and Quantity available. By using the Suitescript Hook we can fetch these two data from the Item saved search. The sample code for this is: define([“N/search”], function (NSearch) { var preSendFunction = function (options) { // Load the saved search var searchObj = NSearch.load({ id: ‘Provide… Continue reading Suitescript Hook to fetch data from an Item saved search
To get multiple data through XML
In the Celigo HTTP request body, we can provide data in XML format To get multiple data( eg: items ) through that XML code, we need to include a loop in the code, for this, we can use {{each data}}…{{/each}} Example code to use this: {{#each data}} <message> <messageID>{{add @index 1}}</messageID> <operationType>Update</operationType> <inventory> <SKU>{{SKU}}<SKU> </inventory>… Continue reading To get multiple data through XML