Hi,
I'm trying to develop a service using JAVA where i can check for all decision tables in a Decision Center project and return the list of tables with errors in it.
Since decision center itself can display errors in decision tables when you enter invalid values into it (such as enter string into a date column), i think there will be an API for it.
I can find all the table using:
IlrDefaultSearchCriteria criteria = new IlrDefaultSearchCriteria(query.toString());
// Execute the query
java.util.List list = session.findElements(criteria);
But I haven't been able to figure out how to check those table for validation errors.
Could you please suggest which API can i use for that purpose?
Thanks.
------------------------------
Tuan Anh Hoang Cong
------------------------------