DQL to find out custom format of the object which dm_format?
Not sure exactly what you are asking, but if you want the dm_format object associated with the a_content_type (eg pdf) associated with document (or any derived dm_sysobject type):
select * from dm_format where name='pdf'
Hi Johny,
Thanks for your reply.
I just wanted to what is the DQL to know the custom format that we are having and also the DQL to check what are the custom object type we are having into the docbase.
There isnt an attribute that you can query to determine if something is "custom" or system/out of box object type or format. For object types, there is a pattern that can help you eliminate system object types. Most of these begin with "dm_" or "rps_", and other types. Most likely your custom object types are derived from dm_document or dm_sysobject, so you can track the supertype attribute to filter what could be custom type.
There isnt a pattern for format types.