当用户返回到上一个画布时
我是 Oracle Form 12c 的新手。我试图让光标返回到用户从另一个画布返回到该画布时的位置。我将如何实现这一目标?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上,“位置”是项目。
这意味着您首先必须“记住”自己在哪里;为此,请使用
:System.Trigger_Item
系统变量,然后将其值存储到参数或全局变量中。然后,请执行您正在做的任何事情,一旦完成 - - 使用保存使用
go_item
内置。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.