Problem: The operation fails, and NULL <datatype> values are not currently supported in the SAP Message Client appears in the WorkflowClient log.
Solution 1: Modify the MBO definition so that none of its attributes have a NULL value. For example:
select emp_id, dept_id, emp_fname, emp_lname, start_date, termination_date = CASE WHEN termination_date is NULL THEN '9999-01-01' ELSE termination_date END from employeeSolution 2: Add a filter class for the MBO definition to convert the NULL value to a non-null value for attributes.