在oracle apex中模拟按钮提交
有没有办法在进程内模拟 oracle apex 中的按钮提交?
Is there a way to simulate a button submit in oracle apex within a process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法在进程内模拟 oracle apex 中的按钮提交?
Is there a way to simulate a button submit in oracle apex within a process?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
在 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;
你想实现什么目标?我认为没有办法通过 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.