在oracle apex中模拟按钮提交

发布于 2024-11-15 17:14:26 字数 38 浏览 4 评论 0原文

有没有办法在进程内模拟 oracle apex 中的按钮提交?

Is there a way to simulate a button submit in oracle apex within a process?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初熏 2024-11-22 17:14:26

在 apex 过程中,您可以进行类似 if :request = 'SUBMIT' 的检查,然后

编写您的 pl/SQL 处理语句并
如果您想重定向到任何页面/URL,请使用以下示例语句
OWA_UTIL.redirect_url('f?p=103:4')

结束 if;

In the apex process you can have a check like if :request = 'SUBMIT' then

Write your pl/SQL processing statements and
If you want to redirect to any page / URL then have the below example statement
OWA_UTIL.redirect_url('f?p=103:4')

End if;

雨的味道风的声音 2024-11-22 17:14:26

你想实现什么目标?我认为没有办法通过 Apex API 发送按钮提交,但根据您的要求,可能会获得相同的效果。

What are you trying to accomplish? I don't think there is a way to send a button submit via the Apex API, but based on what your requirements are, the same effect might be obtained.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文