Queries related to ADF Train Component, Region disable if 'No data Found' from URL service

I have below few queries. I am using JDeveloper version : 11.1.1.6.0
1. Train Component : I need to remove link which is on 'Train Stop' icon so user can't directly go to next stop.
2. Hide region in case of Empty Result from URL Service Call :
     I have created a region  and in region put the task flow which have readOnly table calling URL Service data control.
     In case of empty result from service call, table is rendered and displays 'No data to display.' I don't want to show empty table in this case. and I also want to make region invisible (rendered=false).
3. alternative of <optgroup> tag in adf: Do we have any alternative option to display <optgroup> tag in adf ?
Regards,
Niraj

1. Train Component : I need to remove link which is on 'Train Stop' icon so user can't directly go to next stop.
You can reference a managed bean from the view activity train definition to enable/disable stops dynamically:
http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51adf-452576.html
ADF Code corner has more train examples, just search for "train" : http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html
2. Hide region in case of Empty Result from URL Service Call :
     I have created a region  and in region put the task flow which have readOnly table calling URL Service data control.
     In case of empty result from service call, table is rendered and displays 'No data to display.' I don't want to show empty table in this case. and I also want to make region invisible (rendered=false).
The af:region is out of scope for the table. Instead use a dynamic regions that you switch to from a managed bean (see the product documentation about dynamic regions) and then you switch to an empty region when there is no values to display. Another option would be to hide the table instead of the region using its display property. Let me know which approach you go with and if you need additional information
3. alternative of <optgroup> tag in adf: Do we have any alternative option to display <optgroup> tag in adf ?
an af:switcher would do the same
Frank

