APEX 4.0.2. using ROWID in INTERACTIVE REPORT
Hello *,
I have a problem using the rowid with interactive reports.
I have a table with IDs without any primary keys, constraints etc.
The only ID I want to change is the ID that characterizes a row.
Instead of using a new column 'ID' I thought I'd be better using the rowid.
So I created a new item P41152_ROWID in which the interactive report loads via 'Link Column' the value #ROWID#.
Works pretty well but on the next page the SQL Procedure
update TABLE set ID_ART = :P41154_ID_ART where ROWID = :P41154_ROWID;
excepts with an "invalid rowid" error.
Even
update TABLE set ID_ART = :P41154_ID_ART where ROWID = CHARTOROWID(:P41154_ROWID);
does not work.
Is there any hint? :-(
Edited by: roman on 30.06.2011 03:30