Oracle Apex Developer
Oracle Apex Developer

Reputation: 15

I'm getting No data found error when clicking on ID and editing the FORM in Oracle Apex

 When I Click on ID from one Page and it redirects to second page with data for that same id. but if there's no data for same ID i'm getting error. how to fix this?

I try to change the server side condition of the process like process works only if ID is not null, but its not working. also tried to change process type but it wasn't working.

aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

Upvotes: 0

Views: 72

Answers (1)

Koen Lostrie
Koen Lostrie

Reputation: 18720

Start by debugging your page. Enable debug from the developer toolbar, run the page that throws the error, then investigate the debug entries. Where exactly is it raising the no data found ? The form will query the current record based on the value that is passed for the page item that has been defined as primary key for the form. If a non-existing value is passed it will raise a no data found.

Upvotes: 1

Related Questions