Editing object data in tables

stfkbf

Member²
When creating an object table:

create table ORDER_LINE_ATTRIBUTE
of TT_AT_ORDER_LINE;

where tt_at_order_line is the base class of an object hierarchy it is not possible to edit the table using for update in the sql window:

select treat(value(t) as tt_at_product_element),
t.rowid from order_line_attribute t
where value(t) is of ( tt_at_product_element ) for update ;

Will something like this be possible in future versions ?

Regards Thorbj
 
Back
Top