Where does the timestamp information of the FP1000 module come from

I am using the FP 1000 module with a serial link to my PC. When I read out data (with help of the Data Socket in VB) I can obtain a timestamp with Data.GetAttribute("TimeStamp", "0:0:0").This timestamp does not change when I change the time of the PC. When and how is it set?

The timestamp for FP-1000/1001 modules are generated by the FieldPoint Server residing on the host computer. The FieldPoint Server synchronizes to the computer's time when the server launches. Once the FieldPoint Server has it's base time, it calculates new times by measuring the elapsed time through the use of tick counts. This makes it insensitive to changes in the computer's time. This method generally is more stable for timestamp information as you do not get jumps in timestamps like you may get if an application is constantly changing the computer's time clock.
The FP-1600 modules have their own onboard clock which is synchronized to a Time Server, a computer running the Lookout Time Synchronization Service. The FP-1600 modules will continually synchronize t
o the Time Server and to some extent will reflect jumps in computer time if it changes more than a certain amount, but small changes are averaged out through a PID loop preventing discontinuities in the timestamp. However, if the FieldPoint Server or OPC Server lose communication with a FP-1600 for any reason, the timestamps returned will be from the host computer's clock as described above for the FP-1000/1001 modules, as long as the server can not communicate to the FP-1600.
Regards,
Aaron

