We have a view 'person_look_up' with an instead of trigger (IOT) that inserts records into the view 'relation_address_view' which also has it's own IOT.
When executing source code (via a 'Full' upgrade) we get an error because the IOT on the 'person_look_up' is created before the IOT of 'relation_address_view'.

I tried changing the 'Generation order no' of the views and the IOT procedures but it didn't change anything.
View:
- relation_address_view: generation_order_no = 100
- person_look_up : generation_order_no = 101
IOT procedures:
- relation_address_view : generation_order_no = 100
- person_look_up : generation_order_no = 101
How do we solve this issue?