|
Re: How does one make next_record built-in working automatic? [message #324677 is a reply to message #324662] |
Tue, 03 June 2008 12:11 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Martin Eysackers
Messages: 80 Registered: October 2005 Location: Belgium
|
Member |
|
|
for your DT datablock, change navigation style to :
change record
for your DD text item set Automatic skip to Yes
or if you want to go to a new record each time the user saves the changes (commit) you could write a Key-Commit trigger :
commit_form;
if not form_success then
raise form_trigger_failure;
end if;
next_record;
you can not navigate in a when-validate-item that's why next_record did not work
|
|
|
|
|