We have an ETM Channel where we want to fetch a n existing Building in Database using “Address1”.
Basically, the details that we can use to fetch Building Short Code are:
Address 1
Postal Code
We don’t see any lookup filter for Address1. Is there any work around?
Best answer by Paul McCulloch
You can fetch a list of possible Building’s into a variable, then loop through that list for the one that matches. Postcode is a supported criteria in 1.5 - so we can use that to limit the list of possible buidlings:
I haven’t tested this - so there may be syntax errors , but the concept will work.
You don’t need to do the looping in a separate variable. You could do it directly in another field. For example here’s how the default location for the matching building could be specified:
This avoids the need to do any other assyst searches (other than the buildings for a post code) - so should be fast & efficient.
You can fetch a list of possible Building’s into a variable, then loop through that list for the one that matches. Postcode is a supported criteria in 1.5 - so we can use that to limit the list of possible buidlings:
I haven’t tested this - so there may be syntax errors , but the concept will work.
You don’t need to do the looping in a separate variable. You could do it directly in another field. For example here’s how the default location for the matching building could be specified:
This avoids the need to do any other assyst searches (other than the buildings for a post code) - so should be fast & efficient.