How to intiate Dameon in RTD

How to intiate Dameon in RTD,  AS IN THE INFOPACKAGE  YOU HAVE ASSIGN IT TAKES to the monitor of RTD MONITOR  HOW TO INTIATE  START LOAD ....
HOW DOES SYSTEM  EXTRACT...
COULD ANY ONE EXPLAIN IN DETAIL 
LOOKING FOR REPLY

Hi,
Real-Time Data Acquisition
http://help.sap.com/saphelp_nw04s/helpdata/en/52/777e403566c65de10000000a155106/content.htm
Daemon for Real-Time Data Acquisition
http://help.sap.com/saphelp_nw04s/helpdata/en/42/f8ee8771d13255e10000000a1553f7/frameset.htm
Troubleshooting Real-Time Data Acquisition
http://help.sap.com/saphelp_nw04s/helpdata/en/44/50a37df33f3f8ee10000000a1553f7/frameset.htm
Hope this helps.
Thanks,
JituK

Similar Messages

  • Please guide on how to integrate ATG with RTD(Real-Time Decisions.

    Please post the steps on integration of RTD with ATG.

    Got the steps from RTD documentation. I just consumed one of the WSDL files provided with the installation.
    set all the request parameters and got the response.

  • How do I find how a particular dameon is getting started?

    This is a new question prompted by discovering a Canon Scanner process that is getting started on my MacPro.
    To summarize, I have a Canon Pixma MP800R All-In-One printer. Everything has been working fine but today I've gotten 4 kernel panics in a row. From the dumps, all the panics are related to a daemon called CIJScannerRegist. I have a MacBookPro and a MacPro. Both running SL 10.6.2, both with the same Canon drivers installed. The MacPro on boot however is starting two additional process that I do not see on the MacBookPro. These are:
    phoppes 257 ... /Library/Image Capture/Support/LegacyDeviceDiscoveryHelpers/CIJScannerRegister.app/Contents/Ma cOS/CIJScannerRegister -psn0118813
    phoppes 254 ... /System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension -psn0110619
    If I kill processes 257 I don't get kernel panics. I've been killing them both as my MBP does not show them so I do not believe either of them are necessary. My question is, is there a log file or boot file somewhere that I can see what may be causing these processes to start or is there some other place I can look greping the names so I can stop these processes from starting. I can do it by hand but that is a pain and a hack. I can't say why these are running as my laptop does not show them. Very strange indeed.

    There are three (ok, six--ok, seven--ok, maybe more) places where startup items can be loaded. The login items that you checked is one. The other six I know about are in the Library folders. In both your own Library and in the main all users /Library, there are folders called LaunchAgents, LaunchDaemons, and StartupItems. StartupItems is the old method and is being deprecated, but may still have something in it. In that folder, there will be folders that are named for the process they are starting. In the other two folders, there are just plist files named in a reverse dns convention, like com.canon.scanregister.plist. Remove them from the folder and log out/in.
    Or, for a launchAgent or Daemon, you can mark them disabled with this terminal command:sudo launchctl unload -w path.and.name.of.plistsudo temporarily elevates your privileges to run the command and will ask for your admin password. The -w tells launchctl to write the disabled flag in the plist so it won't load again. With this method, you won't need to log out/in. In terminal, you can just type/copy the first part up to the space after the command, and then drag the plist to the Terminal window and it will copy the path to the file into the command line.
    If it is not in any of those folders, I'm not sure where it might be hiding.

  • How to make a private chat look in another window

    hi
       iam new to flex
    and now what my question is when i double click on the particular user present in the chat room
    i should get chat open in new window
    is this possible please help out in this issue

    hi
       thanks for urs replys its helping a lot
    and now i wnt some information from u abt private chat
    see wt my doubt is iam getting user name and uid when i click on the user in the userlist with that iam creating an instance to the class "ChatMessageDescriptor" and with that iam sending msgs to the user clicked by the property recipient
    and iam initiating that private chat in seperate label privatechat space and now wt the problem is when i click on the username
    for example iam the user A and i clicked on user B the window gets open for userA and user A can send msgs to user B directly
    but where as in place of User B the window doesnot get open,  only when he clicks on User A  he is able to send msgs to User A and he can chat w User A directly from there on words
    so wt i want is how to intiate him that chat is open with User A  so click him in the userlist  or directly open him a window as soon as User A clicks
    User B is this possible plz refer my code u will get clearly understood the problem
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application layout="absolute"
        xmlns:mx="http://www.adobe.com/2006/mxml"
        applicationComplete="init()"
        xmlns:rtc="AfcsNameSpace">
        <mx:Script>
            <![CDATA[
                import com.adobe.rtc.pods.simpleChatClasses.ChatMessageDescriptor;
                import com.adobe.coreUI.controls.WhiteBoard;
                import com.adobe.rtc.sharedModel.SharedCollection;
                import com.adobe.rtc.sharedManagers.UserManager;
                import com.adobe.rtc.sharedManagers.descriptors.UserDescriptor;
                import mx.controls.listClasses.IListItemRenderer;
                import mx.controls.listClasses.ListBaseSelectionData;
                import mx.collections.IList;
                import mx.events.ItemClickEvent;
                import mx.controls.Alert;
                import com.adobe.rtc.events.AuthenticationEvent;
                import com.adobe.rtc.events.ConnectSessionEvent;
                import com.adobe.rtc.events.SessionEvent;
                import mx.core.IFlexDisplayObject;
                import mx.managers.PopUpManager;
                import flash.net.*;
                import mx.collections.ArrayCollection;
                import com.adobe.rtc.pods.simpleChatClasses.SimpleChatModel;
                import com.adobe.rtc.events.ChatEvent;
                private const applicationTitle:String = "AFCS Sample Application";
                  [Bindable]
           public var chatModel:SimpleChatModel;
           public var clickeduser:UserDescriptor = new UserDescriptor;
             public var userwnt:String=new String;
              public var clickusername:String=new String;
               public var selindex:int;
               public var count:int;
                private function init():void
                    sess.addEventListener(SessionEvent.ERROR, onEventNotification);
                    sess.addEventListener(SessionEvent.SYNCHRONIZATION_CHANGE, onEventNotification);
                    auth.addEventListener(AuthenticationEvent.AUTHENTICATION_FAILURE, onEventNotification);
                    auth.addEventListener(AuthenticationEvent.AUTHENTICATION_SUCCESS, onEventNotification);
                    popup(loginWindow);
                private function popup(window:IFlexDisplayObject):void
                    PopUpManager.addPopUp(window, this, true);
                    PopUpManager.centerPopUp(window);
                    window.visible = true;
                 * Process AFCS Events
                private function onEventNotification(p_event:Event):void
                    if (p_event.type == SessionEvent.SYNCHRONIZATION_CHANGE) {
                        if (sess.isSynchronized) {
                            // isSyncronized==true : we are connected to the room
                            panel.title = "Connected to room " + sess.roomURL;
                            PopUpManager.removePopUp(loginWindow);
                        } else {
                            // isSyncronized==false : we are disconnected from the room
                            panel.title = applicationTitle;
                            sess.roomURL = null;
                            notificationMessage.text = "";
                            popup(loginWindow);
                    else if (p_event.type == AuthenticationEvent.AUTHENTICATION_SUCCESS) {
                        // Authentication succeeded
                        notificationMessage.text = "Authentication Succeeded";
                    else if (p_event.type == AuthenticationEvent.AUTHENTICATION_FAILURE) {
                        // Authentication failed : bad password or invalid username
                        notificationMessage.text = "Authentication Failed";
                    else if (p_event.type == SessionEvent.ERROR) {
                        // Generic session error, but this can happen if you mispell the account/room names
                        // (sError.error.name == "INVALID_INSTANCE" and sError.error.message == "Invalid Instance")
                        var sError:SessionEvent = p_event as SessionEvent;
                        notificationMessage.text = sError.error.message;
                    else
                        notificationMessage.text = "Got event " + p_event;
                private function login():void
                    notificationMessage.text = "";
                    auth.userName = username.text;
                    auth.password = passwordBox.visible ? password.text : null; // password==null : the user is a guest
                     userwnt=username.text;
                    sess.roomURL = roomURL.text;       
                    sess.login();
                protected function buildModel():void
                    // Create the model: just calling the constructor won't create the collection node or pass the messages.
                    // Call subscribe and give it a shared ID while creating the model.
                    // The shared ID becomes the name of the collection node.
                      if(clickusername==userwnt)
                         Alert.show(clickusername);
                         viewStack.selectedChild=white;
                    chatModel = new SimpleChatModel();
                    chatModel.sharedID = "myChat_SimpleChatModel";                               
                    chatModel.subscribe();                       
                    chatModel.addEventListener(ChatEvent.HISTORY_CHANGE, onChatMsg);
                    this.addEventListener(KeyboardEvent.KEY_UP, onKeyStroke);
                 public var cmd:ChatMessageDescriptor = new ChatMessageDescriptor();
                public function userclick(bharath):void
                    count=0;     
                    selindex=bharath;
                    clickeduser= sess.userManager.userCollection[bharath] as UserDescriptor;
                    var orignaluser:UserDescriptor = sess.userManager.userCollection[0] as UserDescriptor;
                    var username=orignaluser.displayName;
                    clickusername=clickeduser.displayName;  
                    cmd= new ChatMessageDescriptor();           
                    cmd.recipient=clickeduser.userID;
                    cmd.recipientDisplayName=clickusername;
                    cmd.msg="hi";               
                    viewStack.selectedChild=white;
                      buildModel();                
                    chatModel.sendMessage(cmd);                                  
                    protected function clearChat():void
                    chat_mesg_area.text = "";
                    chatModel.clear();
                protected function submitChat(str:String):void
                 if(count==0)
                 clearChat();
                 count=1;
                var clickeduser:UserDescriptor = sess.userManager.userCollection[selindex] as UserDescriptor;
                var clickusername=clickeduser.displayName;  
                 cmd= new ChatMessageDescriptor();           
                    cmd.recipient=clickeduser.userID;
                    cmd.recipientDisplayName=clickusername;
                    cmd.msg=chat_mesg_input.text;                 
                    chatModel.sendMessage(cmd);
                    chat_mesg_input.text = "";               
                protected function onChatMsg(p_evt:ChatEvent):void
                    if(p_evt.message != null && p_evt.message.msg != null && p_evt.message.displayName != null)
                        chat_mesg_area.text += "\r\n" +  p_evt.message.displayName + ": " + p_evt.message.msg;
                    else
                        chat_mesg_area.text = "";   
                protected function onKeyStroke(p_evt:KeyboardEvent):void
                    if(p_evt.keyCode == Keyboard.ENTER) {
                        submitChat(chat_mesg_input.text);
            ]]>
        </mx:Script>       
        <rtc:AdobeHSAuthenticator id="auth"/>       
        <rtc:RoomSettings id="settings" autoPromote="true"/>
        <mx:Panel id="panel" title="{applicationTitle}" width="100%" height="100%" paddingLeft="5" paddingTop="5" paddingRight="5" paddingBottom="5">
            <!--
             | Login Dialog Box
             -->
            <mx:TitleWindow id="loginWindow" title="Connect to Room" visible="false">
                <mx:VBox>
                    <mx:HBox>
                        <mx:Label text="Room URL:" width="70"/>
                        <mx:TextInput id="roomURL" width="295" tabIndex="1">
                            <mx:text>http://connect.acrobat.com/exampleURL/exampleroom</mx:text>
                        </mx:TextInput>
                    </mx:HBox>
                    <mx:HBox>
                        <mx:Label text="Username:" width="70"/>
                        <mx:TextInput id="username" tabIndex="2">
                            <mx:text>guest</mx:text>
                        </mx:TextInput>           
                        <mx:Button label="Login" click="login()" width="126" tabIndex="4"/>
                    </mx:HBox>
                    <mx:HBox>
                        <mx:HBox id="passwordBox">
                        <mx:Label text="Password:" width="70"/>
                        <mx:TextInput id="password" displayAsPassword="true" tabIndex="3"/>
                        </mx:HBox>
                        <mx:RadioButton label="User" selected="true" click="passwordBox.visible = true"/>
                        <mx:RadioButton label="Guest" click="passwordBox.visible = false"/>
                    </mx:HBox>
                    <mx:Text id="notificationMessage" text=""/>
                </mx:VBox>
            </mx:TitleWindow>
            <!--
             | AFCS application UI wrapped in ConnectSession
             -->       
            <rtc:ConnectSessionContainer
                id="sess"
                authenticator="{auth}"
                initialRoomSettings="{settings}"
                autoLogin="false" width="100%" height="100%" >       
                <mx:HBox width="100%" height="100%" horizontalGap="0">
                    <mx:VBox>
                        <mx:TabBar dataProvider="viewStack" direction="vertical" width="100" verticalGap="0"/>
                        <!--mx:Button label="Disconnect" click="sess.close()"/-->
                    </mx:VBox>
                    <mx:ViewStack id="viewStack" width="100%" height="100%" borderSides="left top right bottom" borderStyle="solid" borderThickness="2">
                        <!--
                         | Chat pod and roster
                         -->
                        <mx:HBox label="Chat" width="100%" height="100%">
                            <rtc:SimpleChat width="40%" height="100%"/>
                            <rtc:WebCamera left="0" right="0" top="0" bottom="0" width="40%" height="100%"/>
                            <mx:List alternatingItemColors="[#DFDFDF,#EEEEEE]" dataProvider="{sess.userManager.userCollection}" width="10%" height="100%" labelField="displayName" id="abc" click="userclick(abc.selectedIndex)"/>
                        </mx:HBox>
                        <mx:Canvas id="white" label="privatechat" width="100%" height="100%" creationComplete="buildModel()">
                         <mx:VBox id="chatBox">
                    <rtc:WebCamera id="webcam" width="400" height="223"/>
                    <mx:TextArea width="398" height="140" id="chat_mesg_area"/>
                    <mx:HBox>
                    </mx:HBox>                               
                </mx:VBox>
                <mx:TextInput width="400" id="chat_mesg_input" y="370"/>
                <mx:Button label="Submit Chat" click="submitChat(chat_mesg_input.text)" y="398"/>
                </mx:Canvas>
                        <!--
                         | Fileshare pod
                         -->
                        <mx:Canvas label="FileShare" width="100%" height="100%">
                            <rtc:FileShare left="0" right="0" top="0" bottom="0"/>
                        </mx:Canvas>
                    </mx:ViewStack>
                </mx:HBox>
            </rtc:ConnectSessionContainer>
        </mx:Panel>
    </mx:Application>

  • RTD SENSOR

    I have a RTD type temperature sensor and NI 6024E DAQ card. I need to know how to connection 3-wire rtd sensor to my scb-68 box ,and how to give the excitation current to RTD sensor.
    Thanks.

    The NI 6024E by itself does not have current excitation available. We do provide signal conditioning hardware that you can use in conjunction with the 6024E to integrate with the RTD. For instance, the SCC series signal conditioning hardware provides for channel-to-channel conditioning. There is an SCC RTD module(SCC-RTD01) that provides current excitation as well as other signal conditioning (filtering, amplification) that will optimize your RTD reading. You can use this module with 2,3, or 4-wire RTDs.
    The SC-2345 is the carrier for SCC modules. Both the RTD module and carrier are linked below for your reference.
    NI SCC-RTD01 -- RTD Input
    http://sine.ni.com/apps/we/nioc.vp?cid=12311〈=US
    SC-2345
    http://sine.ni.com/apps/we/nioc.vp?cid=10778〈=US
    Regards,
    Todd D.
    NI Applications Engineer

  • Error handling and Manual Retry mechanism in BPEL

    Hi Gurus,
    We have a requirement that If any error occurs during BPEL process , We need to auto retry. if auto retry is not enough We need to manual retry and send the request message to Worklist for retry.
    In our BPEL process We have CreateOrganization API provided which can not be rollback using compansation handlers. From Here I need to intiate the process using worklist if any error.
    I dont know how to intiate the process from particular node. Please help me.
    thanks,

    My process has 5 invoke activities
    CreateOrganization
    createFaxNumebr
    CreateAddress
    CreatePhone
    CreatePhExt
    In my process , the first 2 services gets success, 3rd one 'CreateAddress' fails due to DB connection is broken. I can not rollaback first 2. I want to retry 3 rd using worklist when DB connection is fixed. I dont know how to call CreateAddress partner link as Catchall branch is not in scope of 'CreateAddress' and resume the process to execute 4 and 5 services.

  • Regarding GP Processes

    Hi,
      I have an application Which is having two screens like List Items and View a particular item.Add button will be present in the list Items screen.This appliocation will be integrated with EP.I am using webdynpro for designing UI.
               Once the user logs in he can click on the ADD item button in the List Items screen.Now the user enters the item details and submits it to the Approver for approval.Once it is approved,the item will appear in the List items screen.
    Now my question is how to intiate the process on clicking the Add button.Is there any API for it.Please provide me related documents.
    Thanks & Regards,
           Sudhir

    Hi,
       You can start GP processes provided you know the process template ID. Go through [this|http://help.sap.com/saphelp_nw2004s/helpdata/en/43/fcdf77fc6510b3e10000000a11466f/frameset.htm] link to know about the APIs.
    Regards,
    Satyajit.

  • Submit form in ES server

    I have render the PDF form.After render the form the user fill the form and submit the form.
    When the user submit the form , how to retrieve the form data in servlet using ES API?after retrieve the data how to intiate the with form data.

    Please look at this article from the online documentation.
    http://livedocs.adobe.com/livecycle/es/sdkHelp/programmer/sdkHelp/wwhelp/wwhimpl/js/html/w whelp.htm?&accessible=true
    Go under Developing Applications Using APIs/Rendering Forms/Handling Submitted Forms
    There is a java example in the "Quick Start" at the end of the section Handling submitted forms using Java API
    Jasmin

  • Runnig multiple JVMs to simulate network via rmi

    Hello
    We runing rmi client and server from one computer the code files in the same directory
    javac *java
    rmic FileImpl
    start rmiregistry
    java -Djava.security.policy=policy.txt FileServerafter that we start a client
    java FileClient kuku.txt 127.0.0.1Does we intiate several JVMs by starting client and server if not how to intiate JVM for each client and server?

    I want that one of my servers will also act as client so I need run from the same JVM? How can I do that?You can't not do it. Just instantiate your server, then when it does Naming.lookup() or invokes a remote method it is being a client. In the same JVM. In the same object.
    But can I create several remote objects on the same JVM? Yes, just create and export them all.

  • Reccomend the best relay for my application

    I have a NI USB
    9219, 4 Ch-Ch Isolated, 24-bit, ±60V, Universal Analog Input module
    which I intend to use for RTD measurement (2 wires) with three pt1000
    sensors. However, it is not intended for continuous measurement. I need
    to keep the lines+sensor grounded when I don't measure and therefore I
    need a TTL (5V-DC) triggered switch/relay to connect them to the NI USB
    9219 only when measuring is allowed.
    Which switch would you reccomend?
    Thank you!

    How many wires do your RTDs have (2,3 or 4)?  How many wires do you need to disconnect on your RTDs?  If you just need to stop the current flow, we only need to disconnect one wire, regardless of the number of wires on your particular RTDs.  This will require 4 SPST relays.
    9481:
    4 mechanical SPST relays, 50mOhm max.
    9485:
    8 solid state SPST relays, 200mOhm max.
    If you're trying to isolate the RTDs for some particular test, we'll
    need to disconnect all wires, which would require 8, 12, or 16 SPST
    relays (for 2, 3, or 4 wire RTDs).  This would require up to 4 9481 modules, which might be cost and space prohibitive.
    Note that both of these options simply disconnect the RTD and leave it floating... if we need to ground 1 or more wires, we'll need additional SPST relays (in other words, create an SPDT using two SPSTs). 
    If PXI is an option, the 31 SPST PXI-2568 is a great option.
    If PXI isn't an option, you might consider purchasing the 9476 DO module, which has 32 digital outputs that we could use to drive external relays.  Said external relays could be SPDT, so we'd only need 16 channels max... now you can add more RTDs .
    If I missed any details on your application, let us know and we'll look at other options.
    -John Sullivan
    Analog Engineer

  • How do I measure temperature from 4 RTDs simultaneously?

    I am trying to set up a systerm that requires multiple temperature measurements. I am able to make one RTD measure. But if I mirror the same code to create two measurements, i am getting an Error - 50103 "the specified resource is reserved". I have just begun using LabVIEW, so any and all help is valuable. If there is already material available on this topic, would you direct me there please.
    Solved!
    Go to Solution.

    Yup read Multi-channel Single Sample with a single task.
    That being said this won't be "simultaneous".  That implies at the same instant in time all 4 will be read.  This just won't be true without a simultaneous sampling card.  Without that card your readings will likely be fraction of a milliseconds appart and for temperature that should be more than enough.  How much can temperature change in 0.001 seconds?  But for other signal types like trying to read a phase off set in a sine wave you will need a true simultaneous sampling card.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • How to automate RTD decission center

    Hi,
    We have a application where we take some recommendation from RTD decision center,
    but I am not able to capture the objects in the page,
    I am using oracle open-script for automation, will OATS support the object in RTD,
    if yes please help with the process.
    Thanks
    Nikitha

    Hi,
    For your issue, you can create  content organizer rules for  records center site collections via PowerShell.  The below snipped was taken from this posted article:
    http://www.edinkapic.com/2013/08/configuring-content-organizer-rules.html
    [Microsoft.Office.RecordsManagement.RecordsRepository.EcmDocumentRouterRule]$rule = New-Object Microsoft.Office.RecordsManagement.RecordsRepository.EcmDocumentRouterRule($web)
    $rule.ConditionsString = "<Conditions><Condition Column='" + $regionField.Id + "|Region|Region' Operator='EqualsOrIsAChildOf' Value='" + $taxonomyFieldValue.ValidatedString + "'></Condition></Conditions>"
    $rule.Name = $region + " rule"
    $rule.ContentTypeString = $web.AvailableContentTypes["My Content Type"]
    $rule.RouteToExternalLocation = $true
    $rule.Priority = "5"
    $rule.TargetPath = $regionValue
    $rule.Enabled = $true
    $rule.Update()
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How can i input rtd voltage and processing usign lv

    I want to input voltag from RTD and then want to diaplay the graph on the screen. If any other technique to simulate RTD graph without sensor
    I am trying for generating with RTD's equation and putting in Equation vi but i cant get wave form
    please help me

    Good morning LC,
           I recommend that you use the Simulate Signals Express VI to simulate the signal from your RTD.  It is located on the Express Function pallet.
    Have a good day,
    NathanT

  • How to Read from multiple channels

    Dear Sir
    I am acquiring data using FP-RTD-122 using OPC Client software. I ahve made one socket for that and i am using command
    CWDataSocket1.AccessMode = cwdsReadAutoUpdate
    CWDataSocket1.URL = "opc://localhost/National Instruments.OPCFieldPoint/FP Res\FP-RTD-122 @1\Channel 0"
    CWDataSocket1.Connect
    v = CWDataSocket1.Data.Value
    where v is a variant type.But this is 8-channel RTD so how can i read values from all channels using single socket connection Because at presnt i have to use 8 sockets for all eight channels.

    At least as of FieldPoint 4.0 and earlier (I do not know about 4.0.1 or later), the OPC Server did not support multiple channel analog items. Thus to read all eight channels of a FP-RTD-122 module, you would need 8 separate socket connections. For discrete modules (boolean), the "All" tag, is treated as a single 8 or 16 bit number.
    Regards,
    Aaron

  • How to get property of a button such as ID, text in java?

    how can i get properties of some buttons in other softwares,such as ID, text, name, height etc. ?
    i want to realize it in my java program in Linux.
    regards.
    SkyflY

    Could you just tell me the main thinkings duringprogramming?
    Girls, beer, holidays, salary, lying at the beach ...1001100010010111101010001110001010101011
    (I am RTD (Real time Debugger))

Maybe you are looking for