I am trying to use a TBO in DFC, specifically a TBO to implement a custom doctype, and I don't have enough recent experience with them to know why it's not working for me. Here is the line that's failing:
IDfSysObject dmDoc = (IDfSysObject) dmSession.newObject("my_custom_doctype");
And here's the error message I'm getting:
[DFC_BOF_CANNOT_FIND_OBJECT] Business object com.myCompany.mySBO.mycService does not exist in docbase
For the record, I had a developer for another application that utilizes DFC code try to run it to see that it still works, since we've been having a lot of fun with our DBs lately (migrations, PW changes), and I wanted to ensure that nothing was broken in that process. But the same exact line works just fine in that other application, so clearly it's some configuration issue for my program. Do I need to include the JAR with the implementations of the SBO and TBO in the build for my application?
Sheldon