RF monitor, Assign areas & activities to queues ,TO priority

Hi,
This is with reference to RF monitor (LRF1) functionality in Mobile data entry I would like to know whether SAP has solution for below mentioned additional requirements.
1) Assigning transfer orders from one queue to other queue through LRF1
2) Changing priority as per requirements in queue through LRF1
Also I would like to know
1) How priority to be assigned in Transfer orders. I know we can set only one priority through movement type customization.
2) How to distribute load to various queues. Is it possible by the way of configuration through SPRO-Logistics Execution-Mobile data entry-RF Queue management-Defining queues. Here while defining queues we are maintaining percentage.
3)How we can add or assign more than one Queue (e.g.AB,AC etc.) to particular area(for e.g.-Stock placement).SAP is not allowing me to add in SPRO-Logistics Execution-Mobile data entry-RF Queue management-Assign areas & activities to queues.
I will appreciate your earliest reply.
Thanks & Regards,
Prashant Dhakane
TCS, WM Consultant
9819815026

Hi
1) assignment of TO's to a Queueu is standard functionality if you have enough capacity on those queue. please aware there is only one person whose able to do that at a moment (locking)
2) It's not a standard functionality
1) You can make a priority wich will be updated in a job that runs frequently. It's more important to think on wich criterea priority should be set.
2) It can be done by warehouse area or type
3) this is not possible. redefine your area's
kind regards,
Niels Blom

Similar Messages

  • Problem while assigning Servlet to Execute queue

    Hi,
    We implement a IMS S-CSCF on BEA container 2.2.
    A call for us may be several times reentrant. Meaning that for one call we have to handle at least three different dialogs but in major use cases, it will be 6 or 7 for our next deployment.
    We are currently facing to bottlenecks problems and BEA support advised me to try to check if assigning servelt to execute queue could improve the preformances.
    I just wanted to make a try with one of our servlet but I have an exception java.lang.NoClassDefFoundError: org/jaxen/JaxenException.
    Here is what I did:
    In web.xml I have:
    <web-app>
    <distributable/>
    <servlet>
    <servlet-name>register</servlet-name>
    <servlet-class>com.netcentrex.scscf.registrar.RegistrarServlet</servlet-class>
    <init-param>
    <param-name>wl-dispatch-policy</param-name>
    <param-value>REGISTRARQueue</param-value>
    </init-param>
    <load-on-startup/>
    </servlet>
    <listener>
    <listener-class>com.bea.wcp.sip.engine.server.ContextEventHook</listener-class>
    </listener>
    </web-app>
    In sip.xml I have:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE sip-app
    PUBLIC "-//Java Community Process//DTD SIP Application 1.0//EN"
    "http://www.jcp.org/dtd/sip-app_1_0.dtd">
    <sip-app>
    <display-name>SIP Servlet based Registrar</display-name>
    <distributable/>
    <context-param>
    <param-name>usc.configFile</param-name>
    <param-value>/etc/neotip/usc.ini</param-value>
    </context-param>
    <context-param>
    <param-name>icscf.configFile</param-name>
    <param-value>/etc/neotip/icscf.ini</param-value>
    </context-param>
    <context-param>
    <param-name>usc.dnsSrvFile</param-name>
    <param-value>/etc/neotip/uscDnsSrv.cache</param-value>
    </context-param>
    <listener>
         <listener-class>com.netcentrex.scscf.session.SessionServlet</listener-class>
    </listener>
    <servlet>
    <servlet-name>register</servlet-name>
    <servlet-class>com.netcentrex.scscf.registrar.RegistrarServlet</servlet-class>
    <load-on-startup/>
    </servlet>
    <servlet>
         <servlet-name>session</servlet-name>
         <servlet-class>com.netcentrex.scscf.session.SessionServlet</servlet-class>
         <load-on-startup/>
    </servlet>
    <servlet>
         <servlet-name>route</servlet-name>
         <servlet-class>com.netcentrex.scscf.fork.RouteServlet</servlet-class>
         <load-on-startup/>
    </servlet>
    <servlet>
         <servlet-name>icscf</servlet-name>
         <servlet-class>com.netcentrex.scscf.embeddedI.IEmbeddedServlet</servlet-class>
         <load-on-startup/>
    </servlet>
    <servlet-mapping>
    <servlet-name>register</servlet-name>
    <pattern>
    <equal>
         <var>request.method</var>
         <value>REGISTER</value>
    </equal>
    </pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>session</servlet-name>
    <pattern>
         <and>
              <not>
              <equal>
                        <var>request.method</var>
                        <value>REGISTER</value>
              </equal>
              </not>
              <not>
         <exists>
                   <var>request.uri.param.uscroute</var>
              </exists>
              </not>
              <not>
         <exists>
                   <var>request.uri.param.icscfroute</var>
              </exists>
              </not>
         </and>
    </pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>route</servlet-name>
    <pattern>
         <and>
              <not>
              <equal>
                        <var>request.method</var>
                        <value>REGISTER</value>
              </equal>
              </not>
              <exists>
              <var>request.uri.param.uscroute</var>
         </exists>
         </and>
    </pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>icscf</servlet-name>
    <pattern>
         <and>
              <not>
              <equal>
                        <var>request.method</var>
                        <value>REGISTER</value>
              </equal>
              </not>
              <exists>
         <var>request.uri.param.icscfroute</var>
         </exists>
         </and>
    </pattern>
    </servlet-mapping>
    <session-config>
         <session-timeout>30</session-timeout>
    </session-config>
    </sip-app>
    In msi-config.xml, we have:
    <Server Cluster="BEA_ENGINE_TIER_CLUST" EnabledForDomainLog="false"
    ListenAddress="192.168.150.26" ListenPort="8001" Name="engine1"
    NativeIOEnabled="true" NetworkAccessPoints="sipchannel"
    ServerVersion="8.1.5.0" StdoutDebugEnabled="true"
    StdoutEnabled="true" StdoutSeverityLevel="64">
    <NetworkAccessPoint ListenAddress="192.168.150.34"
    ListenPort="5060" Name="sipchannel" Protocol="sip"
    PublicAddress="192.168.150.34" SourcePorts="41000-42000"/>
    <SSL Enabled="false" IdentityAndTrustLocations="KeyStores" Name="engine1"/>
    <Log FileCount="10" FileMinSize="60000" Name="engine1" NumberOfFilesLimited="true"/>
    <ExecuteQueue Name="sip.transport.Default" QueueLength="2048" ThreadCount="25"/>
    <ExecuteQueue Name="REGISTRARQueue" QueueLength="2048" ThreadCount="25"/>
    <ExecuteQueue Name="sip.transport.Default" QueueLength="2048" ThreadCount="25"/>
    <ExecuteQueue Name="weblogic.kernel.Default"/>
    <ExecuteQueue Name="sip.timer.Default" QueueLength="2048" ThreadCount="25"/>
    <ExecuteQueue Name="sip.tracing.local" QueueLength="1024"
    ThreadCount="1" ThreadsMaximum="1" ThreadsMinimum="1"/>
    <ExecuteQueue Name="sip.tracing.domain" QueueLength="1024"
    ThreadCount="1" ThreadsMaximum="1" ThreadsMinimum="1"/>
    </Server>
    Then when I launch a SIP REGISTRATION operation I get the following trace:
    2007-05-30 17:37:03,649 ERROR RegistrarServlet [ExecuteThread: '23' for queue: 'sip.transport.Default'] : Error while processing request: REGISTER sip:netcentrexbench.net SIP/2.0
    P-Charging-Vector: icid-value=AyretyU0dm+1970294253=0465138796
    P-Access-Network-Info: ADSL;dsl-location="netcentrexbench.net;1.2.3.4"
    CSeq: 2 REGISTER
    Call-ID: [email protected]
    Supported: path
    Via: SIP/2.0/UDP 192.168.254.56:5063;branch=z9hG4bK-19606-1-2
    From: dench0 <sip:[email protected]>;tag=1
    Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO
    To: dench0 <sip:[email protected]>
    Authorization: Digest username="dench0",realm="netcentrexbench.net",cnonce="6b8b4567",nc=00000001,qop=auth,uri="sip:192.168.150.34:5060",nonce="NQei3RIBAAA=le+kkCcrZcahXxQ7M6r7dw==",response="b824a93822b267ddfaa07f4039d99d95",algorithm=MD5
    Content-Length: 0
    Contact: sip:[email protected]:5063
    User-Agent: LYNX_BENCH
    Path: <sip:[email protected]:5063;lr>
    Require: path
    Expires: 36000
    Max-Forwards: 70
    java.lang.NoClassDefFoundError: org/jaxen/JaxenException
    at org.dom4j.DocumentFactory.createXPath(DocumentFactory.java:230)
    My first doubt is that I think I should get "ERROR RegistrarServlet [ExecuteThread: '23' for queue: 'REGISTRARQueue'] " instead of "ERROR RegistrarServlet [ExecuteThread: '23' for queue: 'sip.transport.Default'] "
    First question: did I miss something or did something wrong in the configuration?
    Second question: is it really possible to assign a single servlet (from an application containing many other servlets) to a dediacted execute queue?
    Third question: any help is welcome :-)
    Thanks in advance,
    Lionel,

    At teh end I found the basic :-) problem on my exception but anyway , the used execute queue for REGISTER is always sip.transport.default
    Help on this point is welcome!
    Thanks

  • Monitor SQL Server service Broker queue status

    I need to monitor SQL Server service Broker queue status.  If the queue is disabled, send me an email alert.
    Can you let me know what's the best way to accomplish it using SCOM?

    1) create a queue for notification
    2) create a service on notification queue
    3)Create an event notification for broker queue disable. Associate this with the queue that you are monitoring.
    4)Create a procedure that send you and email with this event happens
    Example:
    ---- Notification
    CREATE
    QUEUENotify_queue
    -- Service
    CREATE
    SERVICE[http://queue_Notify]
    ONQUEUENotify_queue([http://schemas.microsoft.com/SQL/Notifications/PostEventNotification]);
    --Event 
    CREATE
    EVENTNOTIFICATION[http://queue_Notify_event]
    ONQUEUETarget_queue
    FORBROKER_QUEUE_DISABLED
    TOSERVICE'http://queue_Notify','current
    database';
    GO
    procedure will be something like...
    WAITFOR
    RECEIVETOP(1)
    @RecvReqMsgName=message_type_name,
    @RecvReplyMsg=message_body,
    @RecvReplyDlgHandle=conversation_handle
    FROMNotify_queue),TIMEOUT5000
    IF(@RecvReqMsgName='http://schemas.microsoft.com/SQL/Notifications/EventNotification')
    BEGIN
    DECLARE@cmdNVARCHAR(MAX)
    SET@cmd='dbo.sp_send_dbmail
    @profile_name="Name XYZ",
    @recipients="[email protected]",
    @body="CAST(@RecvReplyMsg as NVARCHAR(MAX)",
    @subject="Queue Disabled Detected";'
    EXEC
    (@cmd)
    END

  • I have two monitor speakers that I would like to airplay to from my iMac. Is this possible? Is there an adapter or receiver? The monitor speakers are KRK VXT8.

    I have two monitor speakers that I would like to airplay to from my iMac. Is this possible? Is there an adapter or receiver? The monitor speakers are KRK VXT8.

    They have a trial version you can test before you purchase. It limits you to 10 minutes of streaming before it starts inserting noise into the stream.
    But you may not need it. I've read a bit further, and it appears that you may be able to stream any system audio to an Airport Express without needing AirFoil since you have Mountain Lion. I though it would work only with an Apple TV, but I've seen mention that it works with the AE as well (I don't have one to try). When you get your Airport Express set up, go to the Sound (speaker) icon in the menu bar, hold down the Option key, and click the icon. You may see the AE listed there as a selectable output device; if so, select it and all your system audio should be sent to the AE, including Spotify.
    Regards.

  • Inbound Messages are struck in Queue.-Production environment of client box.

    Dear All,
      We have scheduled a Job(RSQIWKEX) to process messages in Inbound Queue. we are facing probem after restarting the XI server that the messages are struck in Queue and  scheduled job also not getting executed. Even manually also not able to process the messages.
    Could anyone help as how to proceed or what could be the cause of this problem.
    Regards,
    Siva

    What is the error message?

  • Configure Monitoring of a MSMQ private queue Messages in Queue counter

    Hi
    I have a workgroup server that is not part of my local domain.
    I have contented the server to my local SCOM 2012 R2 server and it is working fine.
    My SCOM server has MSMQ 6.0 & 6.3  MP's installed.
    On the remote servers I have some MSMQ 6.0 private queues.
    When I am trying to monitor one counter in 1 queue , when the threshold is reached I am getting error message on al the queues.
    On the performance counter tab I have :
    Object: MSMQ Queue
    Counter : Messages In Queue
    Instance :[server name'\private$\error
    There were 1207 messages in this queue .
    I Got about 30 messages and error on all queues.
    What did I do wrong ?
    Itamar
    Itamar

    Hi
    This is the alert email I got :
    Alert: Notification Queue
    Source: maasw1\private$\maas.backend.scheduler.timeoutsdispatcher
    Path: MAASW1.xxx.com
    Last modified by: System
    Last modified time: 2/18/2014 2:45:49 PM Alert description: Instance Computer Queues
    Object MSMQ Queue
    Counter Messages in Queue
    Has a value 19
    At time 2014-02-18T14:45:35.0000000+02:00
    I did not place a monitor on this queue but on 2 other queues.
    one with threshold of 500 and on with 1 .
    I have made some change in the monitor and will test it now.
    Thanks
    Itamar 
    Itamar

  • How i can find number of messages that are inside a queue?

    Hi
    Thank you for reading my post.
    Can some one please let me know how i can find how much messages are inside a queue?
    Thanks.

    If you are using < 4.0, no (you will need to exec the command from java)
    If you are running 4.0 or later, you can do this using the JMX api (see the JMX developers guide)

  • How to calculate how many calls are there in Queue

    Hi All,
    I have a requirement of calculating how many calls are there in queue at a particular moment, as the client wants to drop all the calls if there are 5 calls waiting in the queue.
    I am using ICM 8.0
    Any help would be great.
    Thanks

    Hi David,
    I am trying to crete a IF condition with CallType.callsqnow property, however callsqnow is not coming up in the list for calltype properties.
    But under Skillgroup's property list, there is a pooperty "callsqueuednow".  I am trying with this property, let's see if it works.
    However could you please advice why i am not seeing callsqnow property under call type?
    What i am doing is
         under if formula, select "call type" -> select name of the call type -> list of properties
    I am using ICM version 8.0.3.0

  • Report Assignment are getting dropped from report management

    Hi Gurs,
    For the Real Group substance, nine real substances has been assigned in report management. when Iam trying to create a report of new version for real group some of the report assignement are being dropped from real group. any idea why the reports are getting dropped.
    Thanks in Advance
    Thanveer Ahmed.

    Hello Thanveer,
    it seems to be that you are using SAP Enterprise Extension 2.0 (EH&S 2.00 version does not "exists" and has never been made available to SAP customers to my knowledge). This EH&S has been former known as EH&S 3.2. Actually EH&S does not get any version number any more.
    Coming back to your question: the oss note you found seems to be the only one. I did the "same" research like you. So I have really no idea (may be place new OSS) because we are using an older EH&S version and there it works.
    Coming back to your last remark:
    Can you help me with all Functional scenario's for specification assignment on report management.
    If you take a look in the actual help of sap you will find this page:
    http://help.sap.com/erp2005_ehp_04/helpdata/en/a7/288aa30a6c11d28a220000e829fbbd/frameset.htm
    (report Management (EHS-SAF-REP) => Report Managment Worklist => Specifiction Assignment
    Here you will find a subchapter: Assigning specifications to reports)
    In this chater this is explained:
    Specification assignment can be defined differently for each report version. When creating new versions (or when replacing one version with another), the new report u201Cinheritsu201D the specification assignments of the previously valid report.
    This reaction is what I would expact.
    In my opinion the scenario which SAP describes there is clear enough. Again here is the story:
    a.) you have a specification and you generate a report (first time). You release it (generation variant/Language combination) in version 1.0. Now in using cg50 you can enter on report header additionaly specifications regarding which the report is valid too.
    Lets assume this: you have generated the report on specification A and added B and the report is "released". Now if you use cg54 and you use specification in an query A and B you will find total two released reports. The report on the level B is "inherited" from A (this is shown by using a different icon). Now if you generate version 1.1. on specification A (same geneartion variant etc.) the link to the specification B must be inherited to the new report header.
    This functionality is in my opinion rarely used on SAP EH&S customer side. The reason is "simple".
    a.) there is no mass update of specifications which should be added to the report header and the queriy which can be done there is "very" simple
    b.) you need to take care about adding new specifications to the report header (becuase the version before does have a differnt number of specifications)
    c.) the process to delete the link is not easy in daily work
    In any case: please check the report distribution process. There are some pitfalls etc. inside so thet the report which is released on A can be used on B too in report distributon. Bit this is a different story.
    To summerize: the process is in most cases to complex for normal EH&S users. Therefore other options should be analyzed.
    With best regads
    C. Bergemann
    PS: you need to "save" the assignment in cg50; only an idea: may be you missed to do that
    Edited by: Christoph Bergemann on Feb 13, 2010 9:41 AM
    Edited by: Christoph Bergemann on Feb 13, 2010 10:00 AM
    Edited by: Christoph Bergemann on Feb 13, 2010 10:00 AM

  • RZ20 Monitor - Errors are not displayed - more than 3 days..

    Hi
    In our RZ20 alert monitors we are not able to see the errors for the PO which are created 3 days back.. I dont know whether its archieved or deleted.   Is there any possiblity to restore it in RZ20?  Please let me know where is the settings for this?
    I know we can see the error in BBP_PD after running the transaction bbp_procdoc_transfer to get the latest error.
    But my requirement is the error should be there in the RZ20 monitor for a month..
    please help. many thanks in advance..
    We are using SRM 5.0

    Hi
    <u>Please read this -></u>
    <b>Here are few OSS Notes to check out -></b>
    <u>Note 746193 RZ20: Generating all-clears ("green alerts")
    Note 783725 EP6.0 CM & Collaboration SP2 Patch 27
    Note 441768 - Displaying canceled shopping carts in monitor 3.0 and 3.5
    Note 395699 - Display shopping baskets with status 7 in the Monitor</u>
    <b>Other related links -></b>
    Re: Application Monitor entries "auto-deleted"?
    RZ20 stopped displaying errors.
    RZ20 Transaction
    Hope this will definitely help.
    Regards
    - Atul

  • I updated my software and now my monitor fonts are different!

    I updated my software from Apple (regular update) and now my Imac monitor fonts are different and squatted. Any suggestions?

    Follow the instructions on the page below to remove the SC Info folder:
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases

  • QueueBrowser doesn't work when messages are in the queue

    We are attempting to list off the messages in a JMQ 2.0 queue while our application is running. The code currently creates a new Connection & Session and then a new QueueBrowser on each queue. Following that, we get an Enumeration of the messages in the queue and print them out.
    When no messages are in the queue, this approach works fine and prints out all the relevent information. However, when a message is in the queue, the QueueBrowser just hangs. I've tried on transacted and non transacted QueueSessions and the same thing happens.
    Is this known behavior and is it possible to work around it?
    Thanks,
    Mike

    Try restarting the Mac with the ethernet cable plugged in and with a live device attached ('live device' = another Mac, a modem, a printer, or a hub/switch/router, which has been powered on).

  • JMS: is it possible to monitor the length of the queues?

    Hi,
    is it possible to monitor in realtime how many messages are in a JMS queue waiting for being processed?
    I'm using the standalone OC4J.
    Matteo Candaten

    Hi Matteo Candaten,
    I have a problem in JMS.
    I had created the tables related to queues in DB. i had also bound the queues with the JNDI names in jms.xml
    Still i am unable to use the queues.
    I am getting an error saying,
    javax.jms.JMSException: Unable to connect to JMSServer (127.0.0.1/127.0.0.1:9127)
    at com.evermind.server.jms.EvermindQueueConnection.connect(EvermindQueueConnection.java:144)
    at com.evermind.server.jms.EvermindQueueConnection.send(EvermindQueueConnection.java:94)
    at com.evermind.server.jms.EvermindQueueSession.send(EvermindQueueSession.java:117)
    at com.evermind.server.jms.EvermindQueueSender.send(EvermindQueueSender.java:75)
    at com.evermind.server.jms.EvermindQueueSender.send(EvermindQueueSender.java:36)
    at com.evermind.server.jms.EvermindQueueSender.send(EvermindQueueSender.java:31)
    at OracleJmsSender.sendXmlMessage(OracleJmsSender.java:115)
    at OracleJmsSender.<init>(OracleJmsSender.java:57)
    at OracleJmsSender.main(OracleJmsSender.java:138)
    Can you please give me some idea, how to configure and use JMS in oracle 9ias and
    the properties i had set are,
    static String JNDI_FACTORY = "com.evermind.server.rmi.RMIInitialContextFactory";
         static String SERVER_URL = "ormi://dsrso2:23791/";
         static String USER_NAME = "admin";
         static String PASSWORD = "kumardsr";
         static String FACTORY_NAME = "jms/TTQueueConnectionFactory";
         static String QUEUE_NAME = "jms/demoQueue";
    are these correct or do i need to change these ??
    I just dont have a clue where i am worng.
    it would be of great help if u could help me in this..
    thanks a lot..
    Kalpana

  • Monitor Via Toad Activities -reg

    Dears,
    In our Firm, Some persons using Toad Tool for select and update the oracle purpose.
    But we could not monitor the the above activities..
    1) How to block the Toad tool in Oracle DB?
    2) Any possiblites in Access DB via toad only selective users(like sales)
    3)How to monitor the DDL/DML changes via Toad?
    Please help us..Advance to thanks to urs valuable suggestions..
    Regards
    Shakthi

    Hi,
    There are some ways to restrict the toad as below.
    1: There is a temporary way, on each user machine where you want to implement for read only ,go to toad software and delete two files as below after that the user only accessible for Read Only.
    1: FullToad.lic
    2:-toad.lic
    2: Purchase toad software for read only.
    3: For permanent you need to authorize or not to authorize for modifying for some users then you have to create a trigger as per your requirement as below.
    CREATE OR REPLACE TRIGGER authorize_users_trig
    AFTER LOGON ON DATABASE
    begin
    FOR REC IN (SELECT USERNAME,PROGRAM,MODULE,TERMINAL,MODULE_HASH FROM V$SESSION
    WHERE AUDSID = USERENV('SESSIONID'))
    LOOP
    if rec.username not in ('SYS','SYSTEM','RMS12','XYZ')
    and
    upper(rec.terminal) not like '%Computername%'
    and
    (rec.module is not null
    OR
    upper(rec.program) like '%TOAD.EXE')
    then
    RAISE_APPLICATION_ERROR(-20001,'Sorry You are not Authorise to Logon from this tool');
    end if;
    end loop;
    END;
    Thanks

  • Monitor Date/Time activities routinely fail (Policy Stopped by User)

    Hi guys,
    Lately we've been creating a bunch of jobs in Orchestrator that are supposed to run every X minutes/hours. Usually these work fine however sometimes they either fail to run and actually stop the running Runbook in its entirety or fail to run but the next
    time it's triggered it will run (but sometimes those runs will keep generating errors on some activities such as "Run .NET Script" until it is manually restarted.)
    I've checked the Event Viewer but I don't see anything wrong at the time when the Runbook fails. I've also checked the Trace logs but they don't tell me much... (increased the level of logging in the meantime from 1 to 7 so maybe that will help). Not sure
    what I am looking for either to be honest.
    Anyone that has had this problem as well or any ideas what the cause may be (or where to start looking)?  I really don't wanna go back to Windows Scheduled tasks :)

    Hi,
    also check the Orchestator Events (Tab Events in Runbook Designer). I suppose that a Runbook Server has problems to the same time "Monitor Date/Time" fails, perhaps contacting the Orchestrator Datastore.
    "AuthorizationManager check failed" only happens sporadically for the same "Run .Net Script" Activity? Are the multiple Runbook Servers with different Logon Accounts for Orchestrator Runbook Service?  (https://social.technet.microsoft.com/Forums/en-US/9fe7a237-05dd-4843-bf88-15be74e64c09/authorizationmanager-check-failed-run-net-script-only-on-runbook-server?forum=scogeneral)
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu
    Hi Stefan,
    Thank you for pointing me in the right direction. I think I found the source of the problem:
    We basically have three Runbook servers and only one of them is designated as primary. One of the standby machines runs in a different domain. That would explain why we'd get the Authorization error as the Runbook service from the one domain tries
    to run in the other. In any case it means that for some reason the Orchestrator decides to use a standby server instead of the primary one. For as far as I can see I the RunbookService.exe has been running for quite a long time but I do see some datastore
    connection problems in the traces (perhaps a short disconnection during a vMotion of the Runbook server). 
    I've now used the Override option to designate only the primary server while I investigate further. But so far the jobs have been running without a problem. 

Maybe you are looking for