Access States in Modules

Hello, I am having trouble accessing states in a module.
Knowing that my application would grow, I have started to modularise right away. For a simpel case, let us take the example from this website:
http://evontech.com/forum-need-help/topic/875.html
We have the Main.mxml and two mxml files (MainView and LoginView).
Main.mxml:
<?xml version="1.
0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:view="view.*">
  <mx:TabNavigator>
      <view:LoginView />
      <view:MainView />
  </mx:TabNavigator>
</mx:Application>
Now, assume that have a state named StateB in MainView, and a button in LoginView. When I click on the button in LoginView, I was StateB in Mainview to open. How do I do that?
This is the snippet from LoginView:
protected function addBtn_clickHandler(event:MouseEvent):void
currentState = "StateB";
Thank you very much.

Hello, I am having trouble accessing states in a module.
Knowing that my application would grow, I have started to modularise right away. For a simpel case, let us take the example from this website:
http://evontech.com/forum-need-help/topic/875.html
We have the Main.mxml and two mxml files (MainView and LoginView).
Main.mxml:
<?xml version="1.
0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:view="view.*">
  <mx:TabNavigator>
      <view:LoginView />
      <view:MainView />
  </mx:TabNavigator>
</mx:Application>
Now, assume that have a state named StateB in MainView, and a button in LoginView. When I click on the button in LoginView, I was StateB in Mainview to open. How do I do that?
This is the snippet from LoginView:
protected function addBtn_clickHandler(event:MouseEvent):void
currentState = "StateB";
Thank you very much.

Similar Messages

  • Accessing an app.module's client interface methods in other app module

    Hi all,
    We are developing an application with number of projects (one for each module). We have got a common project with an application module, entity and view objects which are common for the entire application. For reusability, this common project is shared in session scope since most of them are of static nature.
    In the shared application module's implementation class, a common method has been included that will be used for data filtering by constructing/appending where clauses in a particular application scoped view object. This method has been exposed as client interface method so that other projects can make use of it. The common project is compiled as an ADF Library jar for accessing it in other projects.
    For accessing the exposed client interface method, from the view controller layer, we can include its reference in the page definition file and can execute the method from a managed bean by finding the operation binding from the page definition. But, in case if we wish to access the method in another model project, we could not do so.
    Now, my questions are:
    1. Is it the correct location(Shared App Mod. Impl) for including the logic to filter the data?
    2. Is it possible to access the app. module impl method in another project's impl classes (Let it be entityImpl or viewObjectImpl or viewRowImpl or AppModImpl) ?
    3. If it is possible, how it has to be done?
    Thanks and regards,

    Strange, the same question here {thread:id=2187487}
    Timo
    Edited by: Timo Hahn on 08.03.2011 12:02
    @john You beat me agian

  • Cannot access Statement

    Hi
    why i am getting following compilation error.
    mysql1.java:37: cannot access Statement bad class file: .\Statement.class
    class file contains wrong class: org.gjt.mm.mysql.Statement Please remove or make sure it appears in the correct subdirectory of the classpath.
    Statement stmt = con.createStatement();
    thanks in advance

    Hi Raju
    Thanks a lot for all your kind comments. i succedded to get the connection with mySql server as it execute the connection statement.
    Now it gives compilation error as stated .
    variable "username" is also my database name.
    my code is here
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    //import java.sql.*; //gives compilation error "cannot access Connection"
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    import java.sql.Driver;
    public class mysql2 extends HttpServlet
    public void doGet (HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException
    ServletOutputStream out = response.getOutputStream();
    String title = "Servlet connecting to MySQL database";
    response.setContentType("text/html");
    try {
    out.println("Start...");
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    //Class.forName("com.mysql.jdbc.Driver").newInstance();
    String username = "user"; // Insert your own username for MySQL
    String password = "pass"; // Insert your own password for MySQL
    String url = "jdbc:mysql://mysql.it-c.dk/" + username;
    Connection con = DriverManager.getConnection(url, username , password);
    out.println("Mubarik hoooo..Good Luck...");
    //working up to here
    Statement stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery("SELECT * from phone_book");
    ResultSetMetaData meta = rs.getMetaData();
    out.println("Fik fat i databasen!<br>Her kommer det, vi trak ud:<br><br>");
    while( rs.next() ) {
    String fornavn = rs.getString("name");
    String efternavn = rs.getString("address");
    String kn = rs.getString("kn");
    out.println(fornavn + " " + efternavn + " er en "+"<br>");
    stmt.close();
    catch( Exception e ) {
    out.println("Der er fejl!");
    out.println(e.getMessage());
    e.printStackTrace();
    Thanks
    Nadeem

  • Access an Application Module Client Interface in a JSF Web Application

    How to Access an Application Module Client Interface in a JSF Web Application
    I use this code but class ValueBinding is deprecated in JDeveloper11g
    FacesContext fc=FacesContext.getCurrentInstance();
    ValueBinding vb=fc.getApplication().createValueBinding("#{data}");
    BindingContext bc=(BindingContext)vb.getValue(fc);
    DCDataControl dc=bc.findDataControl("SRServiceDataControl");
    ApplicationModule am=(ApplicationModule)dc.getDataProvider();

    user581394,
    JDeveloper 11 and the introduction of ADF Faces RC introduces a new dependency, which is JSF 1.2. The createValueBinding on the FacesContext object is deprecated in JSF 1.2. To resolve an expression in JSF 1.2 use the following method or something similar.
        public static Object resolveExpression(String expression) {
            FacesContext facesContext = getFacesContext();
            Application app = facesContext.getApplication();
            ExpressionFactory elFactory = app.getExpressionFactory();
            ELContext elContext = facesContext.getELContext();
            ValueExpression valueExp =
                elFactory.createValueExpression(elContext, expression,
                                                Object.class);
            return valueExp.getValue(elContext);
        }--RiC                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • State chart without NI state chart module

    I have read the design article on state machines in Labview in http://zone.ni.com/devzone/cda/tut/p/id/3024 and gone through the cannon and coin machine examples. I am attempting to build my own state machine (have the state machine diagram as well as the states of my i/o laid out, which will be attached later) without the state chart module b/c I don't think my model is complex enough to justify the purchase. However, after reading the design article, I still don't quite understand how to use the digital logic function palettes to link between each state of my state machine using the status of the inputs. Does anyone have any insight on how to get started on this as I'm still confused after going through the examples?

    No problem, happens once in a while. My post just ensures that all answers will be in the same thread.
    LabVIEW Champion . Do more with less code and in less time .

  • Crystal Reports 2008 can't see/access ECC function module

    My team is developing our first Crystal Report directly against ECC data and are experiencing the following problem:
    Our ABAP team created a custom RFC to provide the needed data, but we are unable to see a full list of available Functions and list of available tables from SAP ECC data source.
    We worked with Security and temporarily ran under SAP_ALL authority but were still unable to see/ access the function module.  We have the integration kit installed and can see some function modules from within Crystal, just not the ones we need. Is there some trick to creating a function module so that it is visible to Crystal? 
    Environment Details:
    Crystal reports Version- 12.2.3.467
    SAP GUI # 7200.1.2.1051
    CRDB_OpenSQL.Dll # 12.2.3.467

    Hi Ingo. I enjoyed your BO 4 seminar and meeting you at ASUG/Sapphire. I was hoping you'd pick this up.
    The connection options shows the info below. It doesn't seem to be telling us how to filter to either select or exclude SAP ECC function modules. It has options to? Are these options correct to see ECC function modules and should we be seeing other options?
    Database tab (only tab in dialog)
    - Show name description or both (Show description selected)
    - Sort tables or fields alphabetically (sort tables selected)
    - Select tables, views, system tables, synonyms, and stored procedures (all except synonyms selected)
    - Table like and owner like (both blank)
    Advanced Options (x = selected)
    - (X) Use indexes on server
    - ( ) perform grouping on server
    - (X) Database Server is case sensistive
    - (X) Select Distinct for Browsing
    - ( ) Perform query async
    - (X) Verify on first refresh
    - ( ) Verify stored procedures on first refresh
    - (X) verify when database driver upgraded
    - (X) Automatic smart linking

  • Lightroom 5. I've reinstalled it on a macbook pro but when I click "Develop" it states the module is disabled and I need to purchase a licence but I've got a full licence and it's running on another machine. How do I fix it?

    Lightroom 5. I've reinstalled it on a macbook pro but when I click "Develop" it states the module is disabled and I need to purchase a licence but I've got a full licence and it's running on another machine. How do I fix it?

    Lightroom doesn't launch or returns "Develop module is disabled" error after 5.5 update

  • IPC Pricing with AP 7.00 Database Access/Call function module user-exit

    Hi experts,
    we are running SAP ECO on SAP ECC 6.0 with IPC Pricing AP 7.00 running in the VMC.
    I'm facing a new requirement. In an user-exit for requirements the access to the ABAP database is needed.
    (I know that the SAP recommendation is, don't have access to database. But we need this functionality)
    In ABAP it looks like:
    select single * from  a590
          into     LH_674_a590
          where    kappl  = 'V'
          and      kschl  = 'ZSPR'
          and      kunnr  = komk-kunnr
          and      matnr  = komp-matnr
          and      datbi  >= komk-prsdt
          and      datab  =< komk-prsdt.
    Is there a possibility to implement the same SELECT in the Java-User-Exit?
    Is there maybe the alternative to call a function module instead?
    The database exits on the same application server on which the VMC runs.
    If there is a possiblity can anyone provide me with sample coding or give an advice where to find samle coding?
    I would prefer to call a functions module.
    Thanks in adcance
    Karl-Wilhelm

    Hi Shanto & Sumit,
    Thanks for the inputs.
    as per my understanding of the log
    java.lang.IncompatibleClassChangeError: com.sap.leasing.pricing.tools.LeasingPricingTools: method getPricingConditionByConditionTypeName(Lcom/sap/spe/pricing/transactiondata/userexit/IPricingItemUserExit;Ljava/lang/String;)Lcom/sap/spe/pricing/transa ctiondata/IPricingCondition; used to be stati
    error is thrown by the SAP standard user exit and because of which execution is failing in customer user exits and surprisingly we have not made any changes in both of them.
    this was working earlier before upload.could this be because of the jar packaging.
    how i can download the standard user exit com.sap.leasing.pricing.tools.LeasingPricingTools from crm
    for further investigation.
    Thanks,
    Siddharth

  • How to restrict the access of FUNCTION MODULE for others after transporting

    A Function module needs to be executed in one server and should be executed when others try to access it.how to restrict the access of FM to one application server after being transported using SM59.

    issue resolved

  • Value mapping access from XI module adapter

    Hi,
    is it possible to access a value mapping from an XI module adapter?
    Thanks
    Yann

    hi
    1)what is the differnce between ValueMappingReplication(Asynchronous) and ValueMappingReplicationSynchronous .
    In sync you will get the value mapping replication status back and in async you won't. In sync based on the response u can update again in case of any failure. If data size is large use async.
    2) Message type ValueMappingReplication contains Operation ,GroupId,Context,scheme,agency.
    what is the meaning of Operation??
    The operation that you are going to perform. Below is the operations list and the contents to be set in the message for the same
    Insert = all fields must be set;
    Delete =all fields must be set;
    DeleteGroup = fields GroupID and context must be set;
    DeleteContext = field Context must be set;
    DeleteContextGeneric = Context contains the starting part for the context to be deleted
    what is the use of group ID??
    Displays the different representations of an object.
    A value mapping group is identified uniquely by a GUID.
    You can also assign a name to a value mapping group.
    is this necessary to maintain all these values in Ztable and also source and target values ?? and use them in Abap aproxy logic??
    no. system creates the value mapping table. you can take it frm there. no need of any ztables.
    3) is there any Message Mapping Needed.?? and Interface Mapping Needed to implement value Mapping replication??
    You will be sending the value mapping data from a sender system. If it can sent in the same format not required, otherwise you will have to.
    4)what is the Sender Adapter type ??
    Any adapter...depends on the sender system.
    5) if I did replication from SAP..can I see the details in ID
    You can see it in Cache monitoring in RWB.
    for more details refer
    http://help.sap.com/saphelp_nw70/helpdata/EN/13/ba20dd7beb14438bc7b04b5b6ca300/content.htm
    rgds
    Arun

  • Problem with the navigation library with states in modules

    Hello,
    The application I'm working on is based on a shell which contain a "contentNavigator" where several states are defined :
    <code>
    <fx:Declarations>
            <parsley:Configure />
        </fx:Declarations>
        <fx:Metadata>
            [Waypoint(mode="states",name="shell")]
        </fx:Metadata>
        <s:states>
            <s:State name="dashboardModule" />
            <s:State name="registrationModule" />
            <s:State name="marketingModule" />
        </s:states>
        <components:ModulePad id="dashboard" includeIn="dashboardModule"  url="../../dashboard/bin-debug/dashboardModule.swf" />
        <components:ModulePad id="registration" includeIn="registrationModule"  url="../../registration/bin-debug/registrationModule.swf" />
    </code>
    Each ModulePad is a custom component that manage the loading/unloading of a spark module. The navigation in each spark module is based on the same principle, for example in the registrationModule :
    <code>
        <fx:Declarations>
            <parsley:ContextBuilder config="RegistrationContext" />
            <parsley:Configure />
        </fx:Declarations>
        <fx:Metadata>
            [Waypoint(mode="states",name="shell.registrationModule")]
        </fx:Metadata>
        <s:states>
            <s:State name="registration" />
            <s:State name="tracking" />
        </s:states>
        <presentation:Registration includeIn="registration" width="1000" top="130" left="40" bottom="30"/>
        <presentation:RegistrationTracking includeIn="tracking" width="1000" top="130" left="40" bottom="30"/>
    </code>
    At the beginning the navigation is working properly : when a NavigationEvent ("shell.registrationModule.tracking") is dispatched the registrationModule is loaded and when the loading is done the state is set to "tracking".
    Then if a NavigationEvent ("shell.dashboardModule.dashboard") is dispatched the registrationModule is automatically unloaded and the dashboardModule is loaded. But then if a NavigationEvent ("shell.registrationModule.tracking") is dispatched again, the state is set to "registration" (the default one) instead of "tracking" like the first time.
    The event log show that a (com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:exit) is triggered just after the load of the registrationModule.
    Is this a bug or am i making a mistake in the implementation of the navigation ?
    Thanks for you help.

    Here is the log of the navigation events if it can help :
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell:everyEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:everyEnter
    [SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:ThalamusDashboard:bin-debug:DashboardModule.swf - 1 052 130 octets après la décompression
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell.dashboardModule
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:everyEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule:everyEnter
    [SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:ThalamusRegistration:bin-debug:RegistrationModule.swf - 1 108 823 octets après la décompression
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell.registrationModule
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:everyEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:enter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:everyEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:enter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:everyEnter
    [SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:ThalamusDashboard:bin-debug:DashboardModule.swf - 1 052 130 octets après la décompression
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:enter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:everyEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule:enter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule:everyEnter
    [SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:ThalamusRegistration:bin-debug:RegistrationModule.swf - 1 108 823 octets après la décompression
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.registration:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.registration:everyEnter
    [Décharger SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:ThalamusDashboard:bin-debug:DashboardModule.swf
    [Décharger SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:Thalamus:bin-debug:Thalamus.swf

  • BUPA_MAIN stays in Intermediate state Function Module missing

    We noticed that on our Productive system, since yesterday most
    of the BUPA_MAIN BDOCs status are in yellow "After qRFC step (intermediate
    state)" since last two days on PRM. Before it was working fine.
    We got o SMW01 & re-process it, then we get a short dump which says:
    " Function module "/1CRMGC/CGBUPA_MAIN_RRR" not found."
    We compared in th eTxn: SBDM the BUPA_MAIN on Production & Test systems.
    We found that the Module "/1CRMGC/CGBUPA_MAIN_RRR" is not there in Production but it
    is there on other systems where its working.
    Please let us know how we can generate this,
    Is it the normal process to Generate on the dsired system in our case production directly? or do we do it in Development & then Transport it.
    We have this bug in Production and fix this asap.
    Thanks
    Regards
    Rahul
    Edited by: Rahul Kumar Lal on Sep 2, 2010 1:50 PM

    Hi Rahul,
    Goto Trxn. GNRWB -
    Generator Group : REPLI
    Industry : Consumer Goods
    Select BUPA_MAIN on L.H.S. and all Generators on the R.H.S.
    Click on Generate/Check icons.
    or you can goto trxn . SMOGGEN and select BUPA_MAIN.
    Tnx,
    Rohit

  • Access Violation in module RunPci.dll

    Getting error message of "Access violation at address 0146139C in module 'RunPci.dll'. Read of address 00000000."
    This happens when trying to load/run the "Utility" setup on the MSI Utility&Drivers CD.
    Fuzzy Logic III not loading and bootup/bootdown takes 10 minutes. Mouse works but won't Drag&Drop, kb works. Device Manager is empty, all COM and OLE functions fail. Trying to reload Drivers and Utilities, but access violation in RunPci.dll seems to be what prevents this.
    All problems started when parallel scanner cable mistakenly plugged into serial port. System is KT3 Ultra2 running W2kPro, no firewalls or A-V software, no Internet connection.

    Can you check the lenght of the FORMSxx_PATH and please tel;l me if:
    1) This happens in a simple (no code) form.
    2)Details of o/s and Forms versions numbers
    Thanks
    Grant Ronald
    Forms Product Management
    null

  • Can not access root app module in nested one

    I am using Jdeveloper 11g R2 (11.1.2.3) & Weblogic 10.3.5.0
    I have a root application module and few nested application modules nested under root one in my ADF application
    I have few common methods under root application module Impl class and try to access them in nested Impl classes
    like this (This code is in nestedAppModuleImpl class):
    RootAppModuleImpl root = (RootAppModuleImpl)someViewObject.getDBTransaction().getRootApplicationModule();
    root.doSomething();
    when I execute above code this excepton is thrown:
    oracle.jbo.server.ApplicationModuleImpl cannot be cast to mypackage.RootAppModuleImpl
    Any comment or workaround?
    What is the proper solution?
    Regards
    Mohsen

    Mohsen, there is something terribly wrong with your code.
    //(This code is in nestedAppModuleImpl class):
    RootAppModuleImpl root = (RootAppModuleImpl)someViewObject.getDBTransaction().getRootApplicationModule();
    root.doSomething();doesn't make sense. Does doSomething() really return an RootAppModuleImpl? You can access the root application module from the nested application module by
    RootAppModuleImpl root = (RootAppModuleImpl)getRootApplicationModule();If you get a class cast exception it means that there is something wrong with your RooAppModuleImpl. Does it extend ApplicationModuleImpl? If yes the cast should be possible.
    Is the root application module of the type RootAppModuleImpl? only then you can access the common methods after getting the root application module.
    the next method
    private ViewObject getAccountExistsView(DBTransaction t) {
    ApplicationModule root = t.getRootApplicationModule();
    ViewObject vo = root.findViewObject("MemberExistsView");
    if (vo == null) {
    vo = root.createViewObject("MemberExistsView","model.MemberExistsView");
    return vo;
    }doesn't make sense to me. Where does this method reside? in the RootAppModuleImpl? if yes, why do you call getRootApplicationModule? You are in the root application Module. I can' comment on the createViewObject you are calling, but my feeling is that you don't need it either. The view you are creating should be there already if your application module are setup correctly.
    And you are right, you should not call createRootApplicationModule if it is not needed. In your case it's not!
    Timo

  • CRIO 9025- FPGA - Not able to access c-series modules integrated with chassis

    Hi,
    I am using NI cRIO 9025 module. I have conncected the chassis with few cSERIES channels for voltage and current sensing.
    When I tried to configure, I am getting the following error
    Access denied: This target is running a version of LabVIEW Real-Time that is different than the Real-Time Module software on the host computer. You can verify the version and reinstall the Real-Time software using Measurement & Automation Explorer.
    I tried to use Add/Remove option from MAX. But I am not able to update the real time software on cRIO
    I am using Labview 12.0 on host computer and on target cRIO9025 - 11.0.1 version real time is installed.
    Please kindly help to update the software on target module.
    Thanks
    Ravi Kishore

    NMAYO,
    In your project view can you right click on the chassis in the cRIO and make sure that it is set for Scan Mode and not FPGA mode? Also, In the measurement and automation explorer you can check the cRIO and verify that it has Scan Engine Support installed on it. The tutorial below shows how to reformat a cRIO and install software on it, the later steps on software will allow you to check your cRIO.
    Reformatting a CompactRIO Real-Time Embedded Controller
    Ben Sisney
    FlexRIO V&V Engineer
    National Instruments

Maybe you are looking for