Hi all,
I can query all custom attributes of my object type 'test_type' including repeating attributes with following DQL query.
SELECT attr_name FROM dmi_dd_attr_info WHERE type_name = 'test_type' AND attr_name NOT IN (SELECT attr_name FROM dmi_dd_attr_info WHERE type_name = 'dm_document')
However ,I want only retrieve only all single valued custom attributes of "test_type".
As first step i tried the following query,But its returning all attributes.
SELECT attr_name,attr_repeating FROM dm_type where name='test_type' and any attr_repeating='0'
Has any one have idea on this............
Thanks,
karthick s