Similar Messages

  • Multiple queries happeing in adf query component using LOV

    Hi,
    I am using a programmatic view object in adf query component and have created List of values for one attribute by adding another programmatic ViewObject as ViewAccessor.
    To populate the lov ViewObject, i have overwritten the method executeQueryForCollection in which i call the webservice to fetch the data. So lov is working fine inside QueryComponent.
    I have overwritten queryListener attribute of query component in my backing bean. In the queryListener method, to populate the result grid, am populating the view object by using createRow and insertRow apis. While doing so, Whenever i do setAttibute for the lov field, the overwrittern method executeQueryForCollection getting invoked. Hence my webService getting invoked. So if i have 10 rows, the webservice is getting invoked 10 times.
    I put sops in the executeQueryForCollection method for the queryMode and getName.
    System.out.println("executeQueryForCollection::::"+this.getQueryMode()); i get as 7
    System.out.println("executeQueryForCollection:::=" +this.getName());    i get as  CurrencySummaryLOVVO_5708_findByVC_   The number 5708 varies for every row.
    Please tell me How to avoid invoking the executeQueryForCollection everytime when i do setAttribute.
    One workaround i have currently is to have one dummry attribute for the lov which can be used for display in grid and actual attribute will be used in Query Component for the lov to function.
    Is there any other better workaround?
    Thanks a lot in Advance.
    Vivek
    Edited by: Vivek Singh on Oct 22, 2009 9:16 PM

    When you set a value to LOV field it tries to validate it from the LOV data. thats why it execute query.
    Try setting Row Level Bind Values = false for the accessor.
    yet, i would suggest to find an other way to populate values of LOV since the executeQueryForCollection will be executed many times when you use that LOV:
    [http://adfbugs.blogspot.com/2009/08/lov-execute-query-many-times.html]

  • Single adf task flow portlet with multiple pages and paramter from url

    Hi ,
    I have made a adf task flow portlet with a parameter.
    I have made a portal applcation and added multiple pages . in each of the page I am consuming that portlet through wsrp2.
    I have mapped the task flow parameter in page bindings of the pages with #{param.code}. where code is the get parameter.
    I have edited navigatinoal template so that when i click the pages , code parameter also get added in the url.
    issue
    When I run the applcation and visits first page with get parameter i get the right result. but when i click the on the other page which has some other value for the same get parameter , it doesnt display the value. But the other page shows me correct value if I go this page first but the later page doesnt display any value.
    thanks

    1001446 wrote:
    Hi ,
    I have edited navigatinoal template so that when i click the pages , code parameter also get added in the url.Can you paste the code from the template here?

  • How to disable - General preference - Create links from URLs. Using Acrobat Javascript

    http:\\www.sdss.com should not be suggested as a link. We have manual option to uncheck -> Create links from URLs, but I need to achieve this through the script.
    Please help on this ASAP.

    That is an end user preference only. Not accessible by JavaScript. If you control the installation, then you can turn off that option for the installation but the user could still turn it back on.

  • Not able to access SOAP web service data control from adf mobile

    Hi,
    I am trying to call web services from adf mobile..
    I have created data control from external web service and it is perfectlly working on web browser..
    But why it is showing an error on emulator??
    Is there any .jar file missing in adf mobile so that it is not supporting a web service?
    Or is there any other problem? Emulator is connected to network and I am able to run WSDL in emulator's browser..
    Please help me to solve this issue..
    Thanks,
    Laxmi

    Emulator is connected to network and I am able to run WSDL in emulator's browser..
    Connecting to WSDL in the browser is not the same as connecting to WSDL in an application.
    To access a web service from an Android device enable a permission in AndroidManifest.xml that allows applications to open network sockets. Add the following uses-permission element.
    <uses-permission android:name="android.permission.INTERNET"></uses-permission>

  • Dynamic Regions w/Train Component

    I'm working on a web app (JDeveloper 11g) where one page has a dynamic reqion with a task flow associated with it that sets the fragment for the view. Most of the fragments for this region use a page template with a train component. Navigation using the train component mostly works fine- the fragment is replaced by a new fragment each time a train link is clicked.
    However, one fragment contains another dynamic region. I tried to set the scope of the bean managing this region to viewScope, but I get a popup message in the browser "viewScope.myManagedClass.dynamicTaskFlowId" is invalid" when I click the train component link for the fragment. I get a similar error if I set the scope of the bean to session or pageFlow. Only when I set the scope to backingBean or None do I avoid the error message.
    But then another problem occurs. One of the fragments in the flow for the inner region has a panelAccordion with several showDetailItems consisting of selectManyCheckboxes. The panelAccordion doesn't list anything, and locks up if I try to open or close any showDetailItem. This behavior is similar to when the scope for the bean managing the flow is not set to viewScope or higher.
    In stepping through the code, I noticed that the outer region's flow code runs after the inner region's trigger event code that sets the inner region's taskFlowId, but before the inner region's flow code, so the inner region's taskFlowId setting is lost. I tried throwing the setting into session context and retrieving it, and that almost works. If I actually select any of the selectManyCheckboxes, they are lost once I move to a different fragment in the inner region.
    Does anybody have any ideas on how to I get this page working, alternatives to the approach I'm taking, settings I should check, and/or any reference material I could consult?
    Thanks in advance!
    Edited by: tmurphy on Jul 6, 2010 3:30 PM

    Hi,
    However, one fragment contains another dynamic region. I tried to set the scope of the bean managing this region to viewScope, but I get a popup message in the browser "viewScope.myManagedClass.dynamicTaskFlowId" is invalid" when I click the train component link for the fragment.
    Is the managed bean defined in the metadata definition of the bounded taskflow that you load ? Note that bounded task flows are only initializing their managed beans when they are loaded. If you define the managed bean in the parent bounded task flow then the viewScope also is the one of the parent flow. Appears as if this is the problem you describe
    Frank

  • Train Component

    Hi.
    I am using Jdeveloper 11.1.1.5.0. , i'm new to ADF and Also OTN
    This is my Scenario,
    I am using a table ,the table Contains the Different kind of records in different Status(Eg: New, Active,Cancel).
    Also I am having a train on top of the table, which shows, New  --> Active  -->Cancel
    When i click the Particular Record Based on the Status the Train Will be highlight, For eg: If I click the 'Cancel' status record, the previous status of records such as 'New' and 'Active' will be disabled and the 'Cancel' station should be highlighted.
    I tried the following methods,
    1.I created  a  separate View object based on the Status like(New ,Active,Cancel)
    2. I shown my table in jsff page.
    3..In Jsff Page, drag the Train Component From the Component Palette, and drop into  top of the Table.
    4.Finaly Created a jspx page with the TaskFlow in it.
    5. I run it,  It works Fine
    but i have to show as,
    Single Af:table contains Different Status Records,When i click a particular Row Based on the Status the Train Station Will be Enabled.
    How  to Achieve this?
    pls give Some ideas.

    Stop posting the sqame question again and again. Continue here: Train Component and Answer the questions.
    Mod: locking

  • Intro ADF Faces Tutorial Issue:  ADF Table Component and ADF Binding

    Hello, friends! I've hit a snag with ADF Faces Tutorial: ADF Table Component and ADF Binding: Step 7
    http://www.oracle.com/technology/obe/obe11jdev/11/rich_client/adfrichclient.htm#t11
    It was suggested by Steve Muench that I most likely have a syntax error and that I should post my problem here. I want to you thank you in advance for you help!
    When I execute the Run command on the main.jspx page, the page completes its load with the "fetching" message hanging over the table component. I get two sets of messages in my OC4J log that I cannot easily decipher, being a JDev/OC4J newbie.
    First, the OC4J startup messages:
    <blockquote>
    [Starting Embedded OC4J Server using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    C:\Documents and Settings\david ctr wilson-bur\My Documents\My Projects\JDev Projects\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config>
    C:\jdev11g\jdk\bin\javaw.exe -client -classpath C:\jdev11g\j2ee\home\oc4j.jar;C:\jdev11g\jdev\lib\jdev-oc4j-embedded.jar -Xverify:none -XX:MaxPermSize=512m -Ddisable.checkForUpdate=true -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false "-Djava.security.policy=C:\Documents and Settings\david ctr wilson-bur\My Documents\My Projects\JDev Projects\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\java2.policy" oracle.oc4j.loader.boot.BootStrap -config "C:\Documents and Settings\david ctr wilson-bur\My Documents\My Projects\JDev Projects\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\server.xml"
    [waiting for the server to complete its initialization...]
    Feb 21, 2008 9:10:20 AM oracle.j2ee.xml.XMLMessages warningException
    WARNING: Exception Encountered
    Feb 21, 2008 9:10:21 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    08/02/21 09:10:28 WARNING: ApplicationServer.enableOC4JDocumentChangeNotifier Alternate DocumentChangeNotifier in use!
    08/02/21 09:10:28 JMS server will listen on port 9227.
    08/02/21 09:10:29 oracle.j2ee.jms.oc4j.JMSServer startup complete
    Feb 21, 2008 9:10:29 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 21, 2008 9:10:30 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 21, 2008 9:10:35 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 21, 2008 9:10:36 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 21, 2008 9:10:36 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 21, 2008 9:10:36 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 21, 2008 9:10:36 AM oracle.j2ee.util.AnnotatedLogger logWithThrowable
    WARNING: J2EE JNDI-00002
    Feb 21, 2008 9:10:36 AM oracle.j2ee.util.AnnotatedLogger log
    WARNING: No javax.jms.ConnectionFactory found at null
    Feb 21, 2008 9:10:36 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 21, 2008 9:10:37 AM oracle.security.jps.fmw.util.JpsFmwUtil findSystemUser
    WARNING: findSystemUser: System user is not available from Credential Store.
    Feb 21, 2008 9:10:39 AM oracle.j2ee.jmsrouter.util.JmsRouterMessages logException
    WARNING: oracle.j2ee.jmsrouter.RouterException: JMS Destination, {0}, does not exist
    Ready message received from Oc4jNotifier.
    Embedded OC4J Server startup time: 35016 ms.
    </blockquote>
    Next, message for the Run command:
    <blockquote>
    Target URL -- http://127.0.0.1:8988/Tutorial-adffacesrc-context-root/faces/main.jspx
    Feb 21, 2008 9:10:55 AM com.evermind.server.http.HttpMessages warningHeaderModificationIsRejected
    WARNING: Header modification request was rejected. Because the setter method was called from included servlet. It is restricted by SRV.8.3 of Servlet Specification 2.4. : current-workspace-app
    Feb 21, 2008 9:10:55 AM ComponentMetadataHandler _error
    WARNING: Error parsing component tag in file: /Tutorial-adffacesrc-context-root/simple.jspx/tag:xmlContent/id:null
    org.xml.sax.SAXParseException: <Line 3, Column 44>: XML-20100: (Fatal Error) Expected 'EOF'.
         at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:422)
         at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:287)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:316)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:212)
         at oracle.xml.jaxp.JXSAXParser.parse(JXSAXParser.java:292)
         at oracle.adfinternal.view.faces.taglib.region.ComponentMetadataHandler._parseContent(ComponentMetadataHandler.java:276)
         at oracle.adfinternal.view.faces.taglib.region.ComponentMetadataHandler.handleContent(ComponentMetadataHandler.java:164)
         at oracle.adfinternal.view.faces.taglib.region.XmlContentTag.doEndTag(XmlContentTag.java:83)
         at simplejspx._ctru6_helper_3(_simple_jspx.java:375)
         at simplejspx._ctru0_helper_1(_simple_jspx.java:105)
         at simplejspx._jspService(_simple_jspx.java:59)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:488)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:706)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:627)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter$3.run(JAZNFilter.java:434)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:308)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:452)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:585)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_include(ServletRequestDispatcher.java:131)
         at com.evermind.server.http.ServletRequestDispatcher.access$000(ServletRequestDispatcher.java:37)
         at com.evermind.server.http.ServletRequestDispatcher$1.oc4jRun(ServletRequestDispatcher.java:80)
         at oracle.oc4j.security.OC4JPrivilegedAction.run(OC4JPrivilegedAction.java:41)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.oc4j.security.OC4JSecurity.internalDoPrivileged(OC4JSecurity.java:374)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:389)
         at com.evermind.server.http.OC4JRequestDispatcher.executeAction(OC4JRequestDispatcher.java:161)
         at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:84)
         at com.evermind.server.http.EvermindPageContext.include(EvermindPageContext.java:486)
         at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.__include(ComponentRefTag.java:367)
         at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.doEndTag(ComponentRefTag.java:209)
         at oracle.adfinternal.view.faces.taglib.region.PageTemplateTag.doEndTag(PageTemplateTag.java:75)
         at mainjspx._ctru4_helper_5(_main_jspx.java:367)
         at mainjspx._ctru3_helper_4(_main_jspx.java:307)
         at mainjspx._ctru1_helper_2(_main_jspx.java:232)
         at mainjspx._ctru0_helper_1(_main_jspx.java:173)
         at mainjspx._jspService(_main_jspx.java:105)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:488)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:706)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:627)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter$3.run(JAZNFilter.java:434)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:308)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:452)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:585)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:334)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:251)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:168)
         at oracle.oc4j.security.OC4JPrivilegedAction.run(OC4JPrivilegedAction.java:41)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.oc4j.security.OC4JSecurity.internalDoPrivileged(OC4JSecurity.java:374)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:389)
         at com.evermind.server.http.OC4JRequestDispatcher.executeAction(OC4JRequestDispatcher.java:161)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:172)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:408)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:267)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:442)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:115)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:633)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:244)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:178)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.rich.SharedLibraryFilter.doFilter(SharedLibraryFilter.java:135)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:69)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:74)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:241)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:198)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:141)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.security.jazn.oc4j.JAZNFilter$3.run(JAZNFilter.java:434)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:308)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:452)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:583)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:334)
         at com.evermind.server.http.HttpRequestHandler.doDispatchRequest(HttpRequestHandler.java:942)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:843)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:646)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:614)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:405)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:168)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:149)
         at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:275)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    </blockquote>
    Please let me know if I need to provide any other relevant information.
    Thanks!
    David

    Dear All,
    I am fairly new to ADF development too. While following the Tutorial, I selected the "simple" page template. and check the "Create as XML Document (*.jspx). then click "OK", I got a similar SAXParseException exception, however the main.jspx seemed showed up correctly in the "Design" window. Any idea? Thanks a lot.
    Dachywan
    Customizations are disabled for the node "/C:/OTN/JDev11pv3/adfp/lib/oracle.extapp.view.jar!/WEB-INF/adfc-config.xml" because it is not part of the project contentset.
    Mar 10, 2008 5:41:50 PM com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Initializing JavaServer Faces implementation (1_2_04-p02) for context ''
    Mar 10, 2008 5:41:51 PM com.sun.faces.spi.InjectionProviderFactory createInstance
    WARNING: JSF1033: Resource injection is DISABLED.
    Customizations are disabled for the node "/C:/OTN/JDev11pv3/adfp/lib/oracle.extapp.view.jar!/WEB-INF/adfc-config.xml" because it is not part of the project contentset.
    Mar 10, 2008 5:41:54 PM ComponentMetadataHandler _error
    WARNING: Error parsing component tag in file: null/tag:xmlContent/id:dte_171098d
    org.xml.sax.SAXParseException: <Line 9, Column 7>: XML-20100: (Fatal Error) Expected 'EOF'.
         at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:422)
         at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:287)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:316)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:212)
         at oracle.xml.jaxp.JXSAXParser.parse(JXSAXParser.java:292)
         at oracle.adfinternal.view.faces.taglib.region.ComponentMetadataHandler._parseContent(ComponentMetadataHandler.java:276)
         at oracle.adfinternal.view.faces.taglib.region.ComponentMetadataHandler.handleContent(ComponentMetadataHandler.java:164)
         at oracle.adfinternal.view.faces.taglib.region.XmlContentTag.doEndTag(XmlContentTag.java:83)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer._doEndTag(DesignTimeJspActionRenderer.java:1604)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.doEndTag(DesignTimeJspActionRenderer.java:1718)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeTag(DesignTimeJspActionRenderer.java:2432)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeNodeTag(DesignTimeJspActionRenderer.java:2242)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.executeNodeTag(FacesActionRenderer.java:1971)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderImpl(DesignTimeJspActionRenderer.java:325)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.render(DesignTimeJspActionRenderer.java:203)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.render(FacesActionRenderer.java:175)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChild(DesignTimeRenderer.java:996)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChild(DesignTimeJspActionRenderer.java:1403)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChildren(DesignTimeRenderer.java:974)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChildrenImpl(DesignTimeJspActionRenderer.java:1363)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChildren(DesignTimeJspActionRenderer.java:1268)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.renderChildren(FacesActionRenderer.java:897)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeInnerAction(DesignTimeJspActionRenderer.java:2578)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeTag(DesignTimeJspActionRenderer.java:2397)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeNodeTag(DesignTimeJspActionRenderer.java:2242)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.executeNodeTag(FacesActionRenderer.java:1971)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderImpl(DesignTimeJspActionRenderer.java:325)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.render(DesignTimeJspActionRenderer.java:203)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.render(FacesActionRenderer.java:175)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChild(DesignTimeRenderer.java:996)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChildren(DesignTimeRenderer.java:974)
         at oracle.jdevimpl.webapp.jsp.renderers.JSPCoreSyntaxRenderer.render(JSPCoreSyntaxRenderer.java:191)
         at oracle.jdevimpl.webapp.design.support.jsp.DesignTimeJspServlet._renderSource(DesignTimeJspServlet.java:238)
         at oracle.jdevimpl.webapp.design.support.jsp.DesignTimeJspServlet.serviceJsp(DesignTimeJspServlet.java:115)
         at oracle.jdevimpl.webapp.design.support.jsp.DesignTimeJspServlet.service(DesignTimeJspServlet.java:71)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletInfo.service(DesignTimeServletInfo.java:251)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher.dispatch(DesignTimeRequestDispatcher.java:271)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher.include(DesignTimeRequestDispatcher.java:81)
         at oracle.jdevimpl.webapp.design.support.jsp.DesignTimePageContext.include(DesignTimePageContext.java:465)
         at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.__include(ComponentRefTag.java:367)
         at oracle.adfinternal.view.faces.taglib.region.ComponentRefTag.doEndTag(ComponentRefTag.java:209)
         at oracle.adfinternal.view.faces.taglib.region.PageTemplateTag.doEndTag(PageTemplateTag.java:75)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer._doEndTag(DesignTimeJspActionRenderer.java:1604)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.doEndTag(DesignTimeJspActionRenderer.java:1718)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeTag(DesignTimeJspActionRenderer.java:2432)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeNodeTag(DesignTimeJspActionRenderer.java:2242)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.executeNodeTag(FacesActionRenderer.java:1971)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderImpl(DesignTimeJspActionRenderer.java:325)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeInnerAction(DesignTimeJspActionRenderer.java:2572)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeTag(DesignTimeJspActionRenderer.java:2397)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeNodeTag(DesignTimeJspActionRenderer.java:2242)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.executeNodeTag(FacesActionRenderer.java:1971)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderParentElements(DesignTimeJspActionRenderer.java:967)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.renderCustomParentNode(FacesActionRenderer.java:1911)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.renderAsInclude(FacesActionRenderer.java:1778)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderInclude(DesignTimeJspActionRenderer.java:1933)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderImpl(DesignTimeJspActionRenderer.java:233)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.render(DesignTimeJspActionRenderer.java:203)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.render(FacesActionRenderer.java:175)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChild(DesignTimeRenderer.java:996)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChild(DesignTimeJspActionRenderer.java:1403)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChildren(DesignTimeRenderer.java:974)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChildrenImpl(DesignTimeJspActionRenderer.java:1363)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChildren(DesignTimeJspActionRenderer.java:1268)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.renderChildren(FacesActionRenderer.java:897)
         at oracle.adfdtinternal.view.rich.renderer.ADFFacesActionRenderer.renderChildren(ADFFacesActionRenderer.java:100)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeInnerAction(DesignTimeJspActionRenderer.java:2578)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeTag(DesignTimeJspActionRenderer.java:2397)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeNodeTag(DesignTimeJspActionRenderer.java:2242)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.executeNodeTag(FacesActionRenderer.java:1971)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderImpl(DesignTimeJspActionRenderer.java:325)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.render(DesignTimeJspActionRenderer.java:203)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.render(FacesActionRenderer.java:175)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChild(DesignTimeRenderer.java:996)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChild(DesignTimeJspActionRenderer.java:1403)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChildren(DesignTimeRenderer.java:974)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChildrenImpl(DesignTimeJspActionRenderer.java:1363)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChildren(DesignTimeJspActionRenderer.java:1268)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.renderChildren(FacesActionRenderer.java:897)
         at oracle.adfdtinternal.view.rich.renderer.ADFFacesActionRenderer.renderChildren(ADFFacesActionRenderer.java:100)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeInnerAction(DesignTimeJspActionRenderer.java:2578)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeTag(DesignTimeJspActionRenderer.java:2397)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeNodeTag(DesignTimeJspActionRenderer.java:2242)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.executeNodeTag(FacesActionRenderer.java:1971)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderImpl(DesignTimeJspActionRenderer.java:325)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.render(DesignTimeJspActionRenderer.java:203)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.render(FacesActionRenderer.java:175)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChild(DesignTimeRenderer.java:996)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChild(DesignTimeJspActionRenderer.java:1403)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChildren(DesignTimeRenderer.java:974)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChildrenImpl(DesignTimeJspActionRenderer.java:1363)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderChildren(DesignTimeJspActionRenderer.java:1268)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.renderChildren(FacesActionRenderer.java:897)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeInnerAction(DesignTimeJspActionRenderer.java:2578)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeTag(DesignTimeJspActionRenderer.java:2397)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.executeNodeTag(DesignTimeJspActionRenderer.java:2242)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.executeNodeTag(FacesActionRenderer.java:1971)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.renderImpl(DesignTimeJspActionRenderer.java:325)
         at oracle.jdevimpl.webapp.design.renderer.DesignTimeJspActionRenderer.render(DesignTimeJspActionRenderer.java:203)
         at oracle.jdevimpl.webapp.design.renderer.FacesActionRenderer.render(FacesActionRenderer.java:175)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChild(DesignTimeRenderer.java:996)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderer.renderChildren(DesignTimeRenderer.java:974)
         at oracle.jdevimpl.webapp.jsp.renderers.JSPCoreSyntaxRenderer.render(JSPCoreSyntaxRenderer.java:191)
         at oracle.jdevimpl.webapp.design.support.jsp.DesignTimeJspServlet._renderSource(DesignTimeJspServlet.java:238)
         at oracle.jdevimpl.webapp.design.support.jsp.DesignTimeJspServlet.serviceJsp(DesignTimeJspServlet.java:115)
         at oracle.jdevimpl.webapp.design.support.jsp.DesignTimeJspServlet.service(DesignTimeJspServlet.java:71)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletInfo.service(DesignTimeServletInfo.java:251)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher.dispatch(DesignTimeRequestDispatcher.java:271)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher.forward(DesignTimeRequestDispatcher.java:75)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:408)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:267)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:442)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:115)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:633)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:244)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletInfo.service(DesignTimeServletInfo.java:251)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher$DesignTimeFilterChain.doFilter(DesignTimeRequestDispatcher.java:519)
         at oracle.adfinternal.view.faces.webapp.rich.SharedLibraryFilter.doFilter(SharedLibraryFilter.java:135)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:69)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:74)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:241)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:198)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:141)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeFilterInfo.doFilter(DesignTimeFilterInfo.java:346)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher$DesignTimeFilterChain.doFilter(DesignTimeRequestDispatcher.java:481)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher.dispatch(DesignTimeRequestDispatcher.java:267)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletContainerContext._service(DesignTimeServletContainerContext.java:861)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletContainerContext._serviceRequest(DesignTimeServletContainerContext.java:832)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletContainerContext.service(DesignTimeServletContainerContext.java:792)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderWebApp.service(DesignTimeRenderWebApp.java:42)
         at oracle.jdevimpl.webapp.design.DesignTimeEngine.service(DesignTimeEngine.java:200)
         at oracle.jdevimpl.webapp.design.view.DomDesignTimeViewDocument._serviceJsp(DomDesignTimeViewDocument.java:1081)
         at oracle.jdevimpl.webapp.design.view.DomDesignTimeViewDocument.rebuildTreeImpl(DomDesignTimeViewDocument.java:217)
         at oracle.jdevimpl.webapp.design.view.DomDesignTimeViewDocument.rebuildImpl(DomDesignTimeViewDocument.java:125)
         at oracle.jdevimpl.webapp.model.content.dom.view.proxy.DomProxyViewDocument.rebuild(DomProxyViewDocument.java:140)
         at oracle.jdevimpl.webapp.model.content.dom.view.proxy.DomProxyViewDocument.handleActivated(DomProxyViewDocument.java:402)
         at oracle.jdevimpl.webapp.design.view.DomDesignTimeViewDocument.handleActivated(DomDesignTimeViewDocument.java:93)
         at oracle.jdevimpl.webapp.model.content.dom.view.proxy.DomProxyViewDocument.activate(DomProxyViewDocument.java:391)
         at oracle.jdevimpl.webapp.editor.XmlGuiEditor._activateViewDocument(XmlGuiEditor.java:389)
         at oracle.jdevimpl.webapp.editor.XmlGuiEditor.handleEnabled(XmlGuiEditor.java:368)
         at oracle.jdevimpl.webapp.editor.XmlGuiEditor.setEnabled(XmlGuiEditor.java:351)
         at oracle.jdevimpl.webapp.editor.XmlGuiEditor.setEnabled(XmlGuiEditor.java:333)
         at oracle.jdevimpl.webapp.editor.AbstractWebAppEditor.enable(AbstractWebAppEditor.java:551)
         at oracle.jdevimpl.webapp.editor.AbstractWebAppEditor._enableIfNecessary(AbstractWebAppEditor.java:649)
         at oracle.jdevimpl.webapp.editor.AbstractWebAppEditor.mav$_enableIfNecessary(AbstractWebAppEditor.java:80)
         at oracle.jdevimpl.webapp.editor.AbstractWebAppEditor$2.run(AbstractWebAppEditor.java:636)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

  • Queries related to web-ui configuration.

    Hi Experts,
    I have some queries related to web-ui configuration :
    I have copied standard component of Lead with values Role Key  = Zconfig key, Component Usage, Object Type, Object Subtype= Default and made some changes(renamed some fields) and assigned same Config key to business role further assigned that role to my user but when i open the lead transaction from webui the screen i see is standard and not which is configured by me, i have also confirmed screen by checking field property(F2) it shows my zconfig key, please clear my below queries:
    1) I m missing any steps in screen configuration or assignment
    2) I need to assign this new configured screen to diffrent users for diffrent project.
    3) How to hide some field which is not required in transaction.
    I have gone through the various threads in sdn but unfortunately i did not get clear idea.
    Thanks and Regards,
    DD's

    Hi harshit,
    Thanx for u r quick reply i have done it by making changes in  DO_CONFIG_DETERMINATION, can u please suggest how to hide unwanted fields in webui transaction.
    Thanks and Regards,
    DD's
    Edited by: DD's on May 11, 2009 11:51 AM

  • Navigating ADF Train to a specific stop on page load

    Hello friends,
    I am working on the GUI of an ADF web application, which requires the use of train component. It is possible to navigate the train component to a specific stop programmatically once the page containing the train component is loaded but as per our business scenario, I need to navigate the train to a specific stop (say 3rd stop for example) while loading the page.
    Is it possible to do so?
    I am using JDeveloper 11.1.1.7.0.
    Best Regards,
    Anshul

    Thanks Shri.
    That worked.
    Regards,
    Anshul

  • Regarding Train component, view is lost when navigating to next train stop

    Hi,
    I require a train component for my application. I have created a bounded taskFlow contianing 3 JSF pages with each page representing a trainStop.
    I added train component to each of the pages as told in "Fusion Developer Guide" .
    Now I add this taskFlowDefn.xml in my main.jspx as a region. The train is visible and working but the problem that I face is as follows:-
    I am having 2 input fields in my 1st jsf page represented by the 1st stop in the train. If I enter something in the input text
    and move on to another stop(which is also a different jsf page) and again go back to previous jsf page, the value in the input text gets cleared from the screen.
    These input text are not bounded with View Object attributes. The JSFFs are desgined without binding.
    How can I save/retain the view of the previous page , I mean how to retain the values on the page that were entered, as train component itself provides the
    functionality of moving back and forth. Alll the 3 jsf pages and the main.jspx (which contains the bounded taskFlowDefinition as region) have backingBeanScope.
    Please reply if you know wat I have missed or wat I need to do for this.
    Thx in advacne
    Tarun.

    adf009, please read the post I posted the link to in my previous replay. The old code format tag don't work in the new forum!
    Still the same error. The stack trace still points to it, you only need to read it carefulle
    javax.faces.el.EvaluationException: java.lang.NullPointerException
        at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:51)
    Caused by: java.lang.NullPointerException
        OrgDetails.showSelectedOrg(OrgDetails.java:2456)
    The origin is
    method.execute();
    and the real reason is
    MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:51);
    What does it tell you?
    Timo

  • ADF : Can we skip the default activity of ADF train in bounded task flow.?

    Hi All,
    I'm a newbie for ADF and JDev. Started learning from the documentation provided for ADF, I'm trying to create a bounded task flow which has a train component and every train stop should be enabled/skipped programmatically. I'm able to skip the train stops after reading the content provided at http://www.oracle.com/technetwork/developer-tools/adf/learnmore/82-programmatically-navigate-trains-396873.pdf.
    But I'm not able to skip the default train stop which is the first activity call in my case upon initialization.
    Below are the steps I've followed :
    1. Created a viewController project and created a bounded task flow in it with Train component enabled.
    2. Added 4 views with train component marking the first view as default activity call.
    3. As per the document I mentioned above, I added managed bean files to skip the train stop programmatically.
    Now when i run the task flow, I'm able to skip the train stops number 2/3/4 but I'm not able to skip the stop number 1(first stop which is the default activity) on initialization.
    As per ADF documentation, for a bounded task flow there must be a default activity assigned which will always be called first when we enter the bounded task flow. So that means, default activity will always be called upon initialization of that bounded task flow and never be skipped programmatically.? or else if there is a way to skip the default activity, then please let me know the documentation/steps to do this.
    Thanks in advace.
    Edited by: 1004973 on May 9, 2013 2:52 AM

    Thanks Timo. Your idea resolved my issue. :)
    I've created a new page in my bounded task flow which I've made as a default activity for that bounded task flow. Then I applied navigation through router and based on some condition I'm now able to move my control to my desired train stop. By this design I can do other customization on train button(Back/Next).

  • How to launch the dialog with a wizard having train component

    Hi
    I have a page with a button and onclicking the button i need to show a dialog wizard( a wizard with 3 pages with the train component to move back and forth)
    I have created a taskflow as a train with 3 pages, but onclicking the button i am not able to launch the dialog as a taskflow.
    Any documentatino on how to achieve the same or some sample application reference is highly appreciated
    Bittu Bansal

    On clicking the button i want to show a popup and that popup drives me through the wizard.
    However i am able to achive the same right now.
    I am calling a popup using showPopupBehaviour and that popup i have created the region where i have embedded the task flow for a train wizard.
    Thanks
    Bittu Bansal

  • Programmtically Setting View Criteria in ADF Query Component

    I have created two view criterias for a View Object and used ADF Query component for searching. User can select any one of the View Criteria from "saved search" in ADF Query component. but i want to set it programmatically based on some business rules. How i can do that?

    No I don't want to set view criteria on search click. Actually I have ADF Query component on my page which is by default disabled. There are also some fields outside the query component on the value of which i enable ADF Query component and wants to set a particular ViewCriteria based on context. All ViewCriterias are defined and listed in "saved search" of ADF Query component but i don't want to allow user to select it but wants to application set it automatically based on context. For it i will be needed to set a particualar ViewCriteria for ADF Query component through code and then refresh ADF Query component to show newly set ViewCriteria. I know how to refresh query component or any other component through code but don't know how to set ViewCriteria on ADF Query component?

  • Help with Train component

    Hi,
    I have to implement wizard based page flow for my application and I read that we can achieve it using train component. I am not able to find documentation or examples on it.
    Does any of you know any link to documentation and/or example program for it?
    I am trying to see if train component will suffice for our needs. We have simple sequence flow, conditional branching, looping within the wizard flow (like adding repetitive items within the flow) etc.
    Thanks in advance,
    _Jp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Here are several very simple examples of the train in UIX. I don't know of any full example program.
    <ctrl:page xmlns="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:data="http://xmlns.oracle.com/uix/ui"
    xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el"
    xmlns:ui="http://xmlns.oracle.com/uix/ui">
    <ctrl:head>
    <html:title>&lt;train&gt; element</html:title>
    </ctrl:head>
    <ctrl:content xmlns:ui="http://xmlns.oracle.com/uix/ui">
    <stackLayout>
    <separator>
    <separator/>
    </separator>
    <contents>
    <link text="View Source"
    destination="${ctrl:eventUrl(uix, 'viewSource')}"/>
    <html:p/>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with no children or selection"/>
    <train/>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 4 children but no selection"/>
    <train>
    <contents>
    <link text="Bali"/>
    <link text="Baja"/>
    <link text="Architecture"/>
    <link text="Release"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 4 children and value=2"/>
    <train value="2">
    <contents>
    <link text="Bali"/>
    <link text="Baja"/>
    <link text="Architecture"/>
    <link text="Release"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 4 children and selectedIndex=1"/>
    <train selectedIndex="1">
    <contents>
    <link text="Bali"/>
    <link text="Baja"/>
    <link text="Architecture"/>
    <link text="Release"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 4 children and value=1 and selectedIndex=3 (value takes precedence)"/>
    <train value="1" selectedIndex="3">
    <contents>
    <link text="Bali"/>
    <link text="Baja"/>
    <link text="Architecture"/>
    <link text="Release"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 4 children and value out of bounds low"/>
    <train value="-1">
    <contents>
    <link text="Bali"/>
    <link text="Baja"/>
    <link text="Architecture"/>
    <link text="Release"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 4 children and value out of bounds high"/>
    <train selectedIndex="7">
    <contents>
    <link text="Bali"/>
    <link text="Baja"/>
    <link text="Architecture"/>
    <link text="Release"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children and value=1"/>
    <train value="1">
    <contents>
    <link text="Active Step1"/>
    <link text="Next Step2"/>
    <link text="Next Step3"/>
    <link text="Next Step4"/>
    <link text="Next Step5"/>
    <link text="Next Step6"/>
    <link text="Next Step7"/>
    <link text="Next Step8"/>
    <link text="Next Step9"/>
    <link text="Next Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children and value=4"/>
    <train value="4">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Active Step4"/>
    <link text="Next Step5"/>
    <link text="Next Step6"/>
    <link text="Next Step7"/>
    <link text="Next Step8"/>
    <link text="Next Step9"/>
    <link text="Next Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children and value=5"/>
    <train value="5">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Active Step5"/>
    <link text="Next Step6"/>
    <link text="Next Step7"/>
    <link text="Next Step8"/>
    <link text="Next Step9"/>
    <link text="Next Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children and value=6"/>
    <train value="6">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Visited Step5"/>
    <link text="Active Step6"/>
    <link text="Next Step7"/>
    <link text="Next Step8"/>
    <link text="Next Step9"/>
    <link text="Next Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children and value=7"/>
    <train value="7">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Visited Step5"/>
    <link text="Visited Step6"/>
    <link text="Active Step7"/>
    <link text="Next Step8"/>
    <link text="Next Step9"/>
    <link text="Next Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children and value=8"/>
    <train value="8">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Visited Step5"/>
    <link text="Visited Step6"/>
    <link text="Visited Step7"/>
    <link text="Active Step8"/>
    <link text="Next Step9"/>
    <link text="Next Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children and value=9"/>
    <train value="9">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Visited Step5"/>
    <link text="Visited Step6"/>
    <link text="Visited Step7"/>
    <link text="Visited Step8"/>
    <link text="Active Step9"/>
    <link text="Next Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children and value=10"/>
    <train value="10">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Visited Step5"/>
    <link text="Visited Step6"/>
    <link text="Visited Step7"/>
    <link text="Visited Step8"/>
    <link text="Visited Step9"/>
    <link text="Active Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children. User returned to step 9 (value=9, maxVisited=9)"/>
    <train value="9" maxVisited="9">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Visited Step5"/>
    <link text="Visited Step6"/>
    <link text="Visited Step7"/>
    <link text="Visited Step8"/>
    <link text="Active Step9"/>
    <link text="Visited Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children. User returned to step 5 (value=5, maxVisited=9)"/>
    <train value="5" maxVisited="9">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Active Step5"/>
    <link text="Visited Step6"/>
    <link text="Visited Step7"/>
    <link text="Visited Step8"/>
    <link text="Visited Step9"/>
    <link text="Visited Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 6 children. All children disabled except active step"/>
    <train value="4">
    <contents>
    <link text="Disabled Step" disabled="true"/>
    <link text="Disabled Step" disabled="true"/>
    <link text="Disabled Step" disabled="true"/>
    <link text="Active Step4"/>
    <link text="Disabled Step" disabled="true"/>
    <link text="Disabled Step" disabled="true"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 6 steps, one step disabled"/>
    <train value="5">
    <contents>
    <link text="Visited Step"/>
    <link text="Visited Step"/>
    <link text="Visited Step"/>
    <link text="Disabled Step" disabled="true"/>
    <link text="Active Step5"/>
    <link text="Next Step"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children. Step 9 Active (value=9), Steps 11 and 4 disabled"/>
    <train value="9">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Disabled Step4" disabled="true"/>
    <link text="Visited Step5"/>
    <link text="Visited Step6"/>
    <link text="Visited Step7"/>
    <link text="Visited Step8"/>
    <link text="Active Step9"/>
    <link text="Next Step10"/>
    <link text="Disabled Step11" disabled="true"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children. Step 9 Active (value=9), Steps 10 and 5 disabled"/>
    <train value="9">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Disabled Step5" disabled="true"/>
    <link text="Visited Step6"/>
    <link text="Visited Step7"/>
    <link text="Visited Step8"/>
    <link text="Active Step9"/>
    <link text="Disabled Step10" disabled="true"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children. Step 9 Active (value=9), Steps 10 and 11 and 4 and 5 disabled"/>
    <train value="9">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Disabled Step4" disabled="true"/>
    <link text="Disabled Step5" disabled="true"/>
    <link text="Visited Step6"/>
    <link text="Visited Step7"/>
    <link text="Visited Step8"/>
    <link text="Active Step9"/>
    <link text="Disabled Step10" disabled="true"/>
    <link text="Disabled Step11" disabled="true"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children. User returned to step 5 (value=5, maxVisited=9) Step 6 is disabled"/>
    <train selectedIndex="4" maxVisited="9">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Active Step5"/>
    <link text="Disabled Step6" disabled="true"/>
    <link text="Visited Step7"/>
    <link text="Visited Step8"/>
    <link text="Visited Step9"/>
    <link text="Visited Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <!-- Beginning of tests with forms. Form names need to be unique -->
    <styledText styleClass="OraHeaderSubSub"
    text="Train inside a form with validation. value=4, formSubmitted=true, id is set"/>
    <styledText styleClass="OraTipText"
    text="Expected behavior is validation for next step will occur."/>
    <form name="myForm1a">
    <contents>
    <messageTextInput name="costCenter" required="yes"
    prompt="Cost Center"/>
    <train value="4" formSubmitted="true" id="TrainControl">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Active Step4"/>
    <link text="Next Step5"/>
    <link text="Next Step6"/>
    </contents>
    </train>
    </contents>
    </form>
    <styledText styleClass="OraHeaderSubSub"
    text="Train inside a form with validation. value=4, formSubmitted=true, id is set, unvalidated=true"/>
    <styledText styleClass="OraTipText"
    text="Expected behavior is validation for next step will *not* occur because unvalidated is set to true."/>
    <form name="myForm1b">
    <contents>
    <messageTextInput name="costCenter" required="yes"
    prompt="Cost Center"/>
    <train value="4" formSubmitted="true" id="TrainControl"
    unvalidated="true">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Active Step4"/>
    <link text="Next Step5"/>
    <link text="Next Step6"/>
    </contents>
    </train>
    </contents>
    </form>
    <styledText styleClass="OraHeaderSubSub"
    text="Train inside a form with validation. value=4, formSubmitted=false, destination set"/>
    <styledText styleClass="OraTipText"
    text="Expected behavior is validation will not occur. Destination will be used in url."/>
    <form name="myForm1c">
    <contents>
    <messageTextInput name="costCenter" required="yes"
    prompt="Cost Center"/>
    <train value="4" formSubmitted="false"
    destination="http://bali.us.oracle.com/cabo/baja/release.html"
    id="TrainControl">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Active Step4"/>
    <link text="Next Step5"/>
    <link text="Next Step6"/>
    </contents>
    </train>
    </contents>
    </form>
    <styledText styleClass="OraHeaderSubSub"
    text="Train inside a form with validation. value=4, formSubmitted=false, destination not set"/>
    <styledText styleClass="OraTipText"
    text="Expected behavior is no links will show"/>
    <form name="myForm2">
    <contents>
    <messageTextInput name="costCenter" required="yes"
    prompt="Cost Center"/>
    <train value="4" formSubmitted="false">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Active Step4"/>
    <link text="Next Step5"/>
    <link text="Next Step6"/>
    </contents>
    </train>
    </contents>
    </form>
    <styledText styleClass="OraHeaderSubSub"
    text="Train outside a form with validation. formName is set. id is set"/>
    <styledText styleClass="OraTipText"
    text="Expected behavior is formName will be used, and validation will occur"/>
    <form name="testForm">
    <contents>
    <messageTextInput name="costCenter" required="yes"
    prompt="Cost Center"/>
    </contents>
    </form>
    <train value="4" formName="testForm" id="TrainControl">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Active Step4"/>
    <link text="Next Step5"/>
    <link text="Next Step6"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with no form. destination and id set"/>
    <styledText styleClass="OraTipText"
    text="Expected behavior is train has links, destination is the base url"/>
    <train value="4"
    destination="http://bali.us.oracle.com/cabo/baja/release.html"
    id="TrainSource">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Active Step4"/>
    <link text="Next Step5"/>
    <link text="Next Step6"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="Train with 11 children and destination. User returned to step 5 (value=5, maxVisited=9)"/>
    <train value="5"
    destination="http://bali.us.oracle.com/cabo/baja/release.html"
    id="TrainSource" maxVisited="9">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Active Step5"/>
    <link text="Visited Step6"/>
    <link text="Visited Step7"/>
    <link text="Visited Step8"/>
    <link text="Visited Step9"/>
    <link text="Visited Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    <styledText styleClass="OraHeaderSubSub"
    text="subTrain Demo.
    To render a train which indicates that it is in a sub-process,
    use the train element and set the subTrain attribute to true.
    Here are a couple of examples: "/>
    <stackLayout>
    <contents>
    <styledText styleClass="OraDataText"
    text="&lt;train subTrain=&quot;true&quot; &gt;"/>
    <formattedText styleUsage="instruction" text="Train has 4 children."/>
    <train subTrain="true">
    <contents>
    <link text="Bali"/>
    <link text="Baja"/>
    <link text="Architecture"/>
    <link text="Release"/>
    </contents>
    </train>
    </contents>
    </stackLayout>
    <stackLayout>
    <contents>
    <styledText styleClass="OraDataText"
    text="&lt;train subTrain=&quot;true&quot; value=&quot;5&quot; maxVisited=&quot;9&quot;
    destination=&quot;http://www.oracle.com&quot;&gt; "/>
    <formattedText styleUsage="instruction"
    text="Train has 11 children. User returned to step 5 (value=5, maxVisited=9)"/>
    <train subTrain="true" value="5" destination="http://www.oracle.com"
    id="TrainSource" maxVisited="9">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Active Step5"/>
    <link text="Visited Step6"/>
    <link text="Visited Step7"/>
    <link text="Visited Step8"/>
    <link text="Visited Step9"/>
    <link text="Visited Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    </contents>
    </stackLayout>
    <stackLayout>
    <contents>
    <styledText styleClass="OraDataText"
    text="Same train as above, but without the subTrain attribute set (it defaults to false)"/>
    <train value="5" destination="http://www.oracle.com"
    id="TrainSource" maxVisited="9">
    <contents>
    <link text="Visited Step1"/>
    <link text="Visited Step2"/>
    <link text="Visited Step3"/>
    <link text="Visited Step4"/>
    <link text="Active Step5"/>
    <link text="Visited Step6"/>
    <link text="Visited Step7"/>
    <link text="Visited Step8"/>
    <link text="Visited Step9"/>
    <link text="Visited Step10"/>
    <link text="Next Step11"/>
    </contents>
    </train>
    </contents>
    </stackLayout>
    </contents>
    </stackLayout>
    </ctrl:content>
    <ctrl:handlers>
    <ctrl:event name="*">
    <ctrl:null/>
    </ctrl:event>
    </ctrl:handlers>
    </ctrl:page>

Maybe you are looking for

  • Where can i download adobe acrobat 9 standard

    my key is in my products on my adobe. no download link, where can i download 9 standard?

  • Changing icons works on 10.4 but not 10.3...

    hello all i was wondering if there's something different that i have to do in 10.3.9 than in 10.4.10..... i downloaded a couple of sets of icons from the Apple Downloads page....and at home (10.4.10) i can just open the folder i saved them to, and th

  • JRE System-level settings does not work - JRE1.6.30

    Good day, I need to set deployment.security.mixcode parameter to "DISABLE" within of deployment.properties configuration file. Also I wish to place the deployment.properties configuration file is not user-specific path. The default location is <User

  • Binding definition error with programmed binding classes

    Hi all, 640/NW04s/ECC5 SP14 system, I'm trying to use a programmed container->container binding class. I've created my class implementing interface IF_SWF_IFS_BIND_TRANSFORM_CONT, but when I try to put it into the binding editor, it complains with: S

  • How to move pictures from Photoshop Elements 3 to 12

    I recently got a new computer.  On the old one I had Photoshop Elements 3.0; on the new one I have PE 12.  Using Adobe's "Chat" line I asked this question and they told me it couldn't be done - I was SOL.  I can't believe there isn't some way to move