Hi Gary,
Actually it is coming from Oracle EBS pre package BPEL integration. We don't want to change anything in that. I could hide those two fields (Late Pickup and Late Delievery) in our manager Layout.
But the value for Late Delivery date is populated by Oracle EBS Purchase order promise date.
So when we make changes to early pickup or early delivery which makes late delivery date earlier than early pickup and delivery date some times
This is why i'm looking for a direct sql update to clear late_delivery_date in ob_line.
I tried with two automation agents. Both of them are not working. Can you please help me in correcting them. one is at order base creation event and another one is at order base line creation event.
1. Order Base - Created
UPDATE ob_line
SET late_delivery_date = NULL
WHERE order_base_gid = '$gid'
2. Order Base Line - Created
UPDATE ob_line
SET late_delivery_date = NULL
WHERE ob_line_gid = '$gid'
Thanks,
venkat.