You’ll still have to create a custom Task Inbox to search custom business data, and the structure of the business data should be consistent across the different task types.
In the java code for your custom Task Inbox, you’ll need to comment out one line of code:
public MyInboxSearchProvider() {
super(TASK_TYPE_ID); // task type id to search
m_searchQuery = new MyInboxSearchQuery();
getSearchQuery().getTaskTypeID().setValue(TASK_TYPE_ID);
}
public MyInboxSearchProvider() {
super();
m_searchQuery = new MyInboxSearchQuery();
}
Hope this helps,
–mark
#MWS-CAF-Task-Engine#webMethods-BPMS#webMethods