Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to highlight row with error from Interactive Grid Automatic Row Processing

LuisCabralFeb 18 2021

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

Comments
Post Details
Added on Feb 18 2021
0 comments
259 views