Class Property Descriptions via SQL Query
.png)
Hey InterSystems-Community,
is it possible to get these Property Descriptions via SQL Query for example in the Management Portal?
Best regards,
Florian
Product version: Caché 2018.1
$ZV: Ca
Discussion (0)0
Comments
These are stored as a relationship to %Dictionary.PropertyDefinition, so you can access them like this:
select * from %dictionary.propertydefinition where parent = 'Your class name here'
thx, David. That was what i'm looking for.