Hi Team I have TO with 5 item fulfillment in NS w...
# integrations
d
Hi Team I have TO with 5 item fulfillment in NS which means if i click receive it will tell me to choose the IF using Script i can do this
Copy code
record.transform({
  fromType: record.Type.TRANSFER_ORDER,
  toType: record.Type.ITEM_RECEIPT,
  fromId: fromId,
  defaultValues: {
    itemfulfillment: itemFulfillmentId
  }
});
but in Celigo there is no option to choose the item fulfillment using IR record type any advice Thanks
t
Hi @Driss Talainte you can do this in Celigo. I'll try to find an example
Try this. Basically map the transfer order id to created from internal id and then map your item fulfillment to itemfulfillment and then set this field to initialize on record
The initialization setting is what makes it choose the correct IF to go against
2
d
@Tyler Lamparter Thank you so much
it worked
👍 1