With the Modern UI the User Defined Fields tab is gone (nice enhancement), but is there a way to find out which screens have UDF’s prior to 25R2 and after so we can make sure that catch all of them on an upgrade?
Solved
How to find out if a screen has a UDF?
Best answer by Rakshanda
Hi
Can you try below query which results same which you are looking for-
SELECT DISTINCT
sa.ScreenID,
sm.Title AS ScreenTitle,
sm.Url,
sa.AttributeID,
a.Description AS UDFDescription,
sa.TypeValue,
sa.Required,
sa.Hidden,
sa.DefaultValue
FROM CSScreenAttribute sa
LEFT JOIN CSAttribute a
ON a.AttributeID = sa.AttributeID
LEFT JOIN SiteMap sm
ON sm.ScreenID = sa.ScreenID
where sm.CompanyID=3
ORDER BY
sa.ScreenID,
sa.AttributeID,
sa.TypeValue
Login to the community
No account yet? Create an account
Social Login
Login with your Acumatica accountEnter your E-mail address. We'll send you an e-mail with instructions to reset your password.









