Hi All,
I had
a) created the custom repository type
b) created the TBO interface
c) created the TBO implementation class
d) implemented the methods of IDfBusinessObject
e) coded business logic by adding new method
I had created the JAR files for both interface class file and implementation class file.
In Composer, I created two JAR definitions that points to JAR files containing Java interface and implementation classes.I also created module with name as my custom type and installed the project into repository.
But whenever I import a file in Webtop, the TBO doesn't get invoke.
Part of my code:
IDfSysObject newDoc = (IDfSysObject) sess.newObject("dm_document");
newDoc.setKeywords(0, "Keyword1"); newDoc.setKeywords(1, "Keyword2"); newDoc.save();
System.out.println("TBO Invoked");
Please correct me, if I am doing wrong.......Thanks in advance
Regards
Swarup