This content has been marked as final.
Show 2 replies
-
1. Re: [Apex 18.1] APEXDEV.IG.NO_PK with IG in apex.oracle.com
fac586 Sep 13, 2018 7:36 PM (in response to jareeq)jareeq wrote:
Wanted to present issue with links but stuck with error on http://apex.oracle.com
When creating Interactive Grid as editable with table:
CREATE TABLE "EDITABLE_COL_LINKS"
( "ID" NUMBER NOT NULL ENABLE,
"TICKET" VARCHAR2(200),
"LINK" VARCHAR2(500),
PRIMARY KEY ("ID")
USING INDEX ENABLE
)Get APEXDEV.IG.NO_PK (Interactive Grid 'New' doesn't have a primary key column defined which is required for editing or in a master detail relationship.) no mater how PK is created cant get this working.
https://apex.oracle.com/pls/apex/f?p=72642:1
demo/demo1
Locally have 5.1.4 and it simply work with same definition
Check the Primary Key attribute in the ID column properties is set to Yes.
-
2. Re: [Apex 18.1] APEXDEV.IG.NO_PK with IG in apex.oracle.com
jareeq Sep 13, 2018 8:26 PM (in response to fac586)Thanks,
Do you know where I can find description of this?
It changed since in my 5.1.4 rowid column was generated automatically as PK not bothering me to declare it manually.