Similar Messages

  • Where does Messages store attachments on the iPad?

    Where does Messages store attachments on the iPad?
    some photos are quite large, so it would be good to know where they go, and how to manage the app.... ;)

    Managing memory usage is not possible because the user does not have access to the file structure (unless you have jail broken your iPad that is).

  • How  and where does SAP standard programs update the master tables...

    Hello there,
    How  and where does SAP standard programs update the master tables...
    to be precise.. if a (any) transaction occurs  the programs behind it holds the data in temporary structures.
    where and when does it get updated in the master table.
    can anyone tell me how it happens?
    I Know that from the where used list one can find the corresponding table but most of the time it wont suffice
    I am expecting a proper answer.
    Santosh B

    Hello Santosh,
    you need to do some self-reading on the following topic
    Updates in the SAP System (BC-CST-UP)
    http://help.sap.com/saphelp_47x200/helpdata/en/e5/de86e135cd11d3acb00000e83539c3/frameset.htm
    Regards,
    Siddhesh

  • Where could i find information about the state of my request to change my ipod nano 1st gen?

    my ipod 1st gen is part of the program of replacement, but i dont know where i can find information about the state of my request. some ideas?   

    You can enter the Serial Number and Repair ID on this page to get a stsus update:
    https://selfsolve.apple.com/repairstatus/main.do;jsessionid=0phLTksW2mwLbyQVF3Qs zFtCQMH2Jv5xkMxvMlD6RsKVLhpJjpjj!846893301
    Hope that helps!

  • Where does one search for ALL the APPS that are available?

    Where does one search for All the apps that are available ?

    If you don't see any messages, not have anti-malware running or the Firewall on, try installing the Mac OS X 10.6.8 Update Combo
    It's ok to do this even though you are already running v10.6.8 (according to your profile).
    Restart your Mac after the combo in installed, try the App Store.
    Also... if you have an app called Little Snitch installed, that can prevent a connection to the App Store.

  • REG: Delete the card information inside the Payment Cards tab in XD02.

    Hi All,
    Requirement is to delete the card information inside the Payment Cards tab in XD02.
    Providing any hints/suggestions / sample code for BDC in doing this shall be greaful.
    Deleting the Credit card information like CCINS,CCNUM,DATBI,CC_GUID,CCMASK etc from XD02 screen.
    Waiting for your replies.
    Thanks
    Srikanth

    Hi,
    You do it using BDC. Also you can do it using the FM: SD_CUSTOMER_MAINTAIN_ALL. Here in every table there is field KZ. You need to pass D (to delete) for the required tables.
    Before going for BDC try to use this FM.
    Thanks
    Subhankar

  • How to find the hardware information of the Installed HANA Database using studio tool ??

    Hi SAP HANA Experts,
    How can we find the Hardware Information of the HANA Database using the Studio tool.
    I mean, i want to find out the Hardware Information like CPU Model Number, RAM Size & HDD. { HANA Database is already installed as a standalone system } using the Studio tool.
    Can any one of you please provide me the different possibilities to get the Hardware information.....

    Hello,
    Try running the below SQL script in your HANA database. The output should have the info you havd been looking for.
    SELECT
    [NAME]
    - HANA_Hosts_Overview
    [DESCRIPTION]
    - Host information
    [DETAILS AND RESTRICTIONS]
    [VALID FOR]
    - Revisions:              all
    - Statistics server type: all
    [SQL COMMAND VERSION]
    - 2014/05/30:  1.0 (initial version)
    [INVOLVED TABLES]
    - M_HOST_INFORMATION
    [INPUT PARAMETERS]
    - HOST
      Host name
      'saphana01'     --> Specific host saphana01
      'saphana%'      --> All hosts starting with saphana
      '%'             --> All hosts
    [OUTPUT PARAMETERS]
    - HOST:           Host name
    - BUILT_BY:       Manufacturer name
    - CPU_DETAILS:    CPU details (cores, threads, speed)
    - PHYS_MEM_GB:    Physical memory size (GB)
    - SWAP_GB:        Swap size (GB)
    - OP_SYS:         Operating system type and version
    - HARDWARE_MODEL: Hardware model
    - CPU_MODEL:      CPU model
    [EXAMPLE OUTPUT]
    |HOST     |MANUFACTURER|ACTIVE|CPU_DETAILS       |PHYS_MEM_GB|SWAP_GB|SEC_STORE|OPERATING_SYSTEM                 |HARDWARE_MODEL             |
    |saphana20|IBM         |yes   |80 (160) * 2395MHz|    4039.88|  32.00|available|SUSE Linux Enterprise Server 11.2|System x3950 X5 -[7143HDG]-|
    |saphana21|IBM         |yes   |80 (160) * 2395MHz|    4039.88|  32.00|available|SUSE Linux Enterprise Server 11.2|System x3950 X5 -[7143HDG]-|
      H.HOST,
      MAX(CASE WHEN KEY = 'hw_manufacturer' THEN VALUE END) BUILT_BY,
      MAX(CASE WHEN KEY = 'cpu_summary' THEN VALUE END) CPU_DETAILS,
      LPAD(MAX(CASE WHEN KEY = 'mem_phys' THEN TO_DECIMAL(TO_NUMBER(VALUE) / 1024 / 1024 / 1024, 10, 2) END), 11) PHYS_MEM_GB,
      LPAD(MAX(CASE WHEN KEY = 'mem_swap' THEN TO_DECIMAL(TO_NUMBER(VALUE) / 1024 / 1024 / 1024, 10, 2) END), 7) SWAP_GB,
      REPLACE(MAX(CASE WHEN KEY = 'os_name' THEN VALUE END), 'SUSE Linux Enterprise Server', 'SLES') OP_SYS,
      REPLACE(MAX(CASE WHEN KEY = 'cpu_model' THEN VALUE END), '(R)', '') CPU_MODEL,
      MAX(CASE WHEN KEY = 'hw_model' THEN VALUE END) HARDWARE_MODEL
    FROM
    ( SELECT                  /* Modification section */
        '%' HOST
      FROM
        DUMMY
    ) BI,
      M_HOST_INFORMATION H
    WHERE
      H.HOST LIKE BI.HOST
    GROUP BY
      H.HOST
    ORDER BY
      H.HOST
    Rgds,
    Mat.

  • TS3899 Having trouble accessing my email account thru the mail app, after entering the account information in the settings page, hotmail returns with the error message " The user name or password for Hotmail is incorrect

    Having trouble accessing my email account thru the mail app, after entering the account information in the settings page, hotmail returns with the error message " The user name or password for Hotmail is incorrect". Help

    Hotmail is having problems:
    http://bostinno.streetwise.co/2013/08/15/hotmail-outage-hotmail-is-down-for-user s-still-photos/
    http://www.engadget.com/2013/08/14/outlook-outage/
    http://www.infoworld.com/d/applications/microsofts-skydrive-outlookcom-are-down- some-users-224940
    http://mashable.com/2013/08/14/outlook-down/
    http://techcrunch.com/2013/08/14/microsoft-acknowledges-outlook-com-messenger-sk ydrive-outages/

  • Error -1074384569; NI-XNET: (Hex 0xBFF63147) The database information on the real-time system has been created with an older NI-XNET version. This version is no longer supported. To correct this error, re-deploy your database to the real-time system.

    Hello
    I have a VeriStand-Project (VSP) created with my Laptop-Host (LTH) which works with my PXI, while
    deploying it from my LTH. Then I have installed the whole NI enviroment for PXI and VeriStand use on a
    industrial PC (iPC). I have tried to deploy my VSP from the iPC to the PXI but the following error
    message arose on my iPC:
    The VeriStand Gateway encountered an error while deploying the System Definition file.
    Details: Error -1074384569 occurred at Project Window.lvlibroject Window.vi >> Project
    Window.lvlib:Command Loop.vi >> NI_VS Workspace ExecutionAPI.lvlib:NI VeriStand - Connect to System.vi
    Possible reason(s):
    NI-XNET:  (Hex 0xBFF63147) The database information on the real-time system has been created with an
    older NI-XNET version. This version is no longer supported. To correct this error, re-deploy your
    database to the real-time system. ========================= NI VeriStand:  NI VeriStand
    Engine.lvlib:VeriStand Engine Wrapper (RT).vi >> NI VeriStand Engine.lvlib:VeriStand Engine.vi >> NI
    VeriStand Engine.lvlib:VeriStand Engine State Machine.vi >> NI VeriStand Engine.lvlib:Initialize
    Inline Custom Devices.vi >> Custom Devices Storage.lvlib:Initialize Device (HW Interface).vi
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * • Unloading System
    Definition file... • Connection with target Controller has been lost.
    The software versions of the NI products (MAX/My System/Software) between my LTH and the iPC are
    almost the same. The only differences are:
    1. LabView Run-Time 2009 SP1 (64-bit); is installed on LTH but missing on iPC. The iPC has a 32-bit system.
    2. LabView Run-Time 2012 f3; is installed on LTH but missing on iPC.
    3. NI-DAQmx ADE Support 9.3.5; something strage on the LTH, because normally I am using NI-DAQmx 9.5.5 and all other DAQmx products on my LTH are 9.5.5. That means NI-DAQmx Device Driver 9.5.5 and NI-DAQmx Configuration 9.5.5.. On the iPC side all three products are 9.5.5.. That means NI-DAQmx ADE Support 9.5.5, NI-DAQmx Device Driver 9.5.5 and NI-DAQmx Configuration 9.5.5..
    4. Traditional NI-DAQ 7.4.4; The iPC has this SW installed. On the LTH this SW is missing.
    In order to fix this problem I have formatted my PXI and I have installed the following SW from the iPC:
    1. LabVIEW Real-Time 11.0.1
    2. NI-488.2 RT 3.0.0
    3. NI_CAN 2.7.3
    Unfortunately the above stated problem still arose.
    What can I do to fix this problem?
    I found a hint on http://www.labviewforum.de/Thread-XNET-CAN-die-ersten-Gehversuche.
    There it is written to deploy the dbc file againt.
    If this is a good hint, so how do I deploy a dbc file?
    I would feel very pleased if somebody could help me! :-)
    Best regards
    Lukas Nowak

    Hi Lukas,
    I think the problem is caused by differenet drivers for the CAN communication.
    NI provides two driver for CAN: NI-CAN and NI-XNET.
    NI-CAN is the outdated driver which is not longer used by new hardware. NI replaced the NI-CAN driver with NI-XNET some years ago, which supports CAN, LIN and the FLEXRAY communication protocol.
    You wrote:
    In order to fix this problem I have formatted my PXI and I have installed the following SW from the iPC:
    3. NI_CAN 2.7.3
    NI CAN is the outdated driver. I think that you should try to install NI-XNET instead of NI-CAN on your PXI-System, to get rid of the error message.
    Regards, stephan

  • Storing the Timestamp field in the Table

    Hi
    I have a Z program and we need to store the timestamp field in the Z table . I have created the table with the dataelement
    TIMESTAMP . Is there any system field that can be used to store the timestamp field from your program
    say for example we have declared a work area of the structure of the Z table and Appended through the Internal Table and Modified that Z table.
    My intention is store the Timestamp field in the Z table.
    Nadesh

    Hi,
        you can add as below..
    types : begin of st_output.
                             include structure ztaxinvoice.
                             FKIMG1 TYPE VBRP-FKIMG,
                             FKIMG2 TYPE VBRP-FKIMG,
                             types : end of st_output.
        or you can add this field to your structure 'ztaxinvoice'  as below
    'FKIMG1 TYPE FKIMG'
                                       'FKIMG2 TYPE FKIMG'
       Then you can declare internal table and work area as mentioned below..
    data: it_output type standard table of ztaxinvoice,
                            wa_output type ztaxinvoice.
    here in this case no need of types declaration also you can pass the same type (wa_output type ztaxinvoice) in smartform.
    hope this will help you,
    Regards,
    Renuka S.

  • Is there a way to remove the changes to the URL Bar, specifically the status information and the target URL?

    To begin, I utterly despise the changes to the URL Bar and the removal of the Status bar. In order to stay with the latest version of Firefox I am attempting to recreate the look and feel as best I can.
    I have already installed the Status-4-Evar extension. The only thing that remains is to remove the status information and the target URL from the bar.
    Are there any settings in about:config that will allow me to make these changes?
    EDIT: Status information can be removed by toggling. status4evar.statusInUrlBar. Still looking for a way to remove the target URL...

    This code in [http://kb.mozillazine.org/UserChrome.css userChrome.css] below the @namespace line seems to remove the links that appear on hover.
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    .urlbar-textbox-container {color: inherit !important;}
    .urlbar-textbox-container-children {opacity: 1 !important;}
    .urlbar-over-link-box {opacity: 0 !important;}
    </nowiki></pre>
    See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

  • TS3988 The correct information in the email address, Full name and Incoming mail server panes are greyed out, and I can get no further in bring my iCloud a/c online. Any ideas? Thanks.

    I've just updated and installed Mountain Lion. I've clicked for iCloud for Mail. The correct information in the email address, Full name and Incoming mail server panes are greyed out, and I can get no further in bring my iCloud a/c online. Any ideas? Thanks.

    They are grayed out because they are automatically set up whey you check Mail in System Preferences.  If you didn't do that, go back and do so and your iCloud email account will be set up automatically.

  • I was transferring my information from my old iphone to the new one, and i forgot that i had some pictures in the new one. i did the restoring information and the pictures in new one are gone. how can i get them back????

    i was transferring my information from my old iphone to the new one, and i forgot that i had some pictures in the new one. i did the restoring information and the pictures in new one are gone. how can i get them back???? please

    Only way to get it back is to restore your phone from a backup, if those pics were included in that backup.
    But most likely those pics are gone.
    What you should've done was import http://support.apple.com/kb/HT4083 the pics to your computer and after you restored from your old backup, you could sync those new pics to your phone via itunes.

  • In the iSO 7 in the map app: Why we cann't get the direction information of the riad in the meddileast region

    I cann't get the direction information of the roads in my country Saudi Arabia

    Turn bu turn navigation in Saudi Arabia is not supported.
    http://www.apple.com/ios/feature-availability/

  • HT1918 When I try to purchase a apps, system require me to verify my credit card account.  I've provided all the complete information of the credit card but system always ask me to contact iTunes support to finish this transition, why ?

    When I try to purchase a apps, system require me to verify my credit card account.  I've provided all the complete information of the credit card but system always ask me to contact iTunes support to finish this transition, why ?

    Answered in your Other post on this Topic...
    https://discussions.apple.com/message/24053626#24053626

Maybe you are looking for