问题
如何通过createdfrom的关系,用suiteql从入库单Item Receipt或者出库单Item Fulfillment来找到原始的采购订单Purchase Order或者销售订单Sales Order
解答
实际上这个关系不在body而是在line,举个例子
SELECT DISTINCT
TransactionLine.Transaction
FROM
TransactionLine
WHERE
( TransactionLine.CreatedFrom = 1223)
这样可以拿到createdfrom的数据
Comments