Sync inventory from NetSuite to FAIRE

There exists prebuild flow “NetSuite Inventories to Faire Inventories” in Celigo to sync Inventories from NetSuite to FAIRE.

This is how the celigo flow looks like.

In export, add Name, Description, Connection, Search id, Record Type, Export Type

The hook is given below.

function preSavePage (options) {
  var x = {
    "inventories": options.data
  }
  return {
    data: [x],
    errors: options.errors,
    abort: false
  }
}

In Import side, add Name, Description, Connection, and other details.

Mapping

Please note that the search should include item, quantity available.

You can manually run the flow each time or can schedule to run at specific time.

Leave a comment

Your email address will not be published. Required fields are marked *