You have called a function or method requiring a measuremen​t studio

Thought I'd give the CWDSP.FFT a try and I'm getting the following error:
runtime error 30008
You have called a function or method requiring a measurement studio product for which you are not licensed...
Is it not included as part of the Prefessional edition (rev 009 2009.08.11)?
TIA,
   Ken

There is some question as to what the version it actually is. The box has a label on it with the info in my first post, the manual that came in the box says 8.5. Add and remove has no version info. But, the control itself when calling the .aboutbox pops up a dialog that says v6 (590).
This is happening in VB6 (SP6).
Note that the same thing is happening on my partners machine. Same version of NI  Measurement Studio. Neither of us are having problems with the .net version of the library.

Similar Messages

  • Is is possible to call a function or method before JVM exits ??

    Hi All,
    Is is possible to call a function or method before JVM exits where System.exit() is used.
    I am calling a program where System.exit is used. i need to call a function before the JVM exits.
    Please help me.
    Thanks,
    J.Kathir

    How to call the method ? Did i have to call the shudown hooks method in my main class ?
    Is it possible to have in subclass?
    is the below code is correct ? i am calling a class before System.exit is called....
    java.lang.Runtime.getRuntime().addShutdownHook(...My Own Class()....)

  • Can we hav call transaction and session method for an application

    can we hav call transaction and session method for an application ?if yes how?

    Hi ,
    You can.  If Call Transaction fails, a batch input session can be created.
    Check this example-
    Call the transaction. Messages from Call Transaction are stored in the
    internal table messtab 
      CALL TRANSACTION 'LT01' USING bdc_tab MODE 'N' UPDATE 'S'
          MESSAGES INTO messtab.
      IF sy-subrc = 0.                                                 
    Call transaction successfull,  get the number of the Transfer Order that
    was created                                                        
        LOOP AT messtab.                                               
          IF messtab-dynumb = '0104' AND messtab-msgnr = '016'.        
            w_transportorderno = messtab-msgv1.                        
          ENDIF.                                                       
        ENDLOOP.
      ELSE.
    Call transaction failed, create a batch input session instead.
        PERFORM open_group.                        
        PERFORM bdc_insert USING 'LT01'.           
        PERFORM close_group.                       
    ENDIF.
    Regards,
    Sookshma

  • I am having trouble installing itunes on my computer. The error says, "Service Apple mobile device failed to start. verify that you have sufficient privileges to start system requirements." this is my home PC.

    I am having trouble installing itunes on my computer. The error says, "service apple mobile device failed to start. Verify that you have sufficient privileges to start system requirements." this is my home PC.

    Hi Iss9243,
    Welcome to the Support Communities!
    You've already tried some great troubleshooting steps, but the article below gives you quite a few more for this issue.  Hope it helps ....
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    - Judy

  • Uploading another person's spreadsheet generates You have not signed on to the required Applications Database error

    Greetings,
    We are using the 7.2.12.04.25 32 bit version of ADI on an IBM P750 machine running AIX 5.3.  The Oracle proper application is version 11.5.10 on a 10G database.  We have two users that are unable to upload each others spreadsheets but are able to upload their own.  A different user is able to upload the spreadsheets created by both of the users that can't upload each others spreadsheets.  The ADI settings appear to be the same and the users are selecting the same responsibility.  The database properties seem to be the same inside the spreadsheets as well.  An option would be to copy the contents of the other person's spreadsheet into one they created and then upload it but that process is too cumbersome to entertain.  Has anyone run into and resolved this issue?  The error they are seeing is "You have not signed on to the required Applications Database".
    Thank you!
    Scott

    Do the users need to sign into the same responsibility to upload a spreadsheet the other created?  They are both signed into a GL responsibility but not the same one.
    Since they are two different responsibilities then I'd give it a try (ask the other user to login to the same responsibility) and see how it behaves.
    Thanks,
    Hussein

  • You have not signed on to the required Applications Database

    I have a user who is trynig to use ADI to upload a journal from Excel.
    She receives an error stating "You have not signed on to the required Applications Database"
    Any suggestions?
    Edited by: user573238 on Nov 5, 2008 8:29 AM

    Thanks for your reply. I read that article. At this point I've tried lots of things to get this to work. This user has multiple ORACLE_HOMES on her PC, with different Oracle versions.
    I think the user did try creating a new spreadsheet and pasting the data into it and it did not work. At the time I was not familiar with the Windows Service and the DBC directory with the DBC files in it.
    I have copied the files to each Oracle_Home so my next step may be to have the user try using a new spreadsheet and using the cut-paste option.
    If I get something to work I'll try to update this thread with what I learned.

  • HT1766 the number you have called is not recognised?

    When i ring people on my phone it says that number you have called is not recognised and i cant text people too help?

    Hi caitlin261,
    Thanks for visiting Apple Support Communities.
    If you are not able to make calls or send text messages on your iPhone, start with the troubleshooting steps in these articles:
    iPhone: Troubleshooting issues making or receiving calls
    https://support.apple.com/kb/TS3406
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    All the best,
    Jeremy

  • When to call DSDisposeHandle when you have a DLL function acting as a repeating DS dynamic data source?

    Hi 
    I have a DLL function acting as a dynamic data source within a LabVIEW application (see attachment) - I am using DSNewHandle to dynamically allocate 2D array handle storage via the LV memory manager for the arbitrary size data arrays to be passed into the application. I had assumed that these memory blocks would (magically) be disposed when appropriate by the LabVIEW built in processing blocks that sit downstream, however this is not the case and the LabVIEW system memory usage keeps increasing until LabVIEW environment is exited (not simply if just the offending application is stopped or closed).
    So my question is how and where to mop up the used up array buffers in the application processing chain and how do I know when the buffers are actually exhausted and not being reused downstream (for instance the two 2D arrays are first combined into a complex 2D array by the re+im to complex labview operator - is the data memory out of this stage totally different from the inputs or is it some modified version of the input arrays - if totally different and the input 2D arrays are not wired into any other blocks why does the operator not dispose the input data stores?)
    Perhaps Im going about this the wrong way having the DLL data source dynamically allocate the data space arrays? Any advice would be gratefully received
    Regards
    Steve
    Solved!
    Go to Solution.
    Attachments:
    DataGetFloat.PNG ‏23 KB

    Then instead of doing:
    DLLEXPORT int32_t DataGetFloatDll(... , Array2DFloat ***p_samples_2d_i, ...)
    if ( p_samples_2d_i )
    // *p_samples_2d_i can be non NULL, because of performance optimization where LabVIEW will pass in the same handle
    // that you returned in a previous call from this function, unless some other LabVIEW diagram took ownership of the handle.
    // Your C code can't really take ownership of the handle, it owns the handle for the duration of the function call and either
    // has to pass it back or deallocate it (and if you deallocate it you better NULL out the handle before returning from the
    // function or return a different newly allocated handle. A NULL handle for an array is valid and treated as empty array.
    *p_samples_2d_i = (Array2DFloat **) DSNewHandle( ( sizeof(int32_t) * 2 ) + ( sizeof(float) * channel_count * sample_count ) );
    // Generally you should first try to insert the data into the array before adjusting the size
    // the most safe would be to adjust the size after filling in the data if the array gets bigger in respect to the passed in array
    // and do the opposite if the adjusted handle happened to get smaller. This is only really important though if your C code can
    // bail out of the code path because of error conditions between adjusting the handle size and adjusting the array sizes.
    // You should definitely avoid to return from this function with the array dimensions indicating a bigger size than what the
    // handle really is allocated for, which can happen if the array was resized to a smaller size and you then return because of errors
    // before adjusting the dimension sizes in the array.
    (**p_samples_2d_i)->Rows = channel_count;
    (**p_samples_2d_i)->Columns = sample_count;
     you should be doing:
    DLLEXPORT int32_t DataGetFloatDll(... , Array2DFloat ***p_samples_2d_i, ...)
    MgErr err = NumericArrayResize(fS /* array of singles */, 2 /* number of dims */, (UHandle*)p_samples_2d_i, channel_count * sample_count);
    if (!err)
    // Fill in the data somehow
    // Adjust the dimension sizes
    (**p_samples_2d_i)->Rows = channel_count;
    (**p_samples_2d_i)->Columns = sample_count;
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • ABAP Calling JAVA Function or Method

    Hi Friend,
    I need help in how to proceed using  ABAP  and Call JAVA Function . I know that  we need to use RFC enabled Function modules. I was able to connect  using JAVA Connector which was provided by SAP For communicating with JAVA Apps. The approach for connecting the JAVA to SAP is working fine.  But I  have browsed through various website but failed to find any information.Now i am looking forward to help from you friends to solve my problems .
    The Requirement is mentioned below:-
      1. Prerequiste for SAP ABAP calling a third Party software which is working in JAVA Platform (like any middle ware which might be hardware or software).
      2. Sample Code  like calling a Text  ' Hello  to the world  calling JAVA from ABAP'.
      3. Steps and process so that it would be helpful.
    Timely help would be appreciated.
    Rajiv Christopher.

    1.Middleware is JCO RFC provider it comes with SAP so no need any third party Adapter.
    2.
    " The ECHOTXT parameter should contain the text of REQUTXT.Information on
    " calling the function module should be returned in RESPTXT, indicating, for
    " example, in which system and when the function module call was processed.
    data:ECHOTEXT type SY-LISEL,
         RESPTEXT type SY-LISEL.
    CALL FUNCTION 'STFC_CONNECTION' DESTINATION '<Your JCO destination name>' " which one you have developed in SM59 as TCP/IP
      EXPORTING
        requtext       = 'ABAP Calls JAVA'
    IMPORTING
       ECHOTEXT       = ECHOTEXT
       RESPTEXT       = RESPTEXT.
    if sy-subrc = 0.
      WRITE:/'---------------------------------------------------------------------'.
      WRITE: / 'establish a link to the ABAP application server with logon data'.
      WRITE:/'---------------------------------------------------------------------'.
      write:/ ECHOTEXT .
      else.
          WRITE:/'---------------------------------------------------------------------'.
      WRITE: / 'Not establish a link to the ABAP application server with logon data'.
      WRITE:/'---------------------------------------------------------------------'.
      endif.
    Check the sample code and Let me know will you get ECHOTEXT ?
    Kanagaraja L
    Edited by: Kanagaraja  Lokanathan on Jan 6, 2010 1:27 PM

  • How to call javascript function & action method on clicking jsf  button?

    I have one jsf custom button. I am checking client side validations in mail by calling javascript function & also sending mail by calling action method of a bean which will execute at server side for onclick event of that button. Because of this when I click on that button its calling both javascript function and action method. So even though validations failed its sending mail. How can I overcome this problem?? Please help me....

    I am asking regarding commanLinks in jsf. I have the following code block in jsf. Even though mailSentMessage('true'); returns false, its calling action="#{emailObjectAction.sendEmail}" method. thats why I got that doubt. try the following code.
    <h:commandLink id="mailBtn123Send"      onclick="return mailSentMessage('true');" value="send mail"     action="#{emailObjectAction.sendEmail}">          
    </h:commandLink>

  • Can you have two "ipod" functions on one phone?

    I listen to self help audio (John Maxwell/Zig Ziglar type stuff) and sometimes I'd like to hop over to regular music and then be able to come back to my audio content without having to start over. Is there any way to have two ipod functions on the same phone? Any settings or apps from the app store that might let me have two ipod functions run on the same phone?

    Try to tag the self help audio in iTunes as an Audiobook instead. Then sync it as an audiobook.
    Audiobooks in the iPod player can remember last position so you don't have to start over.

  • Acrobat Pro XI will not install.  Error says: Setup has determined you have a more functional product.

    I have Standard XI installed and Pro will not install.  Says Setup has determined you have more functional product.  Setup will now terminate.

    It may be that it is seeing the version number and not the product itself. All I can suggest is for you to deactivate and uninstall Std, then install Pro.

  • Do you have any procedure/function to get parent child relation ship logic?

    I am in great need. I have developed one but its has many cursor. Actually to get final leaf node, I have to keep on using cursor until last leaf found.
    Note: CONNECT BY PRIOR not to be used with this requirement. So need to create procedure/function only.

    Note the name of this forum is "SQL Developer *(Not for general SQL/PLSQL questions)*", so only for issues with the SQL Developer tool. Please post these questions under the dedicated SQL And PL/SQL forum (you've posted there before).
    Additionally, this seems to be a duplicate of your other thread at How to get Number of NESTED CHILD on this requirement? please use the same thread instead of duplicating.
    Regards,
    K.

  • At what time you have looked at a message according to the "read" function.

    I was wondering, if you look at a message that was sent to you through iMessage again and you have the "read" function enabled, will the time that you viewed the message change. The reason to why I am wondering this is because I received a message at a certain time, while the "read" function said that the message was viewed way later, after I had received my response.
    Thank you in advance!

    It should be the same. Did you look at the message in the app the first time, or through the notification? I have the read function on, and it will not show "read" until I actually go into the app.

  • How do you call a function module in a web dynpro application ?

    Why do you delete my postings ?????????????????????????????
    pls see subject
    Edited by: Ilhan Ertas on Apr 1, 2009 4:51 PM
    Edited by: Ilhan Ertas on Apr 1, 2009 4:52 PM

    Its not me deleting them.  Perhaps a different moderator or a technical problem within SCN itself.
    Someone might be concerned about your question because it is very basic.
    You can call a function module from WD the same way you did in any ABAP program - with the CALL FUNCTION syntax.  There is a service call wizard that will generate a matching context and calling code for you - but it is just a helper, code generator.  Everything it does can be done by hand as well (and often better than the generator).

Maybe you are looking for