Missing TS_InteractiveContextAsPropertyObj Function in TS_2.0

I'm trying to rebuild a LabWindows/CVI DLL project created with the TS_1.0 API and have found that NI has changed the function name of "TS_InteractiveContextAsPropertyObj" to "TS_InteractiveContextAsPropertyObject". Why the change and when can I expect a correction to include both names for backwards compatiblity? I can't afford to rewrite all the existing code in circulation. As a temporary fix, I've had to update the files, tsapicvi.h & tsapicvi.c to re-create the original function name but don't want to have to create work arounds with every new NI SW release.
Attachments:
tsapicvi_object_fix_1_0_3.zip ‏92 KB

Hello,
In TestStand 2.0 the method "TS_InteractiveContextAsPropertyObj" was changed by mistake in the CVI support files tsapicvi.c and tsapicvi.h.
Fortunately, it is already fixed in TestStand 2.0.1, which is a free update for TestStand 2.0 users.
Regards,
Roberto Piacentini
Applications Engineer
National Instruments
www.ni.com/ask

Similar Messages

  • SQLDeveloper-64bits Missing Migration-Functionality

    Hi all, after years of absence from Oracle, I am back
    I've installed Oracle11gR2 64bits (11.2.0) , jdk1.7.0_40 64bits and SQLDeveloper 64 bits on WIndows7, all seemingly successful. Then, I tested the installation by creating a test schema and some views.
    Following that I tried to migrate the MS SQLServer database Northwind to Oracle, using these instructions:
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/hol08/sqldev_migration/mssqlserver/migrate_microsoft_sqlserver_otn.htm#t2
    At the point where the instructions say to "Capture the Microsoft SQL Server Exported Files", I noticed SQLDeveloper missing the functions for Migrations.
    Since my return to Oracle is mainly to study the 64bit version of 11gR2  and to migrate SQL Server databases to Oracle, it would be most helpful to know how to use the missing migration
    function, else it is a show-stopper.
    Where can I get the add-in for the Migration function in SQLDeveloper?
    Some help please?

    Some doc links:
    3.2.2 help doc:  SQL Developer: Migrating Third-Party Databases
    3rd party migrations: Database Migration Technology</title><meta name="Title" content="Database Migration Technology&q…
    Of course, searching the forums can be useful if you have questions after reading through the help documentation:
    Forum dedicated to migration: Database and Application Migrations
    Message was edited by: GaryGraham

  • OBIEE UI Interface is missing prompt functionality and Column Selector

    Hi,
    OBIEE UI Interface is missing prompt functionality and Column Selector in Answers when creating a report. This problem occurs on all the reports. Also the problem occurs in firefox too. Could you please suggest me any suggestion to overcome this issue.
    Thanks and Regards

    May sound stupid, but do you have the Privileges to add these things to a report? These features can be turned on/off from the Privilege Administration Screen, for a group or user. Have a look.
    Cheers,
    A.

  • I updated my iMac to Mountain Lion and when I want to fit my screen view... in the last version I had to examples where I could choose wide after format but I miss that function now in Mountain Lion. Can anyone please help me???

    I updated my iMac to Mountain Lion and when I want to fit my screen view... in the last version I had to examples where I could choose wide after format but I miss that function now in Mountain Lion. Can anyone please help me???

    I'm sorry for my bad english, my problem is that I want the program I open in a new window to be avilable in full screen mode. Before I uppdated my os to Montaine Lion I could choose wide under screen in settings. I'll take an ex for you. When I play poker online I want to see the tabel in full screen but I don't manage to fix that. Do you Sir have any idea???

  • 3113: Activity 'XXPONIT/233480' is missing a function reference.

    Hello All,
    I have designed a workflow in which i have to call workflow for n number of times.
    In this workflow i have taken one notification and one function . when user submits workflow, its reached to user's parent level(1). If it approves then forwarded to function. it will check whether for that parent level(1) parent is found or not. if parent is found then it will identify the parent level(2) and sets into Attribute level(1) .
    and forwarded back to notification.
    when i am trying to run this workflow am getting the *(3113: Activity 'XXPONIT/233480' is missing a function reference.) error.
    Eg. ____________Yes_______
    | |
    v Approve | No
    Start---> Notification ------------------> function ------------------> End
    | ^
    |_____________________________________|
    Reject
    I am pasting pl/sql code here: Suggest me where i am wrong:
    create or replace package body XXPO_WF_NIT_APPROVAL_PKG is
    v_user_id number;
    v_user_name VARCHAR2(15);
    v_flag_parent_exist varchar2(1);
    v_item_key NUMBER;
    PROCEDURE WF_START_PROCESS(p_user_id NUMBER) IS
    v_initiator varchar2(15);
    BEGIN
    /*To generate Unique Value for item key*/
    SELECT XXPO_NIT_SEQ.nextval INTO v_item_key FROM dual;
    dbms_output.put_line('item key ' ||v_item_key);
    /* To create Workflow Process*/
    wf_engine.CreateProcess(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    process => 'NIT_PROC');
    /* For Getting Initiator name who has initiated workflow*/
    SELECT fu.user_name INTO v_initiator
    FROM fnd_user fu
    where user_id = p_user_id;
    /*for getting next approver level user name and user Id*/
    SELECT fu1.user_name,fu1.user_id INTO v_user_name,v_user_id
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061 /*PO Test NIT Heirarchy*/
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = p_user_id/*1547*/ )));
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'INITIATOR',
    avalue => v_initiator);
    dbms_output.put_line(v_initiator);
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'ATR_LEVEL1',
    avalue => v_user_name);
    dbms_output.put_line('6');
    wf_engine.StartProcess(itemtype => 'XXPONIT',
    itemkey => v_item_key);
    COMMIT;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':No data found' || SQLERRM);
    WHEN DUP_VAL_ON_INDEX THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':Duplicate values found' || SQLERRM);
    WHEN OTHERS THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':Other Exception' || SQLERRM);
    END WF_START_PROCESS;
    --====================End of WF_Start procedure================
    procedure is_comment_null(itemtype IN VARCHAR2,
    itemkey IN VARCHAR2,
    actid IN NUMBER,
    funcmode IN VARCHAR2,
    resultout OUT VARCHAR2) is
    v_comments_fst_level varchar2(200);
    v_result_fst varchar2(100);
    v_count number;
    BEGIN
    v_comments_fst_level := WF_NOTIFICATION.GetAttrText(WF_ENGINE.CONTEXT_NID,
    'COMMENT_FST');
    v_result_fst := WF_NOTIFICATION.GETATTRTEXT(WF_ENGINE.CONTEXT_NID,
    'RESULT');
    dbms_output.put_line(v_result_fst);
    IF( FUNCMODE = 'RESPOND') THEN
    IF (v_result_fst = 'REJECTED') THEN
    IF v_comments_fst_level IS NULL THEN
    RESULTOUT :='ERROR: Comment is required while rejecting the request';
    RETURN;
    END IF;
    END IF;
    END IF;
    dbms_output.put_line(SQLCODE || ':No data found' || SQLERRM);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    dbms_output.put_line('is_comment_null'|| SQLCODE || ':No data found' || SQLERRM);
    WHEN DUP_VAL_ON_INDEX THEN
    dbms_output.put_line('is_comment_null' || SQLCODE || ':Duplicate values found' || SQLERRM);
    WHEN OTHERS THEN
    dbms_output.put_line('is_comment_null'|| SQLCODE || ':Other Exception' || SQLERRM);
    END is_comment_null;
    --===================================
    PROCEDURE Next_approver(ITEMTYPE IN VARCHAR2,
    ITEMKEY IN VARCHAR2,
    ACTID IN NUMBER,
    FUNCMODE IN VARCHAR2,
    RESULTOUT OUT NOCOPY VARCHAR2)
    IS
    v_count number;
    BEGIN
    --==============To initiate next approval workflow================
    IF( FUNCMODE = 'RUN') THEN
    SELECT count(fu1.user_name) INTO v_count
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = v_user_id)));
    IF v_count > 0 THEN
    v_flag_parent_exist := 'Y';
    /* To get next approver name */
    SELECT fu1.user_name INTO v_user_name
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = v_user_id)));
    --WF_START_PROCESS(v_user_id);
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'ATR_LEVEL1',
    avalue => v_user_name);
    ELSE
    v_flag_parent_exist := 'N';
    END IF;
    END IF;
    IF v_flag_parent_exist = 'Y' THEN
    RESULTOUT := 'Y';
    ELSE IF v_flag_parent_exist = 'N' THEN
    RESULTOUT := 'N';
    END IF;
    END IF;
    END Next_approver;
    end XXPO_WF_NIT_APPROVAL_PKG;
    Thanks,
    sheetal Mittal

    HI
    I believe the document that you are looking for can be found in the following location. This help file describes the NI-DAQmx Library functions, which you can use with National Instruments data acquisition and switch devices to develop instrumentation, acquisition, and control applications.
    Message Edited by jaced on 11-05-2007 12:18 PM
    JaceD
    Signal Sources Product Support Engineer
    National Instruments
    Attachments:
    NI-DAQmx C help.jpg ‏98 KB

  • "Missing external function lvanlys.dll" when running EXE

    Windows 7 x32, LV2009SP1 / LVRuntime 2009
    I am trying to build an EXE from a customer's code.  They use the analysis library (NI_AALBase.lvlib).
    It runs fine on my dev machine.  When I build the EXE and pass it to a target machine with LVRuntime on it, I get the error:
    Missing external function lvanlys.dll: Mean_head:C NI_AALBase.lvlib:Mean.vi.
    I explicitly added the lvanlys library to the project.  I added the library as a source file in the build.  Finally I added the DLL itself to the project and as a source for the build.
    Always the same error.  The DLL is located in the data folder after the build.  I tried to move it into the same folder as the EXE, and into the system32 folder.  Nope.
    I just changed the DLL's extension to dllx and tried again, and I get the same error, so it looks like it can't find it.
    Do I need to register this DLL or something?  Does it need a support file?
    Solved!
    Go to Solution.

    Runawaycode wrote:
    As the application was launched, a pop up window suggested to download the Labview run time engine, and an internet address was suggested.
    I am not aware that there is a download link suggestion. Can you show us a picture of the popup window? Does the link really point to the minimum run time engine? That would be hard to believe.....
    Runawaycode wrote:
    National Instruments should warn the users that there are more download versions or possibly suggest the complete version if something goes wrong. 
    The download page for the run time engine is very specific about the various versions. It is a matter of actually reading it.
    It is even more clear in the newer versions, where the minimum run time version has been renamed into web browser plugin. The description is:
    This is the download page for the LabVIEW 2012 (32-bit) Remote Front Panel Web Browser Plug-in (formerly known as the Minimum Run-Time Engine). The Web Browser Plug-in is a smaller download intended for viewing VIs embedded in a web page.  It does not contain the full run-time engine and is not recommended for running executables.
    Compare with the standard run time engine where the description is:
    "This Run-Time Engine must be installed on any 32-bit or 64-bit Windows system where you plan to run executables that you build with the Application Builder in LabVIEW 2012 or 2012 SP1 (32-bit). Executables built with LabVIEW 2012 or 2012 SP1 (64-bit) require the LabVIEW 2012 (64-bit) Run-Time Engine.
    Additionally, the Run-Time Engine allows your browser to display VIs embedded in Web pages."
    I am not sure how much clearer it could be made. Do you have a suggestion?
    LabVIEW Champion . Do more with less code and in less time .

  • This message always appears: [JavaScript Application] "Error: missing } after function body" Please, i need help with this.

    A window appears with this message : [JavaScript Applicaction] Error: missing } after function body.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • [SOLVED] Missing package () function for PyTyle2

    Hi, I was trying to install this tarball from the AUR: https://aur.archlinux.org/packages.php?ID=42541
    But it prompts the following error:
    ==> ERROR: Missing package() function in /home/kolt/AUR/pytyle2-hg/PKGBUILD
    I've read the PKGBUILD and have no idea why this is happening. I already installed the dependencies needed.
    Any clue?
    Last edited by Kolt Penny (2015-02-06 08:31:45)

    Kolt Penny wrote:I've read the PKGBUILD and have no idea why this is happening. I already installed the dependencies needed.
    Read the pacman output, it refers to the package() function and makepkg doesn't find it in the PKGBUILD as said. Ask the maintainer to update or orphan it, if he doesn't respond file an AUR request.

  • Access missing keyboard functions.

    Hi all, Have a HP Mini 110-3500.  How do I access missing keyboard functions like End, Page up/down?
    Thanks
    Vic
    This question was solved.
    View Solution.

    Press in this key combination: 
    Fn + Left Arrow - Home
    Fn + Right Arrow - End
    Fn + Up Arrow - Page Up
    Fn + Down Arrow - Page Down
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • Missing some function on photo editing on iphone5

    missing some function on photo editing on iphone5

    Hi crtravis55,
    Welcome to the Support Communities!
    It's possible that your iOS apps may have been moved.
    Page 139 of the iPhone User Guide will show you how to reset the Home Screen layout:
    manuals.info.apple.com/en_US/iphone_user_guide.pdf
    Go to Settings > General > Reset, then choose an option:
    Reset the Home screen layout: Returns the built-in apps to their original layout on the Home screen.
    I hope this information helps ....
    Have a great day!
    - Judy

  • Disappointed by missing basic functionality

    I recently started working with Muse, and got frustrated by the fact that there seemingly is no Show/Hide functionality.
    Also, am I correct to say that there is no direct import for Mp3/4 media? If so, why not?
    Lastly: if InDesign can have basic animation options, then surely it wouldn't be so hard to include it in Muse.
    Muse works great, but I am quite disappointed by this lack of basic functionality.
    Cobus

    Thanks for your response.Yes I agree with you  - I put my expectations in the fact that Muse is developing fast.
    However, what I'd regard as a very basic feature  for any interactivity (show/hide), is missing. Instead of having abutton that can show or hide icons on a map, I now I have to create a duplicate of the same page that don't show them. So when a user click the button, another page first has to load!
    Clumsy and stupid.
    Thanks for the link - I'll have a look at it.
    Regards
    Cobus

  • Z 10 Amazing But Missing Useful Functions

    The Z10 phone is an amazing change for the blackberry users and it shows that the company is going on a great track and an amazing future, although am impressed with the phone and using it as my primary phone, it needs the missing functions that most of them were available on old Blackberry OS and was so useful such as:
    Sound level on notifications sitting for each category alone and not as one option for all the phone notifications.
    Select All option on BBM broadcast messages and to select by category.
    Delete updates information on BBM.
    Import Contacts from PC/File without using an e-mail account.
    Contacts total number.
    Update Maps application.
    Enable multiple alarm function.
    Show Battery life percentage.
    Enable WhatsApp.
    Multiple background for home screen and lock screen.
    Am sure if this were available on the Z10 i will stop using my iphone5 as a second phone.

    You read my mind. So I am not insane?

  • Solaris 10 x86 missing math functions in libm.

    I'm working with the 3/05 distribution on a 32-bit x86 box. I'm using gcc 3 and am compiling the following:
    #include <stdio.h>
    #include <math.h>
    double x = 3.14;
    int
    main()
       printf("Hello.\n");
       if ( isnormal(x) )
          printf("x is normal.\n");
       else
          printf("x is abnormal.\n");
       return 0;
    }An attempt at compilation yields:
    maximus$ gcc -std=c99 -o missing missing.c -lm
    missing.c: In function `main':
    missing.c:10: warning: implicit declaration of function `__builtin_isnormal'
    Undefined                       first referenced
    symbol                             in file
    __builtin_isnormal                  /var/tmp//ccGq9vPa.o
    ld: fatal: Symbol referencing errors. No output written to missing
    collect2: ld returned 1 exit statusAfter looking at this a while I found that none of the related functions, such as, isinf(), fpclassify() are available.
    I'm new to Solaris 10, so I could be missing some sort of compiler flag or library flag, but this compiles fine on Mac OS as well as Linux...
    Laszlo

    The missing functions are implemented as macros in
    /usr/include/iso/math_c99.h on Solaris 10, but the macros only work
    with the Sun C compiler.
    Current Solaris Express includes a GCC implementation in
    addition to a Sun C implementation in <iso/math_c99.h>.
    See bug 6285517:
    http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6285517

  • Canon iP4500 Printer Utility missing/ non-functional

    I own a G5 iMac & MB Pro. Ever since I installed Time Capsule, I cannot access the Canon iP4500 *Printer Utility.* It seems to be missing or has become non-functional. I should note that this printer is plugged into Time Capsule. Any ideas as to what has happened to the utility?

    To my knowledge, the utilities from the printer manufacturers have only worked if the printer is connected to the computer; you could ask Canon, but I expect they'll say that the utility wasn't designed for this type of connection.
    Hope this helps.

  • Fix Links option missing from Functions menu

    Version 11.1.2.2.300
    I have Smart View tab that is missing the "Fix Links" option in the Functions menu in Edit section. I have done the following:
    - checked no item has been disabled in Excel options
    - re-installed Smart View on the machine, same result
    - repaired Office , same result
    - logged as another user, same result
    - blown user profile, same result
    - re-imaged machine, same result
    Installed Smart View on another machine, and found that the Fix Links option is also not there.

    Hi,
    Did the issue happen only for you or for multiple users?
    If the issue only happen for one user please try to delete Lync user profile and then test the issue again.
    %UserProfile%\AppData\Local\Microsoft\Office\15.0\Lync
    Please also make sure Lync client update to the latest version.
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

Maybe you are looking for

  • Errors in Time Machine Log

    Hi I've just upgraded from Lion to Mountain Lion and started my first Time Machine backup to an external drive which I was previously using under Lion. The backup took longer than usual what I expected since besides the OS X upgrade there were also m

  • Mail keeps getting stuck checking mail and just sits there

    My dad's dual G5 is having weird mail problems. When you open Mail, it initiates the checking the mail procedure. The Activity Viewer says that it is checking X out of 1700 at this point and it gets to 71 and then hangs on one spam message written in

  • Copy music to iPod from multiple Macs

    Can anyone tell me how to copy tracks from different computers in the household to one iPod?

  • Problem  consume Web Service in SAP

    Hi experts, I need your help to solve this problem. I must consume one Web Service, but my SAP R3, don't  interprets the XML. (SE80 - > enterprise services -> create  -> Service Consumer ) i tried to  put  the URL and  copy to text file , neither wor

  • Viewing entourage messages in mac mail

    my office uses entourage. i prefer to use mac mail so i can manage my personal messages and work messages from the same program. so i set up a new account in my mail preferences with the proper incoming and outgoing mail servers and am getting my mes