David,
We ended up having to change the way we added the fields in the iterator. Here's a sample code to see the before and after.
Old:
P_REPLACEMENT_BEE =
CL_HTMLB_INPUTFIELD=>FACTORY( VALUE = M_ROW_REF->MANUAL_HOURS
_VALUE = P_CELL_BINDING
ALIGNMENT = 'RIGHT'
DISABLED = V_DISABLED ).
New:
data: col_inputfield TYPE REF TO cl_htmlb_inputfield.
CREATE OBJECT col_inputfield.
col_inputfield->id = p_cell_id.
col_inputfield->value = get_column_value( column_name = p_column_key ).
p_isreadonly = v_disabled.
col_inputfield->ifur_d08_inputfield~enabled = 'X'. " Design2008
p_replacement_bee = col_inputfield.
Hope that helps!
Lisa