NElliott
12/17/2021, 10:03 AMSELECT
scriptid,
name,
fieldtype,
fieldvaluetype,
BUILTIN.DF( owner ) AS owner,
lastmodifieddate
FROM
CustomField
ORDER BY
scriptid, fieldtype
This custom field query, I'd like extend to filter where the fieldtype is COLUMN but failing miserably, I tried:
WHERE CONTAINS(fieldtype, 'COLUMN', 1) > 0
to no avail.
Does anyone know if it's possible also to filter based on the record type it's assigned to, for instance "Purchase" or the value of the property if not?
I think it's a specific field per record set as per the UI whihc the XML implies is "colpurchase"...Dmitry Masanov
12/17/2021, 10:06 AMbattk
12/17/2021, 10:19 AMNElliott
12/17/2021, 11:02 AMDMS
12/17/2021, 11:53 AMSELECT
scriptid,
name,
fieldtype,
fieldvaluetype,
BUILTIN.DF( owner ) AS owner,
lastmodifieddate
FROM
CustomField
WHERE
fieldtype = 'COLUMN'
ORDER BY
scriptid, fieldtype
NElliott
12/20/2021, 8:53 AM