Changelog
0.8.0-alpha.7 - 2020-11-23
Fixed
Data Mapping - Duplicate error message displayed on required field failure in monitoring page fixed #747
Data Mapping - Delete field in target object when its empty (null, undefined, void, empty object, empty array) #748
0.8.0-alpha.6 - 2020-11-22
Fixed
Scheduler - Schedule jobs stopped after scheduler service restarted #749
Changed
Flow Step - Current iteration data will be stored inside
currentCtx.item
.currentIterData
still work but, when we wanna store any data to current iteration data then migrate tocurrentCtx.<field>
Added
Data Mapping - String literals can be directly mapped using source field with either wrapped into single quote or double quote #740
Source field : "Nexus"
Target field : ProductName
Output :
{ ProductName: "Nexus" }
Data Mapping - Number can be directly mapped using source field #740
Source field : 20000.00
Target field : Amount
Output :
{ Amount: 20000.00 }
Data Mapping - JSON Object can be directly mapped using source field wrapped with tick symbol(`) #740
Source field : `{"Name": "Nexus", "Version": "0.8.0-alpha.6"}`
Target field : Amount
Output :
{ Name: "Nexus", Version: 0.8.0-alpha.6
-------------------------------------------------------------------------------------------------
Source field : `["Nexus", "Oracle", "ADB"]`
Target field : Amount
Output :
['Nexus','Oracle','ADB']
Data Mapping - Global context, meta and currentCtx can be directly mapped to target field even with input assignment has been set already #740
Sample data mapping screen

Last updated
Was this helpful?