Hello guys i have a cursor like so.
Cursor c1 IS SELECT * FROM FZRASST;
-- Row of type FZRASST row
fzrasst_row c1%ROWTYPE;
when i try to reference the row id like this
fzrasst_row.rowid;
i get an error invalid indentifier? how can i reference the row id without implicitely selecting rowid? is this possible or do i need to change my select statement to select every column on the table?
Any help would be greatly appreciated.