02-03-2021 01:36 PM
Hi Team,
I am working with a pipeline to grab a Item Fulfillment record under one subsidiary and then transitioning that IF to a new IF in the other. It is a 1 for 1 transaction on our side, so the data that we pull will be the same as the data input under the new company. That being said I continue run into the error below. I will post my mapping as well. I have tried a few different things and still seem to cum up short on this one and would love some insight.
Here is the mapping currently.
02-03-2021 02:14 PM
Hi Trevor,
The expressions on the left side of your mapping table are truncated. Can you please paste them here?
02-03-2021 03:08 PM
1: $[‘soapenv:Body’].getResponse.readResponse.record[‘tranSales:itemList’][‘tranSales:item’]
2: $[‘soapenv:Body’].getResponse.readResponse.record[‘tranSales:customFieldList’][‘platformCore:customField’].custbody_tvone_original_sales_order[‘@internalId’]
3: true
4: False
02-03-2021 03:54 PM
Try copying the entire itemList rather than individual items:
$['soapenv:Body'].getResponse.readResponse.record['tranSales:itemList']
mapped to
$record.itemList
If you do this you can drop the last two mappings.
02-03-2021 04:02 PM
Actually, I think it’s more complicated than that. Let me follow up with you tomorrow on this.