Single threaded service

Is there a way in IS 6.1 to run a service as single threaded ?
We have a service that creates PO on a realtime basis as well the same service runs every 5 minutes.
I want to avoid to instance of this service at the same time.
Any help is appreciated.
Thanks

There is no facility to not let service get invoked more then once, but you can do some twicks to return error or something else and come out of service if it is already running. Look into your IS’s “Service Usage” page for hints. :slight_smile:

Use a mediation. That is, don’t invoke service directly, … SO publish the input to this service as a document, invoke the service thru a serial trigger.