My Stuff
-
Re: Saved Search to find most recent Item receipt by item
@User_TRQT3 - I think Suite Answer 30880 would work for you Scenario Saved Search to Show the Last Item Receipt Date per Item and its Age as of Today Solution 1. Navigate to Lists > Search > Sa…2 -
Re: Populate Expected Delivery Date in a saved search
{allocatedsupply.expecteddate}1 -
Re: Invoice transaction line items not updating aftersubmit
You said your log showed three results, so I assume you have a loop set up somewhere. I think you need another one: if (invoiceResults.length > 0) { for (i = 0; i < invoiceResults.length; i++) …3 -
Re: Invoice transaction line items not updating aftersubmit
maybe add "AND", ["mainline","is","T"] to the search?1 -
Re: case when with TO_CHAR combination saved search formula
You have an extra else: CASE WHEN {vendorline.internalid} in (22293,87622) THEN TO_CHAR({vendorline.internalid}) WHEN{vendor.internalid} in (22285,22287) THEN TO_CHAR({vendor.internalid}) ELSE '…1