| Re: Transactions in OTM OTM doesn't have the concept of integration or transmission/transaction priorities or QOS (for instance making transactions from one customer higher than others, to bump them up to the front of the line). Instead, the integration server is a better place to put this type of business logic.
However, as Bob has noted - you can use the behavior of OTM in various ways. For instance, locations will be processed within a transmission before transorders, etc. Also, depending on how you send integration to OTM, you can force behaviors. If you send all of your integration transactions in a single transmission, they will be processed serially, one after another. However, if you break them up within your integration server and post each transaction as a separate transmission, then they will be processed in parallel. This important if you need to maintain order for some reason. By the same token, you can utilize thread groups to do the same -- to force various types of integration transmissions to get processed serially, in a first-in, first-out basis.
Again, though - OTM is still fairly simplistic in it's integration handling and does not offer QOS.
--Chris |