Hi ,
I am using Oracle APEX 24.2
i am trying to populate a column(CREATED_BY) in the interactive grid .
i have created a dynamic action on the level of the Interactive grid:
Event When : Save [Interactive Grid]
True action → Execute Server side condition
SQL code:
DECLARE
BEGIN
:CREATED_BY :='11';
END;
it's giving this error:
ERR-1002 Unable to find item ID for item "CREATED_BY" in application.
i guess it's not finding the column or it's not correctly referenced in the SQL code.
Any help ?