blaje02 My problem is changing the record status from insert to changed.
cur_rec number;
cur_rec := Get_Block_Property( 'blk_1', CURRENT_RECORD);
SET_RECORD_PROPERTY( cur_rec, 'blk_1', STATUS, CHANGED_STATUS);
so i imagined that if I change the record status to changed I would be able to save an edited record. But it looks the code for set_record property is not seen.
Does this explain what I want?