Changing Cal Constants does not effect Thermocoup​le readings

I change the calibration constants using Cal Constant .vi by inputting cal constant 1&2, and write the values to the NI-DAQ memory. And then I sample the corrected channel with a virtual channel, but the values do not change. I verify that the values are correct in the memory by retrieving the values via OpCode 0 and the values are correct in memory. An addition oddity is that when I copy the NI-DAQ memory to the Default Load area the value don�t copy over correctly. Any help you could give would be appreciated! I have a SCXI-1102 running LABVIEW 6.1.

Hi Rob,
You mentioned that the offset voltage you had to provide in your program changed each time you started the VI, and indicated that this was possibly due to changes in ambient temperature. This would be compensated by the CJC sensor, which is built into your SCC-TC01. Since MAX does not allow you to select the built in CJC Sensor, the SCC may be configured incorrectly, possibly due to the SCC-TC01 being assigned to the incorrect port or some other mistake. You did not mention in your previous post the results of going through the quick start guide and ensuring the configuration is correct.  This would be a helpful trouble shooting step. Since the device is for signal conditioning, if the configuration is off, the resulting data will be off.
You had also mentioned that you are using the “new” LabVIEW routines. If you are referring to programming with DAQmx instead of Traditional DAQ, this will not be a concern. In MAX, where the test panels are being run, it does not matter if you were using DAQmx or DAQ, since the test panel is looking at the actual hardware.
I hope that this helps. Please let me know if you have any further questions I can clarify or if this solution does not take care of your missing VI issue. Thanks-
Mallori M
Mallori M
National Instruments
Global Customer Education Program Mananger
Calculate the time you will save with NI Training

Similar Messages

  • Titles are not visible, they show up on timeline as a grey box no text  does not effect other events or projects

    titles are not visible, they show up on timeline as a grey box no text  does not effect other events or projects. could this have something to do with motion

    Without seeing the timeline it sounds as if they've been off. Maybe you pressed the V or the role is switched off in the timeline index.

  • IPC requirement does not effect sales order

    Hi,
    I wrote a pricing requirement  in java extending RequirementAdapter.
    I uploaded it to the CRM system. When the requirement  is called, it writes messages to the VMC log and i can see the result of the requirement  : "true" or "false" .
    The problem is that the result of the requirement  does not effect the condition in the sales order - nothing happens no matter what the result value is.
    What should I do in order to get an error message in the sales order when the requirement returns false?
    Thanks
    Tomer

    Hi Michael,
    If the requirement will not trigger any error message by default according to the returned value, what excaly do I need to do in order to achieve that? Is there a BADI or user exist  where I can check the returned value and raise the message?
    Thanks,
    Tomer

  • Screen changing colours and does not start

    hi, when i turn on my macbook, the screen changes colours and does not start. Please someone knows how to solve this problem?

    you need to take it in for diagnosis, that is beyond the scope of this forum.

  • The OVERFLOWLOGPATH cfg does not effect

    Hello,
    Everytime when DB2 was restating, the following messages appeared in db2diag.log.
    (This is not full diag messages, but like this.)
    unable to use OVERFLOWLOGPATH DB cfg parameter
    /db2/<SID>/log_retrieve/NODE0000
    DB2 will continue to use the current path
    sqlpgValidateOverflowLogPath
    string 140bytes
    Error -214643908 where validating overflowLogpath /db2/<SID>/log_retrieve/NODE0000/
    The OVERFLOWLOGPATH cfg does not effect
    There is no definition of OVERFLOWLOGPATH in DB CFG.
    What is the reason for these error messages?
    Any comment is greatly appreciated.
    Best regards.
    Takae Momose

    Hello,
    yes. That is possible:
    I tested it on my system:
    milchkuh:db2hjm 57> mkdir /db2/HJM/log_retrieve
    milchkuh:db2hjm 58> mkdir /db2/HJM/log_retrieve/NODE0000
    milchkuh:db2hjm 59> db2 connect
       Database Connection Information
    Database server        = DB2/LINUXX8664 9.7.0
    SQL authorization ID   = DB2HJM
    Local database alias   = HJM
    milchkuh:db2hjm 60> db2 update db cfg for hjm using overflowlogpath /db2/HJM/log_retrieve/NODE0000
    DB20000I  The UPDATE DATABASE CONFIGURATION command completed successfully.
    milchkuh:db2hjm 61> db2 get db cfg for hjm show detail | grep -i overflow
    Overflow log path                     (OVERFLOWLOGPATH) = /db2/HJM/log_retrieve/NODE0000/NODE0000/ /db2/HJM/log_retrieve/NODE0000/NODE0000/
    milchkuh:db2hjm 62> ls -ltr /db2/HJM/log_retrieve/NODE0000
    total 4
    drwxr-x--- 2 db2hjm dbhjmadm 4096 2009-09-01 14:15 NODE0000
    In respect to your initial error: Can you check, whether the path is accessible for db2sid?
    Can you try to set overflowlogpath to NULL and then set it again?

  • When Matching Users Via Email, Changing Email Address Does Not Change Login

    Well, the subject pretty much says it all, but here're some examples of what's going on:
    Initial Data
    - Create 2 Business Partners in SAP, C1 and C2.
    - Create 2 Contact Employees in SAP, Adam with email adam at eden.org in C1 and Eve with no email in C2.
    Synch
    - Run Initial Synch followed by Standard Synch (for good measure).
    - Web Tools gets user Adam with username adam at eden.org.
    - Web Tools gets user Eve with username 2, the unique key for SAP's Contact Employee.
    Data Change In SAP
    - Adam's email is removed.
    - Eve's email is populated with eve at eden.org.
    Resynch
    - Run Standard Synch.
    - Web Tools changes both email addresses, with Adam's being erased and Eve's becoming eve at eden.org.
    - Web Tools does not change the UserID, leaving Adam's as adam at eden.org and Eve's as 2.
    That last bullet is the big problem: if a user changes an email address, the username doesn't change. Is there any way to change this across the board, or perhaps even force users to login via their current email address?

    Also, there is a field in the Users table called EmailLogin. I have tried without success to change this field so that the user would use this field to login instead of the UserID, but have been unsuccessful in getting it to work.
    As an alternative, the login control in /plugins/loginblock.ascx contains, as a portion, the following code:
        protected void loginMain_LoggedIn(object sender, EventArgs e) {
            NPUser user = new NPUser(loginMain.UserName);
            ((NPBasePage)Page).Login(user.UserID, user.AccountID, false);
    Wouldn't it be simple to do the following?
        protected void GetUserIDFromDBByEmail(string email) {
            string userid;
            System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection();
            System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand(conn, "SELECT Users.UserID FROM Users WHERE Users.Email='" + email.Replace("'", "''") + "'");
            userid = (string)cmd.ExecuteScalar();
            cmd.Connection.Close();
            conn.Close();
        protected void loginMain_LoggedIn(object sender, EventArgs e) {
            string userid;
            // Though we're passing the "username" from the form,
            // we know that we're expecting the email to be in it
            userid = GetUserIDFromDBByEmail(loginMain.UserName);
            NPUser user = new NPUser(userid);
            ((NPBasePage)Page).Login(user.UserID, user.AccountID, false);
    Again, the benefit to this is that you can synch using the Internal B1 Contact Code, which will remain constant and unique, and have the availability to change the way the user logs in by modifying the email address. Of course, email addresses would have to remain unique as well, but that's an easy enough thing to check for.

  • Changing Paper size does not change page break?

    I am using Oracle Report R6i.
    I have created a matrix report showing months horizontally and items vertically. By default, the report displays a vertical line (Page Break Line) at 8 inches (as shown in Ruler).
    I change the paper size in Page Setup Menu but still the page break line displaying at 8 inches due to which only 03 months are displaying per page at Landscape mode. My page size is : 210x230 cm.
    How can I extend that page break line so that atleast 6 months to be displayed per page.
    Regards,
    Luqman

    Changing the size used by the printer with the page setup dialog does not affect how Reports formats the output. You need to change Reports page size for this.
    In 6i, the page size for Reports is controlled by properties against the Section objects (header, main, trailer) in the navigator.
    In 2.5 you would set the vertical and horizontal page size in the Reports property palette for all sections. With the introduction of individual sections in 6i, each section can have it's own page size.
    In your example you probably want to change the page size against the "main section" to 13" x 8.26" to get the report to format in Landscape. Also remember to set the ORIENTATION parameter or property to "Landscape" so that the printer is set to Landscape as well.

  • Hello, I need help with my macbook pro. It looks like I cannot install anything anymore. Everytime I try to install a new software, use the migration assistant or click the lock to make changes, it simply does not react.

    Hello, I need help with my macbook pro.
    It looks like I cannot install anything anymore. Everytime I try to install a new software, I simply get stuck during the installation type process. I put in my password, it does accept it, but it does not go any further.
    I tried to reset the password, put no password, repair the permissions, the disk but nothing will do. I nearly got stuck with the log in screen but finally succeeded in disabling it.
    So I thought I might try to create a new account but I cannot click the lock to make changes. It simply refuses to react.
    I am now thinking about using the migration assistant to save all my settings, data and so fourth, but again I get stuck when I have to type in my password. It accepts it but nothing happens...
    I guess it has something to do with the authorization process, but can't find anything on the internet about it... Can you help me out?
    I am running Lion 10.7.3.
    Regards,
    Nicolas.
    (I apologize if any grammatical/structural mistakes were to be found, english is not my mother-tongue. )

    You probably won't like this suggestion, but I suggest you reinstall Lion.
    First, backup your system. Next, reboot your system, press/hold the COMMAND-R keys to boot into the Recovery HD. Select 'Reinstall Mac OS X'. If you purchased Lion as an upgrade to Snow Leopard, the reinstall process will install Lion 10.7.3. If your system came preinstalled with Lion, you might still get Lion 10.7.2. Both installs are a total install of the OS. None of your apps or data will be impacted. Just the OS.

  • EM10gR2 Grid Control / Change Management Pack does not support TYPE objects

    I wonder any Oracle EM10gR2 Grid Control users, implementing Oracle Change Management Pack, have used it for the release and proper packages management.
    Issue1 - On an EM console / Web GUI the DDL comparison and synchronization is not supported at all. Implementing it @ customer it appeared that we have to install a 10g Java Client in order to use the code comparison and sync functionalities.
    Issue2 - and this is more serious - it appears that even with Java client in use, you cannot compare or sync objects related to TYPE or TYPE BODY data types. The comparison simply hangs.
    Asked help from support, they mentioned an ER from 8i and logged a new ER for 10g/11g. That is surprising especially as the doc (http://download.oracle.com/docs/html/A96679_01/toc.htm) about code comparison does not exclude the TYPE objects from the supported options.
    Any fellow DBA running to a same problem? What solutions & recommendations might you have?

    Hi Mugunthan,
    Can you provide links to any tutorial or example (screenshots) of using Setup Manager to transfer something between two environments (say Users or DFFs)?
    Thanks,
    Gareth

  • Problem - SCSM Change status workflow does not work, shows huge "minutes behind" in SQL, but do not appear as failed.

    There is a workflow "Change request status changed" which periodically fails to run, and it does not show up in "All instances" tab. For instance when I cancel a CR, all activities remain as-is in their respective statuses.
    SQL - "SubscriptionStatus" from
    http://blogs.technet.com/b/servicemanager/archive/2013/01/14/troubleshooting-workflow-performance-and-delays.aspx
    shows increasing number of "minutes by" each minute for this particular workflow. 
    Restarting "Management service" does not give enything. As well as "UpdateSubscriptionWatermark" SQL from the link above (except resetting the "minutes behind" counter)
    Please help!
    Egils Zonde from Technet

    Take it to an apple store and see if you can get an out of warranty replacement. It won't be free, I think the fee for an Air replacement is $299, but it sounds like the insides are broken.

  • Option for changing country/region does not show

    I Use IPad IOS 8.
    I want to change the region from United States to The Netherlands, but there is no option to do this.
    I logged in to Apple Store and chose View Account. The option does not show.
    I Searched the community, but no solution found that helped me.

    I'm confused now as to what you need to do and what's not working. The whole part about using Safari makes no sense, but I could very well be misunderstanding you.
    Whatever your region is set to in the iPad settings should sync to the settings in the iStores ...iTunes, the App Store and the iBooks Stores on the iPad. Try this now. Go to the iTunes app on the iPad, swipe to the bottom of the screen in the featured tab. Tap on your ID and sign out. Then sign back in again and see if you are prompted to change to the store that you want to be in.

  • Changing Datasource Location Does not Change Procedure Name

    <p>Is there a way to change the name of the stored procedure in the field explorer after changing the datasource location? I&#39;ve changed stored procedures in my report but it keeps the old name.</p><p> Crystal Reports 11 v2</p>

    -Database/Database Expert
    -Highlight SP on right hand database tree
    newSP
    ...this renames sp prefix across all<br /> formula and output fields in report<br />It&#39;s really an alias: it does not physically <br />change the SP name.

  • Changing cell padding does not change margin

    The text in the cell of an existing table is clearly indented from the cell border.   However, the cell padding is set to 0.  When I change the cell padding to 10, 50, or any other number, the text margin does not change.
    I am trying to create another table.  The text in the new table is flush left.  Whatever I set the cell padding to, the text margin does not change.
    The documentation indicates that the only way to change the cell margins is to change cell padding.  Obviously that does not work.  How do I change the cell padding?
    Thank you.
    Cathy

    Can you please anwser couple of queries to nail down the issue?
    1) Please let us know the Contribute Version and OS you are using.
    2) Is this happening with a particular page?
    3) Can you try creating a new blank page, insert a table and modify the Cell Padding value.Check whether it is getting reflected and also verify the cell padding parameter is added in the code.
    4) Previously if it worked and broken suddently, please try clearing the Contribute preference. Refer to the blog post, blogs.adobe.com/contribute/2011/11/launch-contribute-freshly-by-deleting-preferences.html

  • Equipmen dismantle, change plant, install does not work

    Hello experts,
    I have developed a function module which should execute the following steps:
    - dismantle an equipment from a functional location
    - change the plant of the equipment
    - install the equipment into a new functional location
    I therefor tried to use these three existing function modules:
    - Dismantle -> EQUIPMENT_DISMANTLE
    - Change Plant -> BAPI_EQUI_CHANGE
    - Install -> EQUIPMENT_INSTALL
    Now the problem occurs that the call of the BAPI_EQUI_CHANGE does not execute a commit so the changes are not directly written to the database and the following call of EQUIPMENT_INSTALL is not able to install the equipment into the new functional location.
    I tried to execute a BAPI_TRANSACTION_COMMIT after the BAPI_EQUI_CHANGE but still it does not work. In my dev system I can insert a "WAIT UP TO 1 SECONDS." call which work but this does not work in the testing env. Also this is a very bad approach.
    The curious thing is that everytime I debug my FM everything is working fine. So I bet there is a problem in the direct following call after the BAPI_EQUI_CHANGE and EQIPMENT_INSTALL.
    Here are the relevant calls:
    CALL FUNCTION 'EQUIPMENT_DISMANTLE'
        EXPORTING
    *     READ_SOBJ             = 'X'
    *     READ_ROBJ             = 'X'
    *     LOCK_SOBJ             = 'X'
    *     I_DATE                = SY-DATUM
    *     I_TIME                = SY-UZEIT
          i_inherit_flags       = p_i_inheritance_flags
          old_sequi             = p_i_ls_equi
    *     EXEC_MEAS             = ' '
          transmit_new          = 'X'
          direct_new            = 'X'
          commit_new            = 'S'
        CHANGING
          s_equi                = p_i_ls_equi
    *     R_EQUI                =
    *     R_IFLO                =
        EXCEPTIONS
          err_dismantle         = 1
          OTHERS                = 2
      p_rc = sy-subrc.
      IF sy-subrc NE 0.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait   = 'X'
          IMPORTING
            return = bapiret2.
      ENDIF.
      itob-maintplant   = p_target_swerk.
      itob-planplant    = p_target_iwerk.
      itobx-maintplant  = 'X'.
      itobx-planplant   = 'X'.
      CALL FUNCTION 'BAPI_EQUI_CHANGE'
        EXPORTING
          equipment               = p_ls_equi-equnr
          data_general            = itob
          data_generalx           = itobx
          data_specific           = itob_eq
          data_specificx          = itob_eqx
    *     VALID_DATE              = SY-DATUM
    *     VALID_TIME              = SY-UZEIT
        IMPORTING
    *     DATA_GENERAL_EXP        =
    *     DATA_SPECIFIC_EXP       =
          return                  = bapiret2
      IF bapiret2 IS INITIAL.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait   = 'X'
          IMPORTING
            return = bapiret2.
      ENDIF.
      CALL FUNCTION 'EQUIPMENT_INSTALL'
        EXPORTING
          read_sobj             = 'X'
    *     READ_ROBJ             = 'X'
    *     LOCK_SOBJ             = 'X'
    *     POSEQUI               =
    *     I_DATE                = SY-DATUM
    *     I_TIME                = SY-UZEIT
          i_inherit_flags       = p_i_inheritance_flags
    *     OLD_SEQUI             =
    *     EXEC_MEAS             = ' '
    *     CALL_EXIT             = ' '
    *     CHECK_NEW             = 'X'
          transmit_new          = 'X'
          direct_new            = ' '
          commit_new            = 'X'
        CHANGING
          s_equi                = p_ls_equi
          r_equi                = p_ls_equi_target
          r_iflo                = s_iflo
        EXCEPTIONS
          err_install           = 1
          OTHERS                = 2
    How can I enable this inside one function module?
    Please, any hints are welcome!
    Regards,
    Andreas

    So, what I have done now is the following:
    IF bapiret2-type EQ 'S'.
        COMMIT WORK AND WAIT.
    *   now check if changes are written to db
        DO.
          l_iwerk = 0.
          " get the latest item entry
          SELECT SINGLE iwerk FROM equz
            INTO l_iwerk
            WHERE equnr EQ p_ls_equi-equnr AND
                  datbi EQ '99991231'.
          IF l_iwerk EQ equitime-planplant.
            p_rc = 0.
            EXIT.                 " data written to db -> exit
          ELSE.
            WAIT UP TO 2 SECONDS. " wait and check in next loop
          ENDIF.
          IF sy-index EQ 10.
            p_rc = 1.             " set returncode to 1
            EXIT.                 " after 10 times -> exit
          ENDIF.
        ENDDO.
      ENDIF.
    This code checks if the respective entry in the db is already written and if not retry to read it with a delay of 2 seconds.
    Looks a little bit ugly but does the job.
    If anyone could get me to a "better" solution I would be happy to hear!

  • Changing JInternalFrame color does not work

    UIManager.put("InternalFrame.activeTitleForeground", new ColorUIResource(Color.red));
    UIManager.put("InternalFrame.activeTitleBackground", new ColorUIResource(Color.red));
    UIManager.put("InternalFrame.borderColor", new ColorUIResource(Color.red));This code does not make anything appear red on my JInternalFrames .. the header etc. still looks purple when selecting one ... why is this?

    That is because the internal frame isn't using those settings for setting the color of the internal frames. If you look at the code in javax.swing.plaf.metal.MetalInternalFrameTitlePane you can see that the title pane is drawn using:
    MetalLookAndFeel.getPrimaryControlHighlight() MetalLookAndFeel.getPrimaryControlDarkShadow()
    MetalLookAndFeel.getPrimaryControl()
    MetalLookAndFeel.getControlHighlight()
    MetalLookAndFeel.getControlDarkShadow()
    MetalLookAndFeel.getControl()
    If you wish to change the color of internal frames, you have to either change those settings L&F wide, or create your own internal frame title bar UI classes (not a small task you will find).
    Why doesn't it use those settings? No idea, it should use something like that.

Maybe you are looking for