using the rest API to transform a transfer order t...
# ask-stanley-ai
m
using the rest API to transform a transfer order to an item receipt, where a transfer order has multiple fulfillments, how do I signify which fulfillment I am receiving?
c
AI generated answer (using internal Slack threads):
When transforming a Transfer Order to an Item Receipt using the REST API, and the Transfer Order has multiple fulfillments, you can specify which fulfillment you are receiving by using the
auxReference
element or by setting the
defaultValues
on your transform. In the first approach, you can initialize an item receipt from the transfer order and use the
auxReference
element to specify which item fulfillment you are receiving. This is done in the context of SuiteTalk. In the second approach, you can pay attention to the URL's query parameters after you have selected which fulfillment to receive in the UI. These query parameters are
defaultValues
which you need to set on your transform. Here is an example of how you might do this:
Copy code
javascript
var receiptRec = record.transform({
            fromType: record.Type.TRANSFER_ORDER,
            toType: record.Type.ITEM_RECEIPT,
            fromId: data.toid,
            defaultValues: {your_default_values}
})
If you need to know which item fulfillment correlates to which line item from a search of a transfer order, you can use the
applying transaction join
or
applied to transaction join
, depending on which direction you are working from. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.868561149
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.857004583
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.848259926
Please provide your feedback on this answer.