JDE orchestrator how to change the structure of data request output
Hello ,
Can any one let me know how can manipulate or change the structure of the data request output , example I need to retrive the invoice number from f03b11 as well the item number for this invoice from f4211 and I need the output to be like the below .
{
"invoices": [
{
"Invoice number":"123"
},
"Items":[
{
"ItemNumber":"ABC"
}
]}
. (note the standered output will put the item array out of invoices array )