'When user returns to previous canvas

I’m new to Oracle Form 12c. I’m trying to get the cursor to return back to the location it was when the user returns to that canvas from another canvas. How would I achieve this?



Solution 1:[1]

That "location" is, basically, the item.

It means that you'll first have to "remember" where you were; to do so, use :SYSTEM.TRIGGER_ITEM system variable and store its value into a parameter or a global variable.

Then do whatever you're doing and - once you're done - navigate back to item you saved using the GO_ITEM built-in.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Littlefoot