Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 oracle 应用程序中更改销售订单的预定发货日期时触发,但不建议在标准 oracle 应用程序表上编写触发,有什么替代方法来实现呢?
如果在表单中手动更改了销售订单的计划发货日期,则您已将表单个性化与 WHEN-VALIDATE-RECORD 一起使用并提供以下条件
TO_DATE(:LINE.schedule_ship_date) <> (SELECT TO_DATE(schedule_ship_date) FROM oe_order_lines_all WHERE line_id = :LINE.LINE_ID)
在操作中,类型:'Builtin' 内置类型:'执行过程' 参数:'提供过程名称'