Can items in a page fragment be added to a Virtual Form?

I've got a page fragment that's included in several pages. That page fragment
contains links. I want those links to be able to bypass submittion, so I
would like to include those links in a virtual form, much the same way that
I've included the Close button.

Quite simply, the anser is no. Components contained within page fragments (or page fragments themselves) may not participate in virtual forms.

Similar Messages

  • IC_BASE, Page Fragments : root_content.htm adding custom code in standard .htm

    Hi All,
    I am adding custom code in Page Fragments : root_content.htm of bsp application : IC_BASE, for particular business purpose but after activating
    its asking to select page fragments. here its showing IC_BASE and etc.. could you pls guide me how to check which page fragment for this
    root_content.htm. and also i am adding custom code in mail.htm under page with flow logic of same bsp application. so here i am assuming page
    fragment is IC_BASE.
    Jimmi.

    Hi Jimmi,
    In General if you want to modify standard BSP component, you need to enhance the component first and then you need to enhance the particular view you want to modify. You can directly modify the .htm page in view after enhancement.
    Regards,
    Dharmakasi.

  • How can I pass a value into a page fragment?

    How can I pass a value into a page fragment?
    I am implementing four search screens. And the only thing different about them will be their backing bean.
    So I’d like to do something like have four pages, each which retrieves its appropriate backing bean, sets that bean to a variable, and then includes a page fragment which contains the generic search page code (which will make use of that variable).
    The code in the four pages would be something like this:
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:c="http://java.sun.com/jsp/jstl/core">
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <c:set var="searchPageBackingBean"
    value="#{pageFlowScope.employeeSearchPageBean}"
    scope="page"/>
    <jsp:include page="./SearchPageBody.jsff"/>
    </jsp:root>
    At this point, what I’m seeing is that the fragment page, SearchPageBody.jsff, has no visibility of the searchPageBackingBean variable, either referencing it as #{pageFlowScope.searchPageBackingBean} or just #{searchPageBackingBean}

    The following will work, assuming you are needing to access a managed bean:
    Put this in the parent page:
    <c:set var="nameOfSearchPageBackingBean"
    value="employeeSearchPageBean"
    scope="request"/>
    Put this in the child, SearchPageBody.jsff:
    <c:set var="searchPageBean"
    value="#{pageFlowScope[nameOfSearchPageBackingBean]}"
    scope="page"/>

  • Every single website, or link within a website page is being added to my location bar/address bar drop down menu. How can I stop this? This just started happening.

    Every single website url address, or url address within a website page is being added to my location bar/address bar drop down menu.
    I don't want everything added or saved in the location bar. Only urls that I used a lot used to be saved there but now every single url (and url within a url)I visit is being added to it.
    How can I stop this? This just started happening.
    I'm sure it's a simple browser setting but I've checked and nothing gives an option to control this.
    Firefox 3.0.17
    Windows XP
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.17) Gecko/2009122116 Firefox/3.0.17

    A possibility is to open the links via the right-click context menu or a middle-click in a new tab to make sure that Firefox sees them as regular links.

  • How can I do a dynamic include of a page fragment?

    I have a technical support website with a lot of simple html pages. What I want to do is hyperlink from the index page to another page, which would display these html pages as a page fragment, dynamically based on a session bean set by the hyperlink.
    I basically want to do this, if it was possible:
    <jsp:directive.include file="#{SessionBean1.pageToDisplay}"/>
    Now the FAQ's has a topic "How can I do a dynamic include of a page fragment?", which would seem to answer my question.
    But this is all it says, and it makes no sense to me. Could someone please translate? :)
    "Using a page fragment file (but using instead of the usual Creator approach) will accomplish a dynamic include."

    Here is 1 solution:
    First add this to the jsp:root tag:
    xmlns:c="http://java.sun.com/jsp/jstl/core"
    Then surround the page fragment directive with something like this:
                            <div style="position: absolute; left: 24px; top: 408px">
                                <c:if test="${SessionBean1.count > 0}">
                                    <jsp:directive.include file="testPF.jspf"/>
                                </c:if>
                            </div>

  • Css style class can't be used in Page Fragment?

    I need to use css to modify pages. When I open a page fragment and want to apply a css rule to a button, i can't find any styleClass available in popup window: Properties->Appreaance->styleClass.
    Does anyone have any idea?

    Hi,
    You are correct - there is a current limitation that we are working to fix. For now, you can manually add style parameters to the <div in the .jsp. I have also seen div id rule classes in the stylesheet e.g. div#content and then manually applied the div id="content" in the .jsp before the directive include.
    /krys
    Creator Team

  • How can I include a dynamic content in the page fragment?

    My header.jspf contains codes similar to the following in the init() method:
    Object o =getValue("#{sessionScope.username}");
    if(o!=null){
    greetingStaticText.setRendered(true);
    }else{
    greetingStaticText.setRendered(false);
    But this code is not working as expected.
    I tried the following in the jsp page, but still no use:
    <jsp:include page="../Header.jspf"/>
    Thanks.

    Before the initial render, your logic sets rendered false. Then on the postback when the user logs in, init executes (setting it false again); the static text is overwritten with the corresponding static text object from the component tree; and subsequently the action method executes (setting username in session); the page redisplays, with rendered still false. You can overcome this by setting the rendered property from your action method. Here are steps that simulate the solution:
    1. Create a property in SessionBean1 called username of type String.
    2. Drag a Page Fragment Box onto Page1. Create a fragment called Fragment1.
    3. Drag a Hyperlink onto Page1. Set its text to "Go to Login Page" and its url property to /faces/Login.jsp.
    4. Double-click to edit Fragment1.
    5. Drag a Static Text. Set its id to greetingText and its text to "Welcome, #{SessionBean1.username}!"
    6. Drag a Hyperlink. Set its id to logoutHyperlink and its text to "Logout"
    7. Double click the logoutHyperlink and use the following code:
    public String logoutHyperlink_action() {
    getSessionBean1().setUsername(null);
    greetingText.setRendered(false);
    logoutHyperlink.setRendered(false);
    return "Page1";
    8. Append the following to Fragment1.init():
    String username = getSessionBean1().getUsername();
    greetingText.setRendered(username != null);
    logoutHyperlink.setRendered(username != null);
    9. Implement these two methods as follows:
    public void setGreetingText(StaticText st) {
    boolean rendered = this.greetingText.isRendered();
    st.setRendered(rendered);
    this.greetingText = st;
    public void setLogoutHyperlink(Hyperlink h) {
    boolean rendered = this.logoutHyperlink.isRendered();
    h.setRendered(rendered);
    this.logoutHyperlink = h;
    10. Create a new page called Login.
    11. Drag a Page Fragment Box onto Login.jsp (choose Fragment1.jspf).
    12. Drag a Text Field and bind its text property to #{SessionBean1.username}
    13. Drag a button. Set its id to loginButton and its text to "Login"
    14. Double-click loginButton and use the following code:
    public String loginButton_action() {
    ((UIComponent)getValue("#{Fragment1.greetingText}")).setRendered(true);
    ((UIComponent)getValue("#{Fragment1.logoutHyperlink}")).setRendered(true);
    return "Page1";
    15. Open Page Navigation and create an outcome called "Page1" that goes from Login.jsp to Page1.jsp.
    16. Run the app.
    17. Page1 displays with no greeting text. Click the "Go to Login Page" link.
    18. Type "misty" in the text field and click the Login button.
    19. Page1 displays, this time with the greeting text "Welcome, misty!" and a Logout hyperlink.
    20. Click the Logout hyperlink to logout. Page1 displays, this time with no greeting text or Logout hyperlink.

  • Can I reference page-flow bean from a bounded-task-flow page-fragment?

    I have a view activity implemented as page fragment in my bounded task flow.
    I declare a page-flow scope managed-bean in adfc-config.xml to do some initialization for the bounded-task-flow:
    <managed-bean id="__23">
    <managed-bean-name id="__22">TaskFlowBean</managed-bean-name>
    <managed-bean-class id="__21">view.backing.TaskFlowBackingBean</managed-bean-class>
    <managed-bean-scope id="__20">pageFlow</managed-bean-scope>
    </managed-bean>
    In my bounded task flow, the default activity is a method-call activity which call the page-flow bean method
    <method-call id="initFlow">
    <method>#{pageFlowScope.TaskFlowBean.initFlow}</method>
    <outcome id="__27">
    <fixed-outcome>showPanel</fixed-outcome>
    </outcome>
    </method-call>
    But JDeveloper (11.1.1.2) show a warning "Refereneed pageFlowScope not found" at the "Diagram" view of the flow definition.
    The fixed outcome of the default activity is to render a page-fragment which also reference the page-flow scope bean method getPanelTitle():
    <af:panelBox text="#{pageFlowScope.TaskFlowBean.panelTitle}" id="pb1">
    <f:facet name="toolbar"/>
    </af:panelBox>
    At runtime, the page fragment was rendered properly except the panel box title is missing. No other error is reported
    When I debugged the application, the bean methods initFlow() and getPanelTitle() didn't get call as the program didn't stop at the breakpoint set in the bean methods.
    The page fragment was rendered properly except the panel box title is missing.
    When I change the scope to backing bean, both initFlow() and getPanelTitle() get called but under a different backing bean.
    As the bean attributes set by initFlow() were not no longer set when getPanelTitle() was invoked even though the methods were invoked in the correct order.
    Why can't I use a page-flow scope bean within the bounded task flow?
    On further debugging, I noticed the bean was not created when it is set to be page-flow scope. I put a debug message in the constructor... never get called.
    When should a page-flow scope bean be created to be accessible on entry to a bounded task flow?
    Edited by: Pricilla on Apr 29, 2010 3:16 PM

    Please check the scope of the pageFlow from the manual.
    pageFlowScope is only available for the pages/views in that taskflow and not in the included taskflows.

  • Adding one item on many pages/many media

    Is it possible to create one item and have it published in different places? Sometimes the same item should be published on different pages. We don't want to copy it, because then the editing of the item has to be done on every page.
    Sometimes the same item should be published both on the intranet site and on the extranet site and on a palm, but it must be this only item and not three different copies. Is there a way?
    Best regards
    Eva Svensson, Oracle

    You can publish the page (folder in 3.0) the item is on as a portlet. The item (and other items on the page) can then be published in multiple places.

  • Attention Shay/Frank: Adding af:goLink tags on a page fragment dynamically

    Hello ADF guru's!
    I have a need to add <af:goLink> tags dynamically on a jsff page fragment. This page fragment will be a view activity on a taskflow which needs to be packaged as a ADFLibrary. I am wondering if this can be done.
    Any help will be appreciated.
    Thx.
    Lalit
    Edited by: Lalit Arora on Sep 23, 2009 2:47 PM

    In a backing bean you can use something like:
    containercomponent.getChildren().add(newComponent)

  • Display items in designated page

    This is sooo basic, but being new to Portal, I just can't figure it out:
    The case is, I have a page with news-items that users can add and edit. Only the last 5 or 10 items off course, because there maybe hundreds. I used a "custom search" portlet, that only shows the display name and description of the item. One can click the display name to view the item itself.
    But this only shows the item text, without a surrounding page. I already found a procedure SHOW_PAGE_FOR_ITEM, but this shows the item on the page with the other hundreds of items. That's no good.
    So, Is it possible to view an item inside a designated page or template, as well in view and edit mode? Or do you really have to place each item on a seperate subpage (which I can't believe)?
    Adding, viewing, searching and editing of news items should be standard functionality, that is used everywhere around, but I haven't figured it out yet how to implement it in Oracle Portal 10g.
    Can anybody give me a clue?

    Ton,
    I think you refer to SHOW_PAGE_FOR_ITEM in
    http://www.oracle.com/technology/products/ias/portal/pdf/cm_search_10g_associated_functions_search.pdf
    The procedure has a site_id and a page_id, so you could point your results to any page you want.
    I you alter the URL and add the itemid as a parameter, you can point the link to a page which you can design like you want. You can create a portlet on that page which accepts the itemid as a parameter. The portlet should display the item contents, using the content management views.
    Hth,
    Ton

  • Panel tabbed is not working in the page fragments used in a bounded task fl

    Hi,
    I tried creating a simple page fragment with a panel tabbed as below
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core">
    <af:panelStretchLayout id="psl1">
    <f:facet name="center">
    <af:panelTabbed id="pt1">
    <af:showDetailItem text="showDetailItem 1" id="sdi1"/>
    <af:showDetailItem text="showDetailItem 2" id="sdi2"/>
    <af:showDetailItem text="showDetailItem 3" id="sdi3"/>
    </af:panelTabbed>
    <!-- id="af_one_column_stretched" -->
    </f:facet>
    </af:panelStretchLayout>
    </jsp:root>
    Then in an unbounded task flow, I added the bounded task flow which is just created above. when I run this page, the page is loaded but the tabs doesn't switch. When I click on the other tabs, it doesnt change, it is always active only in the first tab.
    Is this a bug in adf, or am I missing something?
    Can someone please help?
    Thanks,
    Sudarsan M

    Hi Vinod,
    Thanks for responding.
    I want a page fragment with tabbedPanel to be loaded in my dynamic region. As I am facing this issue, I tried very simple example of creating a page fragment with a tabbedPanel of 3 tabs.
    1. added this page fragment in an bounded task flow.
    2. In the unbounded task flow(adfc-config.xml) added a view with the some jspx page and then added the bounded task flow created above as a static region in this jspx page.
    3. When I run this view, I can see the page loaded with all the tabs in the page frament.
    4. By default the first tab is selected, but when I tried to click on the other tabs, there is no response. It still stays in the first tab only.
    Thanks,
    Sudan

  • Printing Report via page fragment instead of .jspx

    Hi, I am using Jasper reports for printing the report for each selected patient in a table in my software, When I call the printing method from a .jspx button it works, but when i do the same work in a page fragment than my report did not run. Anyone can help me Please? (Jdeveloper studio 11.1.2.0.0) and Ireport (4.0.1)

    Code for page fragment:
    <?xml version='1.0' encoding='UTF-8'?>
    <ui:composition xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core">
    <af:outputText value="Print Report" id="ot1"/>
    <af:commandButton text="print appointment" id="cb1" action="#{JasperBeanPrinting.runReportAction}"
    partialSubmit="true"/>
    <af:panelCollection id="pc1">
    <f:facet name="menus"/>
    <f:facet name="toolbar"/>
    <f:facet name="statusbar"/>
    <af:table value="#{bindings.Patients.collectionModel}" var="row" rows="#{bindings.Patients.rangeSize}"
    emptyText="#{bindings.Patients.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.Patients.rangeSize}" rowBandingInterval="0"
    filterModel="#{bindings.PatientsQuery.queryDescriptor}"
    queryListener="#{bindings.PatientsQuery.processQuery}" filterVisible="true" varStatus="vs"
    selectedRowKeys="#{bindings.Patients.collectionModel.selectedRow}"
    selectionListener="#{bindings.Patients.collectionModel.makeCurrent}" rowSelection="single" id="t1">
    <af:column sortProperty="#{bindings.Patients.hints.PatientId.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.PatientId.label}" id="c1">
    <af:outputText value="#{row.PatientId}" id="ot2">
    <af:convertNumber groupingUsed="false" pattern="#{bindings.Patients.hints.PatientId.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.Dob.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.Dob.label}" id="c2">
    <f:facet name="filter">
    <af:inputDate value="#{vs.filterCriteria.Dob}" id="id1">
    <af:convertDateTime pattern="#{bindings.Patients.hints.Dob.format}"/>
    </af:inputDate>
    </f:facet>
    <af:outputText value="#{row.Dob}" id="ot3">
    <af:convertDateTime pattern="#{bindings.Patients.hints.Dob.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.ContactNo.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.ContactNo.label}" id="c3">
    <af:outputText value="#{row.ContactNo}" id="ot4"/>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.Gender.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.Gender.label}" id="c4">
    <af:selectOneChoice value="#{row.bindings.Gender.inputValue}" label="#{row.bindings.Gender.label}"
    required="#{bindings.Patients.hints.Gender.mandatory}"
    shortDesc="#{bindings.Patients.hints.Gender.tooltip}" readOnly="true" id="soc1">
    <f:selectItems value="#{row.bindings.Gender.items}" id="si1"/>
    </af:selectOneChoice>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.Address.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.Address.label}" id="c5">
    <af:outputText value="#{row.Address}" id="ot5"/>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.PatientName.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.PatientName.label}" id="c6">
    <af:outputText value="#{row.PatientName}" id="ot6"/>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.DistrictName.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.DistrictName.label}" id="c7">
    <af:outputText value="#{row.DistrictName}" id="ot7"/>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.ProvinceName.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.ProvinceName.label}" id="c8">
    <af:outputText value="#{row.ProvinceName}" id="ot8"/>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.Status.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.Status.label}" id="c9">
    <af:outputText value="#{row.Status}" id="ot9"/>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.Unit.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.Unit.label}" id="c10">
    <af:outputText value="#{row.Unit}" id="ot10"/>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.Rank.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.Rank.label}" id="c11">
    <af:outputText value="#{row.Rank}" id="ot11"/>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.IdCard.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.IdCard.label}" id="c12">
    <af:outputText value="#{row.IdCard}" id="ot12"/>
    </af:column>
    <af:column sortProperty="#{bindings.Patients.hints.ArmyNo.name}" filterable="true" sortable="true"
    headerText="#{bindings.Patients.hints.ArmyNo.label}" id="c13">
    <af:outputText value="#{row.ArmyNo}" id="ot13"/>
    </af:column>
    </af:table>
    </af:panelCollection>
    </ui:composition>
    Code of Printing Bean:
    import java.io.ByteArrayOutputStream;
    import java.io.InputStream;
    import java.sql.Connection;
    import java.util.HashMap;
    import java.util.Map;
    import javax.faces.context.FacesContext;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import javax.sql.DataSource;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.type.WhenNoDataTypeEnum;
    import net.sf.jasperreports.engine.util.JRLoader;
    import oracle.adf.model.BindingContext;
    import oracle.adf.model.binding.DCIteratorBinding;
    import oracle.binding.BindingContainer;
    import java.io.File;
    import java.util.HashMap;
    import net.sf.jasperreports.engine.JRException;
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.*;
    import net.sf.jasperreports.engine.util.JRLoader;
    import net.sf.jasperreports.engine.util.JRSaver;
    import net.sf.jasperreports.engine.xml.*;
    import net.sf.jasperreports.engine.design.JasperDesign;
    import net.sf.jasperreports.engine.export.JRPdfExporter;
    import net.sf.jasperreports.engine.export.JRPrintServiceExporter;
    import net.sf.jasperreports.engine.export.JRPrintServiceExporterParameter;
    import net.sf.jasperreports.view.JRViewer;
    import net.sf.jasperreports.view.JasperDesignViewer;
    public class JasperBeanPrinting
    public JasperBeanPrinting()
    public String runReportAction()
    DCIteratorBinding empIter = (DCIteratorBinding) getBindings().get("PatientsIterator");
    String empId = empIter.getCurrentRow().getAttribute("PatientId").toString();
    Map m = new HashMap();
    m.put("patientId", empId);// where employeeId is a jasper report parameter
    try
    runReport("report2.jasper", m);
    catch (Exception e)
    return null;
    public BindingContainer getBindings()
    return BindingContext.getCurrent().getCurrentBindingsEntry();
    public Connection getDataSourceConnection(String dataSourceName)
    throws Exception
    Context ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup(dataSourceName);
    return ds.getConnection();
    private Connection getConnection() throws Exception
    return getDataSourceConnection("jdbc/pmrDS");// datasource name should be defined in weblogic
    public ServletContext getContext()
    return (ServletContext)getFacesContext().getExternalContext().getContext();
    public HttpServletResponse getResponse()
    return (HttpServletResponse)getFacesContext().getExternalContext().getResponse();
    public static FacesContext getFacesContext()
    return FacesContext.getCurrentInstance();
    public void runReport(String repPath, java.util.Map param) throws Exception
    Connection conn = null;
    try
    HttpServletResponse response = getResponse();
    ServletOutputStream out = response.getOutputStream();
    response.setHeader("Cache-Control", "max-age=0");
    response.setContentType("application/pdf");
    ServletContext context = getContext();
    InputStream fs = context.getResourceAsStream("/reports/" + repPath);
    JasperReport template = (JasperReport) JRLoader.loadObject(fs);
    template.setWhenNoDataType(WhenNoDataTypeEnum.ALL_SECTIONS_NO_DETAIL);
    conn = getConnection();
    JasperPrint print = JasperFillManager.fillReport(template, param, conn);
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    JasperExportManager.exportReportToPdfStream(print, baos);
    out.write(baos.toByteArray());
    out.flush();
    out.close();
    FacesContext.getCurrentInstance().responseComplete();
    catch (Exception jex)
    jex.printStackTrace();
    finally
    close(conn);
    public void close(Connection con)
    if (con != null)
    try
    con.close();
    catch (Exception e)
    Edited by: 967034 on Apr 16, 2013 6:27 AM

  • JSF Page Fragment based on Oracle Dynamic Tabs Shell Template

    Hi
    JDeveloper 11.1.1.6
    Can we create a JSF Page Fragment (jsff) based on an Oracle Dynamic Tabs Shell Template ?
    I tried to create this jsff page and added in a bounded taskflow.
    In the create jsff wizard, it will allow us to select the Oracle Dynamic Tabs Shell Template, but when trying to use this taskflow in the another page (jspx), it is giving the following exception.
    javax.faces.FacesException: javax.el.PropertyNotFoundException: Target Unreachable, 'tabContext' returned null
    at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:261)
    at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:222)
    Basically the reason why I am trying to do like this is that I have to simply drop the taskflow in a page as a region.
    The ViewController project code will only be created as an ADF Library Jar File and be used in other projects
    (it will not be deployed as a web application (war))
    More about the requirement:
    I have a BPM Application in which I have 2 ADF ViewController projects, one for only BPM Human Task related UI and another for only ADF functionality.
    I am writing a custom BPM Workspace kind of ADF Application and want the UI to be based on the Oracle Dynamic Tab Shell Template.
    ADF ViewController project is deployed only as a ADF Library Jar file.
    Another advantage I can have is I can test my ADF code within JDeveloper.
    (If I create a jspx page based Oracle Dynamic Tab Shell Template in the BPM Human Task Related UI project, I will not be able to run it in JDeveloper and test it.
    Otherwise I have to deploy to the SOA environment each time I make a change)
    Thanks for any help.
    Sameer

    Hi,
    the dynamic tab shell template can only be used with top level (JSPX) pages (in 12c also with Facelet pages). There is no configuration for templates that would make the JDeveloper IDE to not show the template of the selected page is a fragment.
    Frank

  • Preview can not find linked pages

    When previewing my index page I click on the links created
    using flash buttons and they can not find the pages on my hard
    drive. The flash buttons are incorporated into my basic template as
    a library item. When The error occurs the page address that is
    being looked for is shown as follows:
    file:///C:/KECSITE2/kecpartyfiles/Moonwalk-Bouncehouse-rental-Massachusetts-Connecticut/bo uncers_moonwalks.html
    If I click on the same link while previewing other pages ,
    the page is found and the address is as follows:
    file:///C:/KECSITE2/kecpartyfiles/KECPARTY%20SITE%20FILES/Moonwalk-Bouncehouse-rental-Mass achusetts-Connecticut/bouncers_moonwalks.html
    the page is displayed.
    all the regular html links work when previewing on all pages
    and there are no broken links found when I check links site wide.
    and the links both flash and html all work when published. This
    only started when I added the flash buttons as links.
    Is it possible I changed the way the preview works?

    suggestion one:
    Go into dreamweaver Preferences->Preview in Browser
    put a checkmark in "use temp files for preview"
    Suggestion Two: Do Not Use Flash Buttons.
    Just don't
    there are ten possible reasons this isn't working. If you
    just used text
    links to the other pages, there wouldn't only be two possible
    reasons it
    isn't working.
    again- suggest you don't use Flash Buttons or Flash Text.
    There's a reason adobe finally listened to us and removed
    Flash Text and
    Flash Buttons from CS4.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

Maybe you are looking for

  • Applications and Games look ZOOMED in

    I recently upgraded from an out 8900 Curve to a 9300 curve, and now when I try to run some of the applications and games I brought over (using the desktop manager) they are all zoomed in (or running in an incorrect resolution).  Please help! Thanks!

  • Iphone only sending 10 second voice messages in apps?

    Hello, I have tried searching the internet of course; but only turned up a bunch of people having the same problem as me but no solution. I have an iphone 5s and for some reason when I use any App that allows me to send voice messages it stops record

  • Urgent - JMS adapter

    Hi, How do we set-up transport level security (using encryption) when the message is sent from XI to MQ Series using receiver JMS adapter? Thanks, Vatsala.

  • Encore's Cancelation & will not work with CC Dynamic Link Products

    Adobe has aparently canceled development on Encore. I have just upgraded to thier Creative Cloud and discovered that Encore will not connect with Premiere or AE through Dynamic Link. I'm in the Video Production business, my clients & I still very muc

  • What is the other files?

    Hello I got quite a huge problem. I have 82,24 GB of other files on my hardrive. I'm dying to know what it is. Please somebody help me.