Thread: Event table
View Single Post
  #2 (permalink)  
Old April 1st, 2008, 12:45
cunninghamg cunninghamg is offline
Member
 
Join Date: Mar 2007
Location: Bedfordshire England
Posts: 58
Thanks: 3
Thanked 10 Times in 9 Posts
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 2
cunninghamg is on a distinguished road
Send a message via AIM to cunninghamg Send a message via MSN to cunninghamg Send a message via Skype™ to cunninghamg
Re: Event table

Hi

You need the ie_shipmentstatus table - though you will need to join in the i_transaction table to relate it to your shipment..

select t.object_gid, s.*
from ie_shipmentstatus s, i_transaction t
where s.I_TRANSACTION_NO=t.I_TRANSACTION_NO
and t.object_gid = <SHIPMENT_GID>

Gary
Reply With Quote