Hello
I'm using Apex 20.2 and I want to highlight the current row being processed by the ARP process if it fails.
In a tabular form, I could use this method for instance:
BEGIN
apex_error.add_error(p_message => 'Error message'
,p_column_alias => 'COLUMN_NAME'
,p_region_id => '123456'
,p_display_location => apex_error.c_inline_with_field_and_notif
,p_ignore_ora_error => TRUE
,p_row_num => 2
);
END;
This does not work for a grid. The error message shows at the top of the page but the row/column in the grid is not highlighted. Is there a way to achieve this with a grid?
NOTE: I cannot use column validations for this.
Thanks
Luis