currently i am facing a problem on how to update a single row in an interactive grid. am trying to update the table (Interactive Grid) based on the changes the user has made.
I followed the guide from APEX 5.1.
Unfortunately the rowid function didn't work.
My code:
update poc_sofortmassnahme
set BESCHREIBUNG_SOFORT = :BESCHREIBUNG_SOFORT,
BEARBEITER_SOFORT = :BEARBEITER_SOFORT,
ZIELDATUM_SOFORT = :ZIELDATUM_SOFORT,
WIRKSAMKEIT = :WIRKSAMKEIT
where rowid = :ROWID; // doesn't update the row.
Any help is appreciated.
