Spectral Measuremen​ts - Y axis units?

All;
When I choose to use the RMS magnitude selection on the spectral measurements dialog attached below.... If I am taking angular velocity measurements in degrees/second, what are the units of magnitude on the y axis of the subsequent frequency domain result? Additionally, what are the units if I select any of the other selections? Thanks!!
-Nick-
Attachments:
Capture.JPG ‏66 KB

When the selection is rms the output units are the same as the input units. Power Spectrum units are the square of the input units and power spectral density is in units of (input units)^2/Hz. This information is in the detailed help for the VI.
Lynn

Similar Messages

  • Number of Points used in FFT calcuation​s using Spectral Measuremen​ts

    Hi folks,
    I'm a pretty new user of labview (Ver 7.1) and I am trying to perform spectral analysis of power systems to ensure that they comply with stated standards. I'm using PXI-1002 system with PXI-6025E DAQ cards. I am able to get the analogue data into the program and display the time and frequency domain data to screen however I require a specific resolution to the spectral analysis to comply with the standard. obviously I can set the sampling frequency but I am unable to set the number of points of the actual FFT using either the "spectral measurements" function or other specific FFT VIs.
    Can the number of points be set manually or do the functions some how deside the best number of points depending on the amount of data passed to it, I've found that increasing the "Scan to read at a time" value of the AI config VI I'm using seems to increase the resolution but I don't know how the FFT functions deal with "Scan to read at a time" values that are not of 2^n.
    Cheers
    The Fat Controller
    90% of all experts aggree that 1 out of 10 experts are wrong

    Hi,
    The answer lies in the labVIEW Help file< If you dig deep enough through the hierarchy of the Spectral Measurment Express VI's, you will end up eventually to the Power Spectrum.vi or Real FFT.vi that can be found in the Analyze>>Signal Processing>>Frequency Domain Palette (see screenshot attached)>
    The computation details are given in the help for those VIs
    I will let you go through those files for details, but basically, when the number of samples in the input signal is a valid power of 2, the VIs compute the fast Fourier transform using the a fast radix-2 FFT algorithm.
    When the number of samples in the input sequence is not a valid power of 2 but is factorable as the product of small prime numbers, the VIs compute the discrete Fourier transform using an efficient DFT algorithm according to the type of trnasorm that is executed (i.e Real, Complex)
    But the help file explains it better than me
    Hope this helps,
    Cyril Bouton
    Active LabVIEW Developper
    Attachments:
    ScreenShot008.gif ‏29 KB

  • How do I count digital pulses and convert them to an x-axis unit?

    I am a grad student in Chemistry and I have undertaken a project to switch an old spectroscopic instrument from a stepper motor chart recorder to a digital interface. 
    I am using Labview 7.1.
    I just measured the signals coming from the instrument, so I know exactly what I am working with.
    I have one constant, 100mV, digital pulse--which was used to drive the stepper motor a set # of wavenumbers for a given amount of pulse. I need to convert this signal to correlate with wavenumbers--on the x-axis of my final waveform graph.
     The other signal is an analog signal, up to 250 mV, which is coming from a photomultiplier tube and represents my y-axis of my final waveform graph.
    I am using the NI BNC-2110 DAQ board. 
    Should I design the program based from just the AI Aquire Waveform.vi? Add a Count Events or Time vi. for the digital pulse?
    Could anyone give me some hints with my initial setup/layout? 

    Hints:
    Figure out what is the modle number of your DAQ device. I think the model you cited is just a break-out box.
    Depending on your hardware you may be able to use the step pulses to clock your A/D conversions.
    The number of sample will be the number of steps so all you need is a conversion factor to convert sample count totoal to wavelength.
    Others may offer better ideas so stand by.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Making octave plot in SVT to use g/SQRT(Hz) units

    I have been trying to measure some random vibrations, and it appears the main analysis approach required mesurement of Amplitude spectral density, typically expressed in units of um/sqrt(Hz), plotted on a 1/3rd octave plot vs frequency.
    Is there a way to use the Sound and Vibration Toolbox to do this? The default octave analysis plots power spectrum vs frequency. I can only use the IEC 1260 analysis module (since ANSI does not go below 20 Hz) and it does not appear to have the spectral density mode...
    Am I missing something, is there a way to do this?

    Hi Anatoly2,
    The attached VI will convert an octave spectrum into EU^2/Hz or EU/sqrt(Hz). To use it, just do whatever flavor of octave analysis you want in front of it, then convert it with this VI. There is no need to do a PSD unless you want to see it separately.
    Please respond if you have any questions!
    Chad AE
    Applications Engineer
    Attachments:
    Octave PSD Conversion.vi ‏103 KB

  • UCCX Historical Report Chart Time Units

    I'm running a UCCX historical report that charts each agent's logged in time in seconds.  I'd like to make the report's chart as easy to read as possible. Is it possible to change that X-axis unit from seconds to hours instead?
    Thanks!

    You'd have to modify the Crystal Reports file (.rpt) to do logic to change it. Otherwise, no, not that I am aware of.

  • Get rid of BarChart Legend and create a Horizontal Line on a specific value

    Hey,
    i'm working with BarCharts.
    1st Screen: I want to disable the Legend of my Barchart.
    http://imgur.com/wMo6Tfv,DRiNA9C
    Second Screen: I want to create a Line in my Barchart on a specific Value like 700 as seen on the screen.
    http://imgur.com/wMo6Tfv,DRiNA9C#1
    Is this Possible ? Also: For what object do i need to set the ID to change the bar's color. i've tried
    Chart barchart;
    barchart.setId("Chart");
    css:
    #barchart
    -fx-background-color: red;
    But it didn't work. Thanks!

    No, you're not missing anything; I had a temporary brain freeze. You can't add Nodes directly to an arbitrary region.
    So this makes it a bit harder. You need to add the line to the container in which your Chart is held, and of course that means you have to figure out the coordinates of the line relative to that container. To simplify it a bit, the axis has a scale property for converting from axis units to screen units, and also according to the css docs, the chart has a child with css class "chart-horizontal-zero-line". So one possible strategy is to grab that line and figure the change in coordinates needed from it. There's still work to do to figure the correct coordinates relative to the container, and if you want it to work with things moving around (such as when the user resizes the window), you need to do a bunch of binding.
    This seems to work:
    import java.util.Arrays;
    import java.util.List;
    import javafx.application.Application;
    import javafx.beans.binding.DoubleBinding;
    import javafx.beans.property.DoubleProperty;
    import javafx.beans.property.SimpleDoubleProperty;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.chart.CategoryAxis;
    import javafx.scene.chart.LineChart;
    import javafx.scene.chart.NumberAxis;
    import javafx.scene.chart.XYChart;
    import javafx.scene.control.Button;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.Region;
    import javafx.scene.shape.Line;
    import javafx.stage.Stage;
    import javafx.util.StringConverter;
    public class LineChartSample extends Application {
      @Override
      public void start(Stage stage) {
        stage.setTitle("Line Chart Sample");
        final CategoryAxis xAxis = new CategoryAxis();
        final NumberAxis yAxis = new NumberAxis();
        yAxis.setTickLabelFormatter(new StringConverter<Number>() {
          @Override
          public Number fromString(String string) {
            return Double.parseDouble(string);
          @Override
          public String toString(Number value) {
            return String.format("%2.2f", value);
        xAxis.setLabel("Month");
        final LineChart<String, Number> lineChart = new LineChart<String, Number>(
            xAxis, yAxis);
        lineChart.setTitle("Stock Monitoring, 2010");
        lineChart.setAnimated(false);
        final XYChart.Series<String, Number> series = new XYChart.Series<>();
        series.setName("My portfolio");
        final List<XYChart.Data<String, Number>> data = Arrays.asList(
        new XYChart.Data<String, Number>("Jan", 23),
            new XYChart.Data<String, Number>("Feb", 14),
            new XYChart.Data<String, Number>("Mar", 15),
            new XYChart.Data<String, Number>("Apr", 24),
            new XYChart.Data<String, Number>("May", 34),
            new XYChart.Data<String, Number>("Jun", 36),
            new XYChart.Data<String, Number>("Jul", 22),
            new XYChart.Data<String, Number>("Aug", 45),
            new XYChart.Data<String, Number>("Sep", 43),
            new XYChart.Data<String, Number>("Oct", 17),
            new XYChart.Data<String, Number>("Nov", 29),
            new XYChart.Data<String, Number>("Dec", 25));
        series.getData().addAll(data);
        final AnchorPane chartContainer = new AnchorPane();
        AnchorPane.setTopAnchor(lineChart, 0.0);
        AnchorPane.setBottomAnchor(lineChart, 0.0);
        AnchorPane.setLeftAnchor(lineChart, 0.0);
        AnchorPane.setRightAnchor(lineChart, 0.0);
        chartContainer.getChildren().add(lineChart);
        Button button = new Button("Show line");
        button.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            final double lineLevel = 35;
            final Region chartRegion = (Region) lineChart
                .lookup(".chart-plot-background");
            final Line zeroLine = (Line) lineChart
                .lookup(".chart-horizontal-zero-line");
            final DoubleProperty startX = new SimpleDoubleProperty(0);
            final DoubleProperty endX = new SimpleDoubleProperty(0);
            final DoubleProperty y = new SimpleDoubleProperty(0);
            startX.bind(new DoubleBinding() {
                super.bind(chartRegion.boundsInParentProperty());
              @Override
              protected double computeValue() {
                double x = chartRegion.getBoundsInParent().getMinX();
                for (Node n = zeroLine.getParent().getParent(); n != chartContainer && n.getParent() != null; n = n.getParent()) {
                  x += n.getBoundsInParent().getMinX();
                return x;
            endX.bind(new DoubleBinding() {
                super.bind(chartRegion.boundsInParentProperty());
              @Override
              protected double computeValue() {
                double x = chartRegion.getBoundsInParent().getMaxX();
                for (Node n = zeroLine.getParent().getParent(); n != chartContainer && n.getParent() != null; n = n.getParent()) {
                  x += n.getBoundsInParent().getMinX();
                return x;
            y.bind(new DoubleBinding() {
                super.bind(chartRegion.boundsInParentProperty(),
                    yAxis.scaleProperty(), zeroLine.startYProperty());
              @Override
              protected double computeValue() {
                double y = zeroLine.getStartY() + lineLevel * yAxis.getScale();
                for (Node n = zeroLine.getParent().getParent(); n != chartContainer && n.getParent() != null; n = n.getParent()) {
                  y += n.getBoundsInParent().getMinY();
                return y;
            Line line = new Line();
            line.startXProperty().bind(startX);
            line.endXProperty().bind(endX);
            line.startYProperty().bind(y);
            line.endYProperty().bind(y);
            chartContainer.getChildren().add(line);
        BorderPane root = new BorderPane();
        root.setCenter(chartContainer);
        root.setTop(button);
        Scene scene = new Scene(root, 800, 600);
        lineChart.getData().add(series);
        stage.setScene(scene);
        stage.show();
      public static void main(String[] args) {
        launch(args);
    }

  • Session Facade and Access to a Non SQL Based Persistent Data Store

    Hi,
    We are currently using jDeveloper 10.1.3.5 and Oracle Application Server 10.1.3.5. We develop all our applications as Java portlets using Oracle PDK and they are exposed through Oracle Portal.
    In our environment, the persistent data is stored on a combination of an Oracle database and a non SQL based persistent data store.
    The way we access the non SQL persistent data store is by posting a URL and receiving an XML document back in response. This mechanism is used both for enquiry and update of the persistent store.
    We have to create a new XML schema for each entity that we need to access and there are software changes on both our environment (Java) and the non SQL based persistent data store.
    In an attempt to shorten development times we are looking to start using ADF faces and EJB3.
    We have downloaded the SRDemo tutorial and made it work but there are some challenges.
    1. The SRDemo seem to have a very minimal implementation of a business layer. From what I can see, it is essentially some straightforward wiring between database attributes and their viewable representation. Is there a demo/tutorial containing a bit more meat in the business layer that you are aware of?
    2. Given our non SQL based persistent data store, how would you go about implementing EJB3 for such scenario. Is it recommended at all? How would you go about integrating the rest of the application (business layer and representation layer) to data arriving from such source?
    3. SRDemo is not intended to be exposed as a portlet. Is there a tutorial that we can use incorporating JSR168, ADF Faces and EJB3 in the same application? I also understand that there is a JSF-JSR168 bridge available. Can you provide some pointers here? Where can we find it? Would we be able to use it in jDeveloper 10.1.3.5?
    Regards

    Matt,
    The only way to associate an "x-axis" with a signal in the Write Data VI would be to feed it waveforms, which are constrained to use time as the x-axis unit. There is really no way around this, so in my opinion, the best solution for you would be to use the "rows are channels" conversion and write the frequency and amplitude values to the file independently. Then when you read the file in DIAdem, take the two channels and build a graph out of them there.
    Regards,
    E. Sulzer
    Applications Engineer
    National Instruments
    E. Sulzer
    Applications Engineer
    National Instruments

  • Plot xy graph

    Hi I am just making a simple simulation model in which a result of a formula is the acceleration.  This result I plot it against time.  By integrating the acceleration I obtain velocity and by integrating the velocity I obtain distance.  Those last results i plot them against time.  However, when I tried to plot distance vs. velocity, it looks like a get a graph of distance against time.  What would be the correct functions to be used to plot this correctly thanks.  The first picture attached shows a view of part of the model and the second pictures shows the results of the graph that I getting.  The graph that I need is taking correctly the y axis units but the x units are incorrect, it seems like it is just plotting against time. 
    Thank you
    Solved!
    Go to Solution.
    Attachments:
    plot xy graph.JPG ‏24 KB
    graphs.JPG ‏34 KB

    Hi,
    You can use a bundly function to plot to arrays into an xy graph. Check the attached VI for explanation.
    Regards,
    Nitzz
    (Give Kudos to good Answers and Mark it as a Solution if your problem is Solved) 
    Attachments:
    Untitled 3.vi ‏12 KB

  • Draw rectangle in plot

    How can i draw rectangle in graph
    with Component works++?

    Annotations were introduced to the C++/ActiveX graph in Measurement Studio 6.0. This is the best way to draw a rectangle.
    Details:
    CNiAnnotation:hape is a property of type CNiShape. CNiShape::Type is an enumeration, one value of which is CNiShape::Rectangle. Use CNiShape::XCoordinates and CNiShape::YCoordinates to specify the location and size of the rectangle. Use CNiAnnotation::CoordinateType to specify whether the coordinates of the rectangle are in axis units or in pixels relative to plot area or screen area.
    If you cannot upgrade to Measurement Studio 6.0, you could consider using 2 cursors as a workaround.
    David Rohacek
    National Instruments

  • Is there a way to make table entries vertical rather than horizontal?

    I am wanting to make custom x-axis values which are names of sensors rather than numbers so i was going to just place a table to make the custom values.  But i do not think Labview will allow vertical text like it is in the y-axis units.  It only allows this for captions and labels.  Does anyone know?

    Here is a quick demo that is a bit more robust and picks-up on CC's suggestion.
    It simply uses a picture control with a transparent background to hold the text labels.
    It is in LV 8.0 but should be code-able back to 6.1.
    This VI is suitable for use in creating an XControl.
    Anyone game?
    Ben
    Message Edited by Ben on 09-17-2006 10:48 AM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    Markers.vi ‏27 KB
    Text Mrakers.JPG ‏144 KB

  • Grphics Problem

    Hi
    I am working on Graphics 2.5. I am facing a problem while plotting XY Line graph. On X-Axis I am taking a Date column value, item description as sub-category and on Y-Axis Unit Price of the item is being shown, the problem is that the line/graph starts some where after the Y-Axis. which is not touching the Y-Axis at all. or rather I want to start the X-Axes values rigth from the axis starting point. (which if ORGIN of the XY Graph). On X-Axis, entire One unit is being considered as the value not exactly one perticular point.
    Hope I made clear my requirement.
    Badly I need the solution for this.
    thanks
    Mahesh
    null

    Hi, Beverley.  
    Thank you for visiting Apple Support Communities.  
    I understand that you are unable to trim clips using iMovie.  I would need a little more information on how you were attempting to trim a clip to provide a better answer.  However, make sure you have the movie project open and are selecting the clip that you wish to trim as this will activate the clip trimmer.  
    Trim clips
    -Jason H.  

  • How does Pulse Params Vi determine pulse width

    I need to know how the PulseParams vi calculate pulse width, rise/fall time? Is it based on the standard 10/90 method or something else? How does it determine what is a "valid" pulse? What is the "Delay" parameter and how do you use it?

    Hello Lancer,
    The following is taken from LabVIEW Help under Pulse Parameters:
    X is the input sequence. X must meet the following conditions:
    � The number of samples in X must be greater than or equal to 3.
    � X should have a rising edge, a plateau, and a falling edge.
    � The expected peak noise amplitude must be less than 50% of the expected amplitude.
    If the number of samples in X is less than 3, the VI sets all the pulse parameters to NaN and returns an error. If X does not contain a rising edge, plateau, and falling edge, the VI analyzes the data, assigns values to as many pulse parameters as it can identify, and sets parameters it cannot identify to NaN. The VI does not report this condition as an error.
    Note X can be a positive- or negative-going pulse. A histogram is used to determine top and base. If the difference between top and base is negative, the pulse is considered negative-going with a negative amplitude.
    If the data in X is noisy beyond the expected 50% amplitude, the VI does not have enough information to differentiate between glitches and pulse data and may assign incorrect values to the pulse parameters. Because it cannot be detected, the VI does not report this condition as an error.
    Note If the data is noisy, you can apply a median filter to the data before passing it to the Pulse Parameters VI. Refer to Noisy Pulse Analyzed with a Median Filter for more information about analysis with a median filter.
    Note When the X data is a constant value c, the VI sets the pulse parameters to the following values.
    amplitude = overshoot = undershoot = delay = duration = 0.
    top = base = c.
    risetime = falltime = slew rate = NaN.
    slew rate is the ratio between (90% amplitude - 10% amplitude) and the risetime.
    overshoot is the difference between the maximum value in the pulse and the topline.
    risetime is the time required to rise from 10% amplitude to 90% amplitude on the rising edge of the pulse.
    top is the line that best represents the values when the pulse is active, high, or on. For a negative-going pulse, top is less than base and results in a negative amplitude. For a positive-going pulse, top is larger than base and results in a positive amplitude.
    amplitude is the difference between top and base.
    base is the line that best represents the values when the pulse is inactive, low, or off and is the level closest to zero. For a negative-going pulse, base is larger than top and results in a negative amplitude. For a positive-going pulse, base is less than top and results in a positive amplitude.
    undershoot is the difference between the baseline and the minimum value in the pulse.
    error returns any error or warning from the VI. You can wire error to the Error Cluster From Error Code VI to convert the error code or warning into an error cluster.
    falltime is the time required to fall from 90% amplitude to 10% amplitude on the falling edge of the pulse.
    duration is the difference between the falling edge time and the rising edge time at which 50% amplitude occurs.
    delay is the difference between the time origin and the time at which 50% amplitude occurs on the rising edge of the pulse.
    Pulse Parameters Details
    Note The Cycle Average and RMS, Transition Measurements, Pulse Measurements, and Amplitude and Levels VIs provide more measurements than the Pulse Parameters VI, and you can configure each of those VIs.
    The waveform-related parameters are slew rate, overshoot, topline (top), amplitude, baseline (base), and undershoot. If y-axis units are volts, then slew rate has units of volts per sample. The time-related parameters are risetime, falltime, duration (width), and delay and are expressed in units of samples.
    Note The VI assumes the input pulse or pulse train has a bimodal, or two-state, distribution. Any input other than a bimodal input can lead to inconsistent results.
    The Pulse Parameters VI uses the following steps to calculate the output parameters.
    1. Find the maximum and minimum values in the input sequence X.
    2. Generate the histogram of the pulse with 1% range resolution.
    3. Determine the upper and lower modes to establish the top and base values.
    4. Find the overshoot, amplitude, and undershoot from top, base, maximum, and minimum values.
    5. Scans X and determines the slew rate, risetime, falltime, duration, and delay.
    The Pulse Parameters VI interpolates duration and delay to obtain a more accurate result not only of duration and delay but also of slew rate, risetime, and falltime.
    If X contains a train of pulses, the Pulse Parameters VI uses the train to determine overshoot, top, amplitude, base, and undershoot but uses only the first pulse in the train to establish slew rate, risetime, falltime, duration, and delay.
    Note Because pulses commonly occur in the negative direction, the Pulse Parameters VI can discriminate between positive and negative pulses and can analyze the X sequence correctly. You do not need to preprocess the sequence before analyzing it.
    If none of these suggestions help, or if I�m not correctly understanding your issue, please post the software and versions you are using, the applicable portions of your code, and any other information that may help, and I�ll be happy to look further into it.
    Have a nice day!
    Robert M
    Applications Engineer
    National Instruments
    Robert Mortensen
    Software Engineer
    National Instruments

  • Extraction of a portion from graph

    I have to extract a portion from Graph .
    I know the starting and ending point in x-axis and i have to know the y-axis values.
    I have used "extract a portion of signal " express VI  but am not getting the values correctly. 
    There is a picture with this, in which the portion in red box is the part i have to extract.
    @nk
    Solved!
    Go to Solution.
    Attachments:
    Untitled.jpg ‏57 KB

    Hi uday ,
    Thank you for a fast response .
    The VI in the above link shows how to extract a portion of graph with use of cursors. In my VI the user won't do anything . Everything should happen automatically.
    First of all.
    1.I have detected the peaks in my graph using a peak detector VI. This process have given me the position of peaks in terms of time (i.e x-axis units).
    2. I have added a constant offset time like 0.005 sec to each time value and then I provided that value as the starting point of extraction .
    3.The length till which the extraction should be done is also kept constant.
    4. I just need the amplitude vales of that particular part so that I can use them for my further calculations.
    For clear information I am adding  a picture of my graph in which the areas I have to extract is perfectly marked inside red box.
    @nk
    Attachments:
    Untitled.jpg ‏57 KB

  • What's the unit label of y-axis of PSD when using Spectral Measurement Express VI?

    Hi:
     What's the unit label of y-axis of PSD when using Spectral Measurement Express VI?
    Selected Measurement : Power spectral density
    Result : dB
    No Averaging..
    Is dB/Hz the magnitude label of PSD output? Thx!

    There could be an issue the the Express VI converting your waveform data into the dreaded Dynamic Data Type, which is just causing more and more memory to be used.
    So what I would recommend is use the DAQmx Configure Logging  VI to configure DAQmx to stream the data as you read straight to a TDMS file.  There are various other properties you can set to make the logging go across files.  You just set up the logging before running your task.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Problem: XYGraph with units in one axis in LV7.0

    When I bundle one array with units (length) and another without units
    together into a cluster and wire it to an XY Graph, the unit label
    shows up correctly at the lower-right corner of the X axis.
    But when I rescale the unit by changing the unit label (from nm to
    uin), the Y axis rescales as well! Furthermore, if I change the unit
    label back to nm, the Y axis values to not revert back!
    It seems that there is a problem when units are in only one axis of an
    XY Graph. (I tried with units on both axis and that seems to work
    fine).
    Any solution/workaround?
    Thanks,
    germ Remove "nospam" to reply

    In article <[email protected]>,
    Philip C. wrote:
    > Hi Germ,
    >
    > Please post the VI that shows this behaviour. Then it will be easier
    > for me to troubleshoot.
    >
    > Thanks!
    >
    > Philip C.
    Philip, I tried to post one, but there's something wrong with my ISP or
    some other problem, so I cannot post.
    But it's very easy to create: Make two array controls, one for the X
    values and one for the Y values. Assign the unit nm to the X axis, and
    leave the Y array without units. Make a new XY Graph control.
    On the block diagram, bundle the two arrays and connect them to the XY
    graph. Go back to the front panel and make "unit" visible in the
    graph. A unit label will appear near the lower-right corner. Change m
    to nm
    Enter a couple of values in each to the two arrays.
    Execute the VI. The points will plot on the graph. Now change the unit
    lablel from nm to uin on the graph and then change it back. Watch the Y
    axis go berserk.
    germ Remove "nospam" to reply

Maybe you are looking for

  • Error while creation of data source

    hi iam  creating generic data source using function module. i inserted the function module and structure name, when i press the save button, it is throwingerror message as     Units field WAERS for field ANSWT of DataSource ZEQUIP_DS is hidden. pleas

  • How can I mount / fix my Windows 7 partition?

    So a while ago my Win 7 partition was "unmounted" and it wouldnt show up in my Finder. When I tried mounting it in Disk Utility it would never work. I would click Mount, and it would't do anything. I wasn't really bothered by it since the partition w

  • Can I Still Use My Hard Drive For Other Things After I Do A Time Machine Backup?

    I'm currently in the process of backing up my imac with time machine using a Western Digital My Passport 1TB hardrive. My total back up is just about 600GB. I've read that I will still be able to use my hard drive for backing up or transfering other

  • How Do I go from 10.2.8 to a CPU Drop In 10.4 OS

    Hi! I just got some Mac OS X software and I can't get it all to work. I have 10.2.8 installed, but I can't go from there to Tiger (I don't have panther). Whenever I try to upgrade, or boot from a empty HDD for that matter, it says I need 10.3. It doe

  • Memory leak when I use function with bstr_t type

    Hello, I use Visual C++ 6 and TestStand 3.1. I use the tool: Purify from Rational Instruments to detect memory leak in my code. When I use in my code, functions from the TestStand API using bstr_t types: GetValString, GetType... memory leaks appear.