In my Business Operation I need to execute a bookkeeping method every X seconds. How can I do that? There are two workarounds (I dislike both): 1. Execute bookkeeping on process start - but there might be no requests at all 2. Create a BS that sends messages to BO every X seconds - it makes production more complex and also queues might not guarantee that the method is executed on schedule. Thoughts?