LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Get Error message with Roport Generation toolkit

Hi:

   I am new to labview and want to make a report that content of  the FFT spectrum data and FFT figure. a error message as *The report generation toolkit does not support the data you are using*.I used a for loop for calculate the FFT,does this cause the problem?I really do know how to settle it.Any suggestion is welcome!Thanks in advance!!17507i3FAB29573B58B8B0

0 Kudos
Message 1 of 6
(3,244 Views)

Error code 41103 indicates unsupported data type. It appears that you are trying to use a cluster to create a waveform. The waveform data type is not a cluster. You have to explicitly create the waveform datatype using the waveform functions. Specifically, you need to use the Build Waveform function. In your case it would look something like this:

 

 

Note: I don't have the Report Generation Toolkit, so I don't have the details on the specific Express VI that you're using, so I'm not sure if it acceps a waveform datatype.

0 Kudos
Message 2 of 6
(3,226 Views)

OH!Thank you very much!!As you say it works after changing to waveform.I show it below. I do not know if I can ask you help one more time.I really do not know how to add the waterfall  to report,it seems can be translate to waveform.Even it is translated the report will also just be 2D show but not waterfall show.I wonder how I can get the picture of the waterfall,if so I can get it into report.But I do not know how I can do this,can you teach me?  

17513iF84AA9515D384041 

0 Kudos
Message 3 of 6
(3,220 Views)

You do not need to use the Unbundle function - you already have the data available, so you're just performing an operation to get data you already have. Just use wires:

 

 


@yujin wrote:

.I really do not know how to add the waterfall  to report,it seems can be translate to waveform.Even it is translated the report will also just be 2D show but not waterfall show.I wonder how I can get the picture of the waterfall,if so I can get it into report.But I do not know how I can do this,can you teach me?  


I don't have LV 2009 running right now, so I can't give you the details, but basically what you need to do is to the get the image of the graph and add it to the report. You can use the Image to File method to save the image to file and then use the Report functions to add the image to the report. I can verify this tomorrow.

 

0 Kudos
Message 4 of 6
(3,208 Views)

I don't think I was completely clear, but my point about using the waveform data type extends to those other VIs that you're using. I don't recognize those VIs, but I'd bet they're expecting a waveform data type, not a cluster of an integer, a double, and an array of doubles.

0 Kudos
Message 5 of 6
(3,183 Views)

Hi,

0 Kudos
Message 6 of 6
(3,158 Views)