如何禁止 Oracle Forms 中没有详细信息的主从插入
我正在尝试创建一个代表订单的块,并且该块与 order_itens 块具有主从关系。 如果我在 order_itens 中没有任何记录,我需要禁止保存此数据结构。
I'm trying to create a block which represents an order and that block has a master-detail relationship with the block order_itens.
I need to forbid the saving of this data structure IF i don't have any records in order_itens.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是使用 POST-FORMS-COMMIT 触发器。在插入、更新或删除所有数据之后但在数据库提交之前触发此事件。所以你可以这样做:
One way is to use a POST-FORMS-COMMIT trigger. This fires after all data has been inserted, updated or deleted but before the database commit. So you can do something like: