Call set up in exe

I have made a rtexe , In the exe there are Subvi's call set up is kept as reload for each call
but when i run the exe and open the vi's running in the debugger  even when there is a call to the vi
vi does not gets loaded , it shows a question mark on the vi that is being called but  sometimes it  starts
running , I don't know why? And is call set machine dependent?
 Can anyone Help me? 

Hello Amit,
Ok, I understand now that you are using the second option in the VI Call Configuration Dialog Box.  According to the help file:
"Selecting Reload for each call or Load and retain on first call replaces the subVI with a Call by Reference Node that is configured to call the subVI. Symbols on the Call by Reference Node
correspond to the mode that you select. If you choose either of these
options you will no longer be able to find the subVI. These options
remove the static link to the subVI."
A question mark usually indicates that a subVI cannot be found.  This
can happen if you have not included the subVI in your rtexe build. 
Please let me know whether the is the case.  Also, please double check
that you have not renamed the subVI.
Kameralina
Ask NI (ni.com/ask)
Search The KnowledgeBase
NI Developer Zone
Measure It. Fix It. ni.com/greenengineering/
NI Vision ni.com/vision/

Similar Messages

  • How to call set pf-status in 4.6C system ALV report

    Hi All,
    Am calling set pf-status as
    form MAIN using rt_extab type slis_t_extab
    set pf-status 'MAIN' excluding rt_extab.
    ENDFORM.
    and giving that PF-STATUS name in FM
    "REUSE_ALV_GRID_DISPLAY"
    but in out put my pf-status is not calling.
    Its working fine in ECC 6.0 systems.
    Can any one help me regarding the same
    Thanks in Advance
    Regards
    SAI

    Post relevant portion of your code to analyse. No point in shooting arrows in the dark.

  • Serious bug: call set-up problem in case of several DNS SRV records

    Hello Cisco,
    We have a MCU that consists of two servers in cluster. We have SIP SRV DNS records that point to both servers with equal priority and weight.
    All applications work nice with such setup, except from Free Jabber. Jabber is unable to set up the connection most of the time. One time the connection is successful and 5, maybe even 10 times it is unsuccessful.
    For testing, we removed SIP DNS records pointing to one server. This way Jabber works much better. There are some cases when the call set up fails but in most cases it works.
    Looking the logs of the MCU, we can see three different ways, how call set-up may fail. It is probably unreasonable describe the details in this forum message. Anyway, it seems to be sure that in case there SIP SRV records point to one server then Jabber is able to connect the MCU, in case the records point to two servers equally then Jabber is pricnipally unable to connect the MCU. This bug should be fixed, IMHO.
    Btw, what record does Jabber follow, is it _sips._tcp or _sip._tls?
    Greetings and thank you in advance,
    Marko Laurits

    Hello Cisco,
    We have a MCU that consists of two servers in cluster. We have SIP SRV DNS records that point to both servers with equal priority and weight.
    All applications work nice with such setup, except from Free Jabber. Jabber is unable to set up the connection most of the time. One time the connection is successful and 5, maybe even 10 times it is unsuccessful.
    For testing, we removed SIP DNS records pointing to one server. This way Jabber works much better. There are some cases when the call set up fails but in most cases it works.
    Looking the logs of the MCU, we can see three different ways, how call set-up may fail. It is probably unreasonable describe the details in this forum message. Anyway, it seems to be sure that in case there SIP SRV records point to one server then Jabber is able to connect the MCU, in case the records point to two servers equally then Jabber is pricnipally unable to connect the MCU. This bug should be fixed, IMHO.
    Btw, what record does Jabber follow, is it _sips._tcp or _sip._tls?
    Greetings and thank you in advance,
    Marko Laurits

  • Calling an external program (*.exe file) on the client

    Hi,
    I use 9iDS and I'd like to call an external program (*.exe file) on the client, but this exe file is located on the server not on the client.
    So it should be something like a mixture between host and client_host(webutil) command. Is it possible to use client_host where a virtual path is passed to?
    Regards Sören

    Are you saying you want to run on the exe on the client but its located on the server???
    In that case you would have to do a webutil file transfer to move it to the client before executing. Or, if you are calling a DLL, webutil will download it automatically from the server to the client (see the C API example on the webutil page).
    Regards
    Grant Ronald
    Forms Product Management

  • Need to call SET ROLE for Oracle before running report

    Hi all,
    does anyone know how I can call SET ROLE for Oracle with Crystal Reports, before running report? I'm using Crystal Reports 2008 to design report (with Server Oracle connection) and Java Reporting Component to run report within a J2EE apllication. If anyone has any idea, I'd greatly appreciate as I'm in trouble.
    Thanks a lot.

    Just a thought...
    If your report's datasource was an Oracle stored procedure, you could call a function to set the role from that SP
    You would be in the same Oracle session from  Report --> SP --> Function, so the role would be retained

  • IllegalArgumentException occured while calling setter of

    Hi all!
    I'm new to hiberbate and i'm trying to create my first project. When I'm trying to select data from my DB - I get the fillowing error:
    IllegalArgumentException occured while calling setter of test4.Group.groupid
    Hibernate: select this_.groupid as groupid1_0_, this_.faculty as faculty1_0_ from studgroups this_
    DB has the following entities:
    • Student
    ◦ First Name
    ◦ Last Name
    ◦ Patronymic
    ◦ Datre of Birth
    ◦ GroupNumber
    • Group
    ◦ GroupNumber
    ◦ Faculty
    I create the following classes:
    public class Student {
    private Long id;
    private String firstname;
    private String lastname;
    private String otch;
    private Date dateofbirth;
    private Long groupid;
    public Student(){}
    public void setId(Long id) {
    this.id = id;
    public void setFirstname(String firstname) {
    this.firstname = firstname;
    public void setLastname(String lastName) {
    this.lastname = lastname;
    public void setOtch(String otch) {
    this.otch = otch;
    public void setDateofbirth(Date dateofbirth) {
    this.dateofbirth = dateofbirth;
    public Long getId() {
    return id;
    public String getFirstname() {
    return firstname;
    public String getLastname() {
    return lastname;
    public String getOtch() {
    return otch;
    public Date getDateofbirth() {
    return dateofbirth;
    public Long getGroupid() {
    return groupid;
    Code:
    public class Group {
    private Long groupid;
    private String faculty;
    public Group(){}
    public void setGroupid(Long groupid) {
    this.groupid=groupid;
    public Long getGroupid() {
    return groupid;
    public void setFaculty(String faculty) {
    this.faculty = faculty;
    public String getFaculty() {
    return faculty;
    xmls:
    Stud.hbm.xml
    Code:
    <hibernate-mapping>
    <class name="test4.Student" table="students">
    <id column="id" name="id" type="java.lang.Long">
    <generator class="increment"/>
    </id>
    <property column="FirstName" name="firstName" type="java.lang.String"/>
    <property column="LastName" name="lastName" type="java.lang.String"/>
    <property column="Otch" name="otch" type="java.lang.String"/>
    <property column="DateofBirth" name="dateofBirth" type="java.util.Date"/>
    <many-to-one name="group" column="groupid" class="test4.Group"/>
    </class>
    </hibernate-mapping>
    Studgroups.hmb.xml
    Code:
    <hibernate-mapping>
    <class name="test4.Group" table="studgroups">
    <id column="groupid" name="groupid" type="java.lang.Long">
    <generator class="increment"/>
    </id>
    <property column="faculty" name="faculty" type="java.lang.String"/>
    <set name="studgroups" table="studgroups" lazy="false">
    <key column="id"/>
    <one-to-many class="test4.Student"/>
    </set>
    </class>
    </hibernate-mapping>
    configuration xml
    Code:
    <hibernate-configuration>
    <session-factory>
    <property name="connection.url">jdbc:mysql://localhost:3306/test</property>
    <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
    <property name="connection.username">root</property>
    <property name="connection.password"></property>
    <property name="connection.pool_size">1</property>
    <property name="current_session_context_class">thread</property>
    <property name="show_sql">true</property>
    <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>
    <mapping resource="test4/stud.hbm.xml"/>
    <mapping resource="test4/studgroups.hbm.xml"/>
    </session-factory>
    </hibernate-configuration>
    I'm trying to select data from DB using the following code:
    Collection groups = Factory.getInstance().getgroupdao().getAllGroups();
    Iterator iterator = groups.iterator();
    while (iterator.hasNext()) {
    Group grp = (Group) iterator.next();
    System.out.println("группа : " + grp.getGroupid());
    Collection students = Factory.getInstance().getstuddao().getStudentsByGroup(grp);
    Iterator iterator2 = students.iterator();
    while (iterator2.hasNext()) {
    Student std = (Student) iterator2.next();
    System.out.println("студент " + std.getLastname());
    Could you help me, I have no idea why I get the following exception? thank you.

    Hello,
    I'm sorry I don't know Hibernate (I just stumbled on this topic as it was unduely posted in the "Design and patterns" forum), but I see a couple of inconsistencies in your post (probably typos):
    - check the spelling of your mapping configuration files (hbm vs hmb)
    - the studgroup table has a "groupnumber" column, that doesn't appear in the mapping conf
    Also it would help if you posted the stack trace of the exception (so that we get an idea whether it is raised in the Hibernate machinery, presumably as a result of a misconfiguration, or from within your code).
    Eventually, it bears repeating: please use ++ tags around your code to make your code and config readable to us wrinkled users, and please check the formatting in the preview tab, before posting.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • NiDMM call setting not allowed

    Our company introduced PXI-1033 and NI40470 to improve the voltage measurement accuracy two years ago. During the normal production, after testing for several hundred thousand times(~200,000~2million), it will alarm: "niDMM call setting not allowed". each time, we need reboot the computer to fix this problem. It caused a lot of engineering work and machine downtime. Regarding to this problem, is there any solution to reduce the alarm frequency or eliminate it?

    You need to supply a lot more information if you want any help.
    What changed right before the errors started happening?  Software just doesn't stop working after 2 years.
    How are you calling the DMM?  How are you handling references?  What software are you using?  What setting are you not allowed to make when you get this error?
    Any code you can supply will help the debugging process.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How do you override global variable values when calling oraxsl or xsl.exe?

    I am a newbie to oracle xslt.
    I have down loaded the latest version of xdk (10.1.0.2...). (Jan 2, 2009).
    In the past I haveI used micorsoft's "msxsl.exe" to perform my transformations.
    I am looking for a more up-to-date transformation tool.
    I found Oracle's version, and thought I would try it out.
    I have run the "bin/xsl.exe -hh" command.
    I read its help data. It states that variables are
    passed by coding a pramater "-V <var> <value>".
    I have also examined the oraxls.bat file.
    I found the documentation on "oracle.xml.parser.v2.oraxsl" class.
    It states that parameters are passed after the "-p" switch.
    It says the value of the -p parameter is "a list of paramemters".
    I don't find this sufficient information to be useful.
    I can spend days guessing, and I might get lucky.
    I thought it my be better to ask for help.
    I need to pass in (override) values for 3 global variables.
    I saw the method
    "setParam(namespace, variable, value)",
    near the documentation for the "oraxsl" class.
    How do you format the options string to communicate more than one param statement?
    (in either xsl.exe and/or oraxsl class).
    Suppose I have an xslt stylesheet as follows:
    ==================================================
    <?xml version="1.0" ?>
    <xsl:stylesheet version="1.1" xmlns:xsl='http://www.w3.org/1999/XSL/Transform' >
    <xsl:param name='a' select='"default_a"' />
    <xsl:param name='b' select='"default_b"' />
    <xsl:param name='c' select="'default_c"' />
    <xsl:template match='/'>
    this is value for a: <xsl:value-of select='$a' />
    this is value for b: <xsl:value-of select='$b' />
    this is value for c: <xsl:value-of select=$c' />
    <xsl:apply-templates />
    </xsl:template>
    </xsl:stylesheet>
    ========================================================
    Now as part of the calling of the XSL processor I want to change the value of these
    three global parameters.
    I want:
    a="current_a",
    b="current_b",
    and c="current_c"
    How do I express this using xsl.exe and its paramter string (-V ????).
    and/or how do I express it to the oraxsl class ( -p (xsl, a,"current_a"), (....) )???
    The syntax for specifying this information is not very clear in either situation.
    Of course I am making the "assumption" that by "param" they are
    refering to "global parameters" (as in my stylesheet), rather than some other global parameters of XLST.
    As an aside inquiry:
    I had hopped that the Oracle's xsl Verion 2 routine could handle xslt 2.0 commands
    such as "xsl:for-each-group", since it handled multiple xsl:outputs.
    From reading some of the documentation it seems it only handles xslt 1.0 syntax/commands.
    Is this true? (or is the documentation not up-to-date?).
    Any help on passing param values to xsl.exe and/or "oraxsl" class is appreciated.
    Thanks.

    Here is the line from one of my testing .bat files that passed in one parameter. I can't recall if I've passed in two, but this will give you a starting point for passing in multiple
    java -cp %CPath% oracle.xml.parser.v2.oraxsl -p show_image='yes' %ValXML% %ValXSLT% As for XSLT 2.0 support, it appears it does per {thread:id=503445}

  • How to call setter Method of ActionScript class with in a Flex Application

    Hi
    I have Action class as shown :
    public class MyClass
    private var name:String 
    public function get name():String {
        return _initialCount;
    public function set name(name:String):void {
        name = name;
    Now please let me know how can i access this Action class under my Flex Application and call the setter Method of it to set the value for the name .
    For example on entering some data in a TextInput and  click of a submit Button , on to the Event Listener , i want to call the set name method of my ActionScript class .
    Please share your ideas on this .

    Thanks  Gordon for your resonse .
    Say for example my Action class is like this :
    public class MyClass
    private var name:String 
    public function get name():String {
        return name;
    public function set name(name:String):void {
        name = name;
    This is inside the MXML
    I know this way we can do it
    public var myclass:MyClass = new MyClass();
    myclass.name="Kiran";
    Now my query is can we do in this way also ??
    myclass.set name(SomeTextInput.text);
    Please share your views on this , waiting for your replies .
    Thanks in advance .

  • Calling setter on backing bean via JavaScript / AJAX using JSF2

    My application requires me to invoke a setter on a backing bean instance. I am trying to do this using the following javascript code:
    var stateListWidth = document.getElementById("myform:stateListWidth");
    stateListWidth.setAttribute("value", 100);
    jsf.ajax.request(this, event, {execute: 'stateListWidth', render: 'stateListWidth'});and added a hidden field as follows:
    <h:form id="myform">
    <h:inputHidden id="stateListWidth" value="#{cityController.stateListWidth}"/>However my setter method is never called. I can see the parameters (myform:stateListWidth = 100) are POST'd to the server side, but not translated into a setter invocation. Any ideas if this is possible and how to do this.

    I got it working. Had to specify the full ID of the element myform:stateListWidth rather then just stateListWidth.
    var stateListWidth = document.getElementById(myform:stateListWidth);
    stateListWidth.setAttribute("value", 100);
    jsf.ajax.request(this, event, {execute: 'myform:stateListWidth', render: 'myform:stateListWidth' });I still wonder if there is a better way without using a hidden field to get this working?

  • Azure Powershell - Calling Set-AzureServiceDiagnosticsExtension results in BadRequest error

    I'm trying to set Azure diagnostics on a deployed cloud service using v0.8.11 Azure Powershell cmdlets and the Set-AzureServiceDiagnosticsExtension command:
        Set-AzureServiceDiagnosticsExtension -StorageContext $storageContext -DiagnosticsConfigurationPath $diagnosticsConfiguration.FullName -ServiceName $serviceName -Slot Production -Role "MyService.Web"-Verbose
    Doing so I get the following error
        Exception: Microsoft.WindowsAzure.CloudException: BadRequest: The extension ID
        MyService.Web-PaaSDiagnostics-Production-Ext-0 is invalid.
           at Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task
        task)
           at Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(Task
        task)
           at Microsoft.WindowsAzure.HostedServiceOperationsExtensions.AddExtension(IHo
        stedServiceOperations operations, String serviceName,
        HostedServiceAddExtensionParameters parameters)
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.ExtensionMan
        ager.AddExtension(HostedServiceAddExtensionParameters extensionInput)
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.ExtensionMan
        ager.InstallExtension(ExtensionConfigurationInput context, String slot,
        ExtensionConfiguration extConfig)
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.SetAzureServ
        iceDiagnosticsExtensionCommand.ExecuteCommand()
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.SetAzureServ
        iceDiagnosticsExtensionCommand.OnProcessRecord()
           at Microsoft.WindowsAzure.Commands.Utilities.Common.CloudBaseCmdlet`1.Proces
        sRecord()
           at System.Management.Automation.Cmdlet.DoProcessRecord()
           at System.Management.Automation.CommandProcessor.ProcessRecord()
            + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorExcep
           tion
            + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorExceptio
           n,UpdateDiagnosticsBuildStep.ps1
    It works when I don't use the "-Role" parameter but then I have to call Remove-AzureServiceDiagnosticsExtension for each role prior to calling the Set command which adds 2-3 minutes per role to the script execution time.
    The Role parameter matches my role name in the Azure Cloud Service. Am I doing something wrong or is this a bug?

    Hi dontijee,
    Please look at this article:
    http://blogs.msdn.com/b/kwill/archive/2014/12/02/windows-azure-diagnostics-upgrading-from-azure-sdk-2-4-to-azure-sdk-2-5.aspx, there is one person who encounter the same issue in the comments part of this article, please pay attention to this article. If
    any update, I will post here.
    [update]
    Please have a look at the kevin's reply, it seems like a powershell bug, here is a snippet.
    The problem has been identified as an issue with the extension name code in the Powershell cmdlet.  The REST API that Powershell calls doesn't support dots in the extension name.  Visual Studio will correctly remove the dots from the role name,
    but Powershell preserves the full role name including dots.  We will fix the Powershell code, but in the meantime the workarounds are:
    1) Remove the '.' from your role name.
    2) Use Visual Studio to enable diagnostics.
    3) Instead of using Set-AzureServiceDiagnosticsExtension, use the generic New-AzureServiceExtensionConfig / Set-AzureServiceExtension methods.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to call  set method

    hi i have a set method which i what to call from another class how can i do that
    Edited by: ADF007 on 2012/09/13 2:08 PM
    Edited by: ADF007 on 2012/09/13 2:08 PM
    Edited by: ADF007 on 2012/09/13 3:14 PM

    Where are these methods written? What technologies/versions are you using?
    From the looks of it, I'm assuming assignRolesToUser seems to be a method in some ADFbc component (AM?)
    and RowButtonListener seems to be a managed bean method.
    You need to first read and understand how to expose ADFbc service operations (such as AM methods) in a client interface and call from your UI layer (such as bean method or similar UI action).
    Here's something: https://blogs.oracle.com/jdevotnharvest/entry/best_practice_invoking_business_services

  • Calling sets in an ABAP program

    i am working on a validation exit for FI. Is it possible to create sets to group data and call the sets in a ABAP program in a validation exit.
    Any clarification will be appreciated.
    thank you
    Krishna

    Hi,
    you can group data:
    1) in special standard trx. like KDH2
    and read them with table setheader and setleaf
    or (better)
    2) creat your own customer Table to group data with key-fields:
    mandt groupname fieldname fieldvalue
    100     Z001          SAKNR   4711
    100     Z001          SAKNR   4712
    and in your val.-exit you can check values against this table
    A.
    Message was edited by:
            Andreas Mann

  • Is there a security setting that prevents .EXEs from being run from a Projector on a CD in Win7?

    I created a Flash Projector for a client and burned it to a CD.  There is a button on it that uses fscommand to run the Adobe Acrobat installer from the CD and also one that installs a screensaver to the computer.
    The client says they can't get either of those two buttons to work on a Windows 7 machine.
    I have Win7 64-bit on the computer that I created the Projector on and it works fine for me and I also have Win7 32-bit on my laptop and it works there as well.  The only thing I can think is that I turn a lot of the security setting in Windows 7 off such as "User Account Control".
    Would that be what is preventing the .EXEs from working on their Windows 7 machines?
    Thanks.

    Locking the phone via the lock screen does not prevent you from restoring the phone, you'll need to be able to do so if you forget the passcode: iPhone and iPod touch: Wrong passcode results in red disabled screen
    And I don't think that other smartphones offer that feature you're looking for.
    Let Apple know about it here: Apple - iPhone - Feedback

  • Nokia E55 internet call setting

    I recently bought a Nokia E55 with great hope, and did the SIP VOIP setting, and registered to the provider Jumblo.
    I tried to call a friend of mine via internet but I couldn't. There was not the internet call option to be choosen. The instruction on setting the internet call in the manual is misleading. Does the software (2.1) of E55 contain the internet call option?
    I'm hoping to get a quick answer from some guru to solve the problem.

    i have a e55
     me also waiting for the answer 

Maybe you are looking for

  • How can I set firefox t o allow cut, copy and paste?

    I am needing to cut info from a college course homepage I am teaching and paste it into another course I am teaching. How can I cut, copy and paste in mozilla firefox?

  • How to access my pc file from my mac?

    I have a PC running XPsp2 and a MacBook running OSX 10.5 and I'm just wondering how to access files from my PC while on my Mac. The Mac recognises my PC network but every time I try and open the sharedDocs folder the mac tells me: "the operation cann

  • Which connection is faster for Mac-iPod syncing?

    I have recently been reading about the switch from power adapter/usb/firewire bundle to usb only for iPods and after reading a couple of reviews i've come across quite a few people saying the the Firewire connection from a mac to an iPod is actually

  • How to make a long animated button

    Hello Does anyone know how to make a animation on a button when you put your curser over or click the button longer then just a few frames. in other words to extend the over or down parts of the button animation. Thanks a lot.

  • Curves and Elements 4.0

    So I broke down and purchased the Curves tool from the Lynch web site. It it pretty interesting, but what became obvious pretty quick, is I have NO idea how to be effective in using them. I can play and see how it lightens and brightens etc... but it