Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

apex foreign key constraint error

Parvez TunioAug 16 2022

Hi,

There was initially master detail relation I have disabled the foreign key constraint in child still i am getting this error parent key not found while inserting in child table , it seems apex has stored somewhere in meta data please help to solve this
image.png

Comments

InoL

it seems apex has stored somewhere in meta data 
No it doesn't. This realy means that there is a FK constraint violation. What is the result of

select constraint_name, table_name, constraint_type, status 
from all_constraints
where constraint_name = '<the constraint name under the red bar>'

But how are trying to make a master-detail page without a master record?

1 - 1

Post Details

Added on Aug 16 2022
1 comment
209 views