Latest Rev from Agile DB
From the rev table, with latest flag column considered you will be able to get latest rev of item.
Thanks,
Sagar
You can execute the below query to get the latest revision of an item from Agile DB.
select i.item_number,r.rev_number from item i, rev r where i.item_number='<Item Number>’ and r.item=i.id and i.default_change=r.change
Regards,
Anand.