Hii all i am developing an application where i want all the document types through dfc..
i.e the document types that appears when we create a new document in webtop.
How can I achieve this.
Thanks
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
Dear Durgesh,
you can get the list of sub-types of dm_document using the following query and populate the same in the UI control of your applcation.
select name from dm_type where super_name like 'dm_document'.
you have to execute this query in Dfc similar code below:
IDfQuery query = new DfClientX().getQuery();
query.setDQL("select name from dm_type where super_name like 'dm_document'");
IDfCollection co = query.execute(session, IDfQuery.DF_READ_QUERY );
Hope this helps,
Ranga.
Thanks Ranga.
Its been of great help.