/** * @description search function to fetch the tax percent from the purchase order record * @param {number} poRecordsId – purchase order internal id * @return itemObj – object containing tax percentage */function purchaseOrderDetails(poRecordsId) { try { let purchaseorderSearchObj = search.create({ type: “purchaseorder”, filters: [ [“type”, “anyof”, “PurchOrd”], “AND”, [“internalid”, “anyof”, poRecordsId], “AND”, [“mainline”, “is”,… Continue reading Saved search to Fetch the Tax Percentage From Purchase order