UFN_COUNTRY_GETVALIDATIONCOUNTRIES
Returns the country IDs for which validation is allowed.
Return
Return Type |
---|
table |
Definition
Copy
CREATE function dbo.UFN_COUNTRY_GETVALIDATIONCOUNTRIES()
returns Table
as return
-- Validation provider will set whether or not browsing is supported for the given country code
select ID as COUNTRYID,
cast(1 as bit) as BROWSABLE
from dbo.COUNTRYVALIDATIONINFO
where ALLOWVALIDATION = 1