Documentum Concepts

DFC code for Logging In:
IDfLoginInfo logininfo = new DfLoginInfo();
logininfo.setUserName("pravar");
logininfo.setPassword("pravar");

IDfClient client = DfClient.getLocalClient();
IDfSession session = client.newSession("myDocBase",logininfo);

Creating a new document:
IDfDocument doc = (IDfDocument) session.newObject("dm_document");

Executing a DQL query using DFC:
StringBuffer sb = new StringBuffer();
sb.append("Select * from dm_document where object_name='hello'");
IDfQuery query = new DfQuery();
query.setDQL(sb.toString());
IDfCollection coll = query.execute();
while(coll.next)
{
...
}
coll.close();

Data Dictionary: Data Dictionary is a the information that server stores in repository about the object types and attributes. This data dictionary can be used by the client applications.

Rendition: A rendition is a representation of a document that differs from the original document only in its format or some aspect of the format.

Components of a Workflow:

0 comments: