With the help of a data base with VeriStand BOX

Hello

I use a BMS that communicate via CAN with VeriStand. I imported the database of the device with NI-XNET (with 3 nodes CAN) and I can see some parameters of acquisition under veristand correctly.

But now I want to order a State request and check if the command is well transmitted.

To do this, I sent a node and try to see the information in another node and it does not work.

So is this the proper way to check transmission CAN or is there another way?

Thank you very much

Hi Vincent,.

If I understand correctly, what you're doing are a loopback test. It is indeed a good practice for communication. Have you connected your ports CAN directly together? In some cases, depending on the hardware you are using, you may need an external power supply for the transmission CAN occur.

In all cases, you can also check your good communication using the tool called NI XNET Bus monitor.

Does that answer your question?

Good day

M junior

Tags: NI Products

Similar Questions

  • value of the column in my data base

    Hi Master,

    I'm running the query to find the value of a column in my diagram below. But when I change user_tab_columns in all_tab_columns, I get the error message.

    I use 11.2.0.1 Oracle version. without the help of xml, we can get the desired result? Please help me.

    Select table_name, column_name

    (select rownum, table_name, column_name,

    dbms_xmlgen. GetXml ('select 1 from "'|") table_name | " » où « ' || column_name |' ("=" & val "') x

    from all_tab_columns where data_type = "VARCHAR2".

    ) where length (x)! = 0 ;

    ORA-19202: an error has occurred in the processing of XML

    ORA-00942: table or view does not exist

    ORA-06512: at "SYS." DBMS_XMLGEN", line 176

    ORA-06512: at line 1.

    How to avoid this error? and how do I get the power requested by the query above? Please notify.

    Concerning

    AR

    Unable to reproduce this scenario, give it a try with this and check if works...

    SELECT owner, table_name, column_name
      FROM (SELECT ROWNUM,
                   owner,
                   table_name,
                   column_name,
                   CONVERT (
                      DBMS_XMLGEN.getxml (
                            'select 1 from "'
                         || owner
                         || '"."'
                         || table_name
                         || '" where "'
                         || column_name
                         || '" =''&val'''),
                      'UTF8',
                      'WE8MSWIN1252')
                      AS x
              FROM all_tab_columns
             WHERE data_type = 'VARCHAR2' AND owner ='SCOTT')
    WHERE LENGTH (X) != 0;
    

    See you soon,.

    Manik.

  • EXTRACT DATES WITH THE HELP OF TWO DATES AND THE BOX

    Hello

    I HAVE 2 DATE PICKER ITEMS
    : P1_ARRIVAL_DATE AND: P1_DEPARTURE_DATE

    AND I HAVE 7 ITEMS in BOXES DAY it return values are 'Y '.

    : P1_MON
    : P1_TUE
    : P1_WED
    : P1_THU
    : P1_FRI
    : P1_SAT
    : P1_SUN

    as I choose date: P1_ARRIVAL_DATE AND: P1_DEPARTURE_DATE
    AND THE DAY, AS: P1_MON, ONLY THE DATES HAVE TO RETURN WHO HAVE MONDAY AS DAY BETWEEN: P1_ARRIVAL_DATE AND: P1_DEPARTURE_DATE.


    FOR EXAMPLE IF I CHOOSE THE DATE: P1_ARRIVAL_DATE AS 07_NOV_2011 AND: P1_DEPARTUE_DATE AS: P22_NOV_2011 AND IT HAS 3 MONDAY BETWEEN THESE DATES
    RESULT SHOULD BE DISPLAY AS
    ======================================
     ARRIVAL DATE-------ARRIVAL DATE+6
    ============================
     07_NOV_2011 ---     13_NOV_2011       // THESE ARE MONDAY DATES
    14_NOV_2011 ---     20_NOV_2011     
    21_NOV_2011 --      28_NOV_2011 
    CAN I CHOOSE MORE THAN ONE CHECK BOX AT THE SAME TIME
    FOR EXAMPLE IF I CHOOSE: P1_MON AND: P1_TUE, THE RESULT SHOULD BE

    ARRIVAL DATE-------ARRIVAL DATE+6
    ============================
     07_NOV_2011 ---     13_NOV_2011   
     08_NOV_2011 ---     14_NOV_2011      
    14_NOV_2011 ---     20_NOV_2011      // MONDAY AND TUESDAY DATES
    15_NOV_2011 ---     21_NOV_2011  
    21_NOV_2011 --      27_NOV_2011
    22_NOV_2011 ---     28_NOV_2011 
    HOW CAN I DO THIS? PLEASE HELP SOLVE THE PROBLEM.



    THANKS and GREETINGS
    CORINE

    X the problem you see is a misunderstanding on my part about what is the date of arrival date of departure... it's inverse reasoning: at your arrival is before departure (and I got it on the other hand, the departure before arrival (:-))

    But there is also a flaw in the code (instead of the Date of arrival by using the select sysdate).

    Please run the code like this:

    with dates as
    (select to_date(:P1_ARRIVAL_DATE,'DD-MON-YYYY')+level-1 as day from dual
     connect by level <= to_date(:P1_DEPARTURE_DATE,'DD-MON-YYYY') - to_date(:P1_ARRIVAL_DATE,'DD-MON-YYYY')  +1
     )
    select day, to_char(day,'Dy') from dates
    where to_char(day,'Dy') = 'Mon' and :P1_MON = 'Y'
    union
    select day, to_char(day,'Dy') from dates
    where to_char(day,'Dy') = 'Tue' and :P1_TUE = 'Y'
    union
    select day, to_char(day,'Dy') from dates
    where to_char(day,'Dy') = 'Wed' and :P1_WED = 'Y'
    union
    select day, to_char(day,'Dy') from dates
    where to_char(day,'Dy') = 'Thu' and :P1_THU = 'Y'
    union
    select day, to_char(day,'Dy') from dates
    where to_char(day,'Dy') = 'Fri' and :P1_FRI = 'Y'
    union
    select day, to_char(day,'Dy') from dates
    where to_char(day,'Dy') = 'Sat' and :P1_SAT = 'Y'
    union
    select day, to_char(day,'Dy') from dates
    where to_char(day,'Dy') = 'Sun' and :P1_SUN = 'Y'
    

    for the period from 01 to 15 November 2011, with P1_TUE and P1_FRI, flag in there, I got this result:

    DAY      TO_CHAR(DAY,'DY')
    11/01/2011     Tue
    11/04/2011     Fri
    11/08/2011     Tue
    11/11/2011     Fri
    11/15/2011     Tue
    

    To simplify (can only test inside the apex report, could not run code in SQL Wkshop):

    with dates as
    (select to_date(:P1_ARRIVAL_DATE,'DD-MON-YYYY')+level-1 as day from dual
     connect by level <= to_date(:P1_DEPARTURE_DATE,'DD-MON-YYYY') - to_date(:P1_ARRIVAL_DATE,'DD-MON-YYYY') +1
     )
    select day, to_char(day,'Dy') from dates
    where v('P1_'||to_char(day,'DY')) = 'Y'
    

    Published by: Kléber M on November 14, 2011 05:06

  • How the customer can take data base to the top

    Hello

    I created my request, I would like to implement a daily return to the top click on customer Option for customer .in the button Save.
    If you have a tutorial or links to data back up by customer. Please send me.



    Thank you
    Ed

    Hello

    I hope this help you
    http://www.Oracle.com/technology/OBE/2day_dba/backup/backup.htm

    BR, Jari

  • With the help of AMPA on non - WS Data Controls

    Hello community MAF .

    I'm developing an Application of MAF that consumes the REST API of WebCenter portal (which is based on the model of HATEOAS).

    I want to make powerful from scratch, including the following:

    -Offline mode (using the SQLite).

    -Persistence, of setting cache and synchronization using AMPA.

    Looks like it's not easier to apply directly on the REST API of WCP AMPA.

    The REST API of WCP is the result of a call of two steps:

    1) authenticate using BASIC authentication against http://Host/repos/api/resourceIndex for the utoken

    (2) use utoken as the URL parameter for the next call of REST for the specific service.

    I know that the Bus Service could be a possibility on the creation of a more simple REST on the WCP REST API, but is not an option right now because that is not easy to map.

    My questions are:

    (1) can we use AMPA on data controls in Java that will call internally to (DB in case of offline mode, REST by program in the case of online mode).

    (2) can define us manually in the persistenceMapping.xml?

    (3) is there anything else more easy to use wizards with HATEOAS base based Services?

    Thanks in advance

    Kind regards.

    Daniel,

    Why is it not service bus an option? You say 'not easy to map', but do the mapping in the MAF makes it not easier, it? the REST API of pressurization is not very easy to mobile, so this transformation to a more usable by using bus service API cost as a good idea for me. See also this article from the A-team.

    Answers to your questions:

    (1) Yes, this is the added value of nucleus of AMPA. You get a service generated the DTC Assistant classes, then you turn this class in a bean data control and use this data control bean for the construction of your user interface. The service class will access local DB and the service REMAINS remote. By default, AMPA will directly show the current data of the local DB, and then in the background call the REST service (online) and refresh the UI, once the REST call has been processed. But this behavior is very configurable and can be changed as you wish.

    (2) Yes, of course, you can manually create data objects, classes of service and persistence mappings, but the wizard is generally much faster.

    (3) HATEOAS logical not for the dynamics of UI where the next action is determined by a link returned in the payload. It is a different model from the static of the UI we build in general with MAF. What is your problem with the help of the wizard of the AMPA?

    Steven Davelaar,

    Oracle Mobile & Cloud A-team.

  • ow change titles &amp; dates of lots of pictures (like in iPhoto?) With the help of Mac 'Pages' on, 2008 aluminium MacBook running OSX El Capitan 10.11.4

    How to change titles & dates of lots of pictures (like in iPhoto?) With the help of Mac 'Pages' on, 2008 aluminium MacBook running OSX El Capitan 10.11.4

    With the help of Mac 'Pages '.

    A typing mistake?

    If it is and you mean Photos Date of Mac are modified by selecting the photos using the Image menu == > adjust the time and date of order and changes made to the metadata such as keywords, location, etc. are made by selecting the photos and find the info and registering metadata in the Info window

    These are detailed in the help topics of pictures - a good place to look for help on the Photos

    View and add information about the photos

    You can view and add information about your photos. For example, you can see the date and time a photo was taken, the information about the camera that took the photo and badges that indicate the status of the photo. You can assign titles and captions to photos, add or change the location of the photos and change the date and time for them information. You can select multiple photos in an instant and add or change information about them all at once.

    Open pictures for me

    View and add information about the photos

    To view or change information for the photos, you select one or more photos, and then open the information window.

    • Open the Info window: Double-click a photo to view it, and then click the Info button in the toolbar or press on command I.
    • Add or change information: Change the following.
      • Title: Enter a name in the title field.
      • Description: In the Description field, type a caption.
      • Favorite: Click the Favorites button to mark the photo as a favorite. Click the button again to deselect.
      • Keywords: Enter the keywords in the keywords field. When you type, Photos suggest keywords that you have used before. Press enter when you have finished a keyword. To remove a keyword, select it and press DELETE.
      • Faces: Click on and type a name to identify a face. Click on several times, and then drag the identifier of the face different faces to identify many faces in a photo.
      • Location: Enter a location in the location field. When you type, Photos suggest places you can choose. To change a location, you can search a different location or change the location by dragging a PIN on the map. To remove location information, delete it or choose Image > location, then choose Remove location or back to the original location. You cannot assign a location if your computer is not connected to the Internet.

    Show titles, other metadata and badges

    Change the date and time of photo

    You can change the date and time associated with a picture. You can do this if you are traveling to a location in another time zone, and your camera affect your dates photos and periods that are correct for your House, but not the place you visited.

    1. Select the photos you want to edit.
    2. Choose Image > adjust Date and time.
    3. Enter the date and time you want in the modified field.
    4. Click a time zone on the map, if necessary.
    5. Click on adjust.
  • With the help of coupon in batches with different expiration dates

    I try to use coupon lot to offer free delivery to users. My requirement is to expire promo, 7 days after it has been generated.

    I am using batch of coupon for this requirement as promo codes will be generated on the fly.

    The challenge with the help of batch coupon is that it has a fixed start and end date so that all the generated code coupons will have the same maturity.

    Is there a way to set the expiration in individual coupons?

    Thanks in advance.

    I expanded ClaimableManager.createBatchPromotionClaimable () method to achieve this.

  • SVN: #155021. You cannot update this file with the help of Dreamweaver Subversion integration because a new Subversion client application on your machine has made updates to the file Subversion meta data. For more information on this problem

    Can Hello anyone help?

    After you configure Subversion in Dreamweaver, I get this error again!

    SVN: 155021 #. You cannot update this file with the help of Dreamweaver Subversion integration because a new Subversion client application on your machine has made updates to the file Subversion meta data. For more information about this issue, see http://www.adobe.com/go/dw_svn_en.

    even after following the instructions http://www.Adobe.com/go/dw_svn_en Download the extension, python change the var in windows to say «;» C:\Python26'

    with & without quotes, with or without; before C

    command > comparability of Subversion to get the following error "the Conversion process has failed. Please make sure you have Python installed and you check Python PATH parameter'

    I managed to get all the files after the installation, I locked, unlocked and commit a file to test fact so that was all works well, the only part I'm not retrieves the latest version, this is because Subversion is 1.6.2 and dreamweaver must revert to the version 1.4.5 on local to work, the compile someone at - it an idea what to try next in order to make it work?

    Just a reminder!

    1. I configure Subversion through guidelines on http://help.Adobe.com/en_US/Dreamweaver/10.0_Using/WS80FE60AC-15F8-45a2-842E-52D29F540FED. html
    2. I managed to get the latest SVN version
    3. Lock, unlock and commit a file
    4. Installed Python in C:\Python26 change the path in windows system properties > advanced > Environment Variables > system variables > New > Python =; C:\Python26 also C:\Python26
    5. I also tried the same thing in the User Variables
    6. Installed the extension DW Subversion compatibility

    7. Tried to run the compatibly with the command > Subversion comparability in DW

    Welcome any suggestion to solve this?

    Hello

    There has been a lot of problems using svn with dw, and I know many people who have stopped trying to operate correctly.

    As much as I know dw will not work with newer versions of svn (over 1.5), and even then, there are a lot of problems, a possible solution is to try subweaver (at- http://code.google.com/p/subweaver/ ), as this has solved some of the problems associated with the use of tsvn dw environment.

    PZ

  • ADF is intended for the data base designed with vertical diagram?

    Hello

    I want to know if ADF 11 g is intended for the data base designed with vertical scheme where even the names of columns will be stored in a generic table?

    Thanks in advance.

    Published by: user8925296 on April 12, 2010 10:06

    The short answer is no...

    What do you call a 'vertical plan', it's what others have called for a schema of entity-attribute-value or universal data model. I advise you to do some research open minded on these types of patterns if you develop an application before continuing. Great sound in practice, they have very inherent ease of use and scalability problems. [url http://asktom.oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:2314483800346542969] This could be a good starting point...

    John

  • With the help of time interleaved sampling (TIS) to get the highest sampling rate of data acquisition card

    I tried enabling to TIS using nodes of property for the appropriate channel and by disabling the TIS for strings, I don't want to use. When I do that, I get the following error:

    niScope read Cluster.vi:1internal software error has occurred in the extended software. Please contact the support of National Instruments.

    Name of the component: nihsdru
    File name: p:\Measurements\highSpeedDigitizers\hsd\driver\trunk\1.10\source\redirection\tHardware.cpp
    Line number: 1038

    State code:-223425

    Any ideas what to do?

    Thank you, but I managed to fix it with the help of a few colleagues.

  • With the help of several key values to find the data

    Hello, it's me again.

    I had a question out about data from database and display them on a page of the ADF on Jdev 11.1.1.3.

    And Mr. Daniel Atwood answered my question with this blog to follow, that wrote.
    http://www.avioconsulting.com/blog/datwood/2012/06/19/using-BPM-process-variable-ADF-form-retrieve-database-information-0.

    But I have another question on top that.

    The Mr.Atwood example is when using a value of key 'one', what happens if I have two key values, how to set?

    Here are some details:

    I have a table like this

    ID Type_code name
    0001 05 a-blabla
    0002 b 25-blabla
    0002 26 b-blabla
    0003-08 c-blabla
    0003 25 c-blabla
    0003 c 79-blabla

    What I want to do is after the entry of the ID (0003) and type_code (25), he will show me the result on three components of text entry in the ADF with the value 0003, 25 page and c-blabla.

    Currently, I use only ID to query the data, but I would use two key values to find specific data.

    Thank you very much for taking the time to think about it,

    Sincerely,

    Alto

    If you had multiple values to use for the request, one approach would be to create a display object. Whether you are creating the view object, in step 6, you will add two bind variables. Call a "pTypeCode" and call the other "pId". Click on the back button so that you're still in step 5, and modify the WHERE clause as follows:

    (ID = :pId) and (Type_code = :pTypeCode)
    

    After you have done this, double-click the Module of the Application and add your new view object. In the tab control of data, click the Refresh button. Expand your new view object tab of data control-> expand "French"-> note that you now have a new method called "ExecuteWithParams".

    Open your workflow diagram-> delete your existing "SetCurrentRowKeyValues" method-> made slide on your new "ExecuteWithParams" operation on the diagram. When you do so, you should see two settings you need to complete the dialog box. Just as you did before with the SetCurrentRowKeyValue method, set the values for the pTypeCode and the nest.

    Add the case of control flow of the new method to your existing view-> make the new method, the default value.

    On your form, remove the fields that have been placed here who uses the old object from view. On the tab of data control, drag the fields you want to be placed on the inside of your new view object form.

    Dan

  • Anyone having problems with messages of script with the new version of GMail and Yahoo Mail? All the others seem fine and no problems with other browsers. With the help of FF25

    Gmail and Yahoo mail are very slow to load. I get a message from the script almost whenever instruct me to continue or to stop the script. Everything I have shut down or restart the browser goes blank and hangs. So, I have to restart Firefox. I followed suggestions on the help pages for the slow e-mail accounts or issues. (cleared cache etc, reset etc.) nothing solves the problem. I only noticed the problem since the first update of FF25. Scripts to stop even on these pages is not acceptable, because you are directed to the pages who insist you must restart scripts. It's a nightmare! Gmail both Yahoomail are very slow to respond to clicks more.

    Your list of details of the system shows that you have a user.js file in the profile folder to initialize some preferences at each start of Firefox.

    The user.js file appears only if you or another software created, therefore, normally, he wouldn't be here.
    You can check its contents with a text editor if you do not create this file yourself.

    The user.js file is read whenever you launch Firefox and initializes the preferences to the value specified in this file, so set of preferences via user.js can be changed temporarily for the current session.

    You can rename or delete the prefs.js file and numbered possible prefs-# .js and the file user.js to reset all default prefs.

    You can use this button to go to the Firefox profile folder:

    • Help > troubleshooting information > profile directory: see file (Linux: open the directory;) Mac: View in the Finder)

    Note that the folder "Application Data" in XP/Win2K and the "AppData" folder in Windows Vista and Windows 7 and later versions are hidden folders.

  • With the help of DataFileLoad within a use

    Hello

    When you import files of type *.7d7 using the existing use, some of the proparties are not loaded correctly. I tried to fix this by creating a new use. Given that I do not have access to the file format (and I don't really want to write the plugin from scratch) I tried to use the existing plugin and then clean the proparties loaded.

    Is it possible to use DataFileLoad inside the use vbs file? I get an error saying "Variable is undefined: «DataFileLoad»»

    Also, I tried to use the msgbox inside the use as a way easy to debug but is became a ' permission denied: "msgbox" "error."

    Thanks for the help.

    Hi Denis,.

    It is possible in a use VBScript to open an object file with the path of the data file.

    Set file = OpenFile (DataFilePath)

    It is possible in a use VBScript to open a store object with the path of the data file and the name of the use to use.

    Set store = OpenStore (DataFilePath, DataPluginName)

    It is NOT possible to make the function calls or variable reads/writes that are part of the DIAdem VBScript host (i.e. what normally run you in the SCRIPT Panel), because a series of VBScript in a VBScript use separate host that is embedded in ICU who has none of these orders or added variables.  Remember that VBScript DataPlugins can also be run on a computer that has LabVIEW on it.

    VBScript MsgBox and InputBox controls are also NOT allowed in a VBScript use because they would hang the DataFinder when trying to index the files of data headlessly.

    Brad Turpin

    Tiara Product Support Engineer

    National Instruments

  • Help? With the help of file system Ext3 on key USB on Linux RT target

    We have been affected by problems with the SD cards and USB drives formatted in FAT32 on some devices, according to Linus RT of long-term monitoring (mainly the cRIO-9035). It seems that readers are vulnerable to fluctuations in current and unexpected reboots (which are inevitable on these sites). Write aborted operations make the damaged discs, thus sabotaging logging after reboot.

    We have identified two solutions; implement both gives the best redundancy:

    (1) installation of UPS (uninterrupted power supply for emergency supplies/batteries) - done

    (2) using the file system apparently more robust 'ext3', which is available on the target RT Linux (FAT32, ext2 and ext3) - don't have not so far:

    ->, I was not able to properly format a USB stick for ext3. I use the MiniTools Partition Manager and don't get any errors when create and format partitions. But they appear as 'read only' when it is inserted into the chassis of the RT. All attempts to access it, other than to observe the empty folder sdxx in ' / media "is returning errors.

    Someone had a bit of luck with the help of ext3 disks formatted as data drives on the objectives of the RT Linux? It is worthwhile to solve my problems or should I use FAT32 and the observed risk?

    I do not consider this but a temporary solution:

    I ran into issues when you use MiniTools Partition Wizard to partition and format my thumb on Win10 records. An unidentified change makes the inaccessible disks and freeze the browsing of file on the PC when I try to delete the partition. It was quite annoying!

    I decided to try another partition tool and went for the EaseUs Partition Master (free version for the moment). I formatted successfully one of the troublesome discs with it (to add some uncertainty to the solution, I used another brand sp * banking, new PC to do). The reader now mounted in read-write and allows the startup application create the I want to store files in folders.

    I'm very curious to know the difference between the tools of both partitions and their formatting...

  • With the help of digital input for Boolean control?

    Hello!

    I have spent a lot of time to search but have not found a solution to this...

    I have LV 2015 with chassis NI 9188 and module NI 9425 DI.  Try to use the input signal to assign a State structure machine program and/or events in real time.  It would be acceptable to have an indicator show the status of the input line, since I can use it elsewhere with Value (Signaling).

    Please do not ask for the code - the problem is quite simple.  I just want to use the digital inputs to program control as a T/F.  I want just the program to analyze the State of the input and decisions - a bit like a PLC.

    All I seem to be able to extract is data of digital waveforms with a task DAQmx.

    It's not a trigger - I already use a trigger to start the analog acquisition.

    Formulate the problem in a simpler way...  What to do if you had a digital input module and you wanted to see the status of each input line in the form of a LED on your face in real time.  How would you do it?

    I really appreciate the help!

    greyhorn23 wrote:

    Formulate the problem in a simpler way...  What to do if you had a digital input module and you wanted to see the status of each input line in the form of a LED on your face in real time.  How would you do it?

    I would like to write what has been read to the Terminal.

    From what I can tell, you want to just read a single static value from your digital line.  You can then simply read the value of one and do some logic with her.

Maybe you are looking for