Hi,
Running parallel flows, doing fetch data from different sources, result is in same format which is JSON Array, I also had it in String format.
Tried Join (found out its totally different thing), then used concat and end up having two arrays in one JSON object.
Any way to combine two arrays into one JSON array please?
Two Arrays.
[
{
"productcode":"IRECP",
"FreeStock":"5",
"ExpectedStock":""
},
{
"productcode":"N10001",
"FreeStock":"0",
"ExpectedStock":""
}
]
[
{
"productcode":"EK20",
"FreeStock":"1.00",
"ExpectedStock":"20.00"
},
{
"productcode":"EL50",
"FreeStock":"-8.00",
"ExpectedStock":"299.00"
}
]
Desired Result would be one array containing both arrays.
[
{
"productcode":"IRE10030CP",
"FreeStock":"5",
"ExpectedStock":""
},
{
"productcode":"NIK10001",
"FreeStock":"0",
"ExpectedStock":""
},
{
"productcode":"EK219SV150",
"FreeStock":"1.00",
"ExpectedStock":"20.00"
},
{
"productcode":"ELTHMC50",
"FreeStock":"-8.00",
"ExpectedStock":"299.00"
}
]
Thanks