GetQuery within UIX

I can get what my where clause is set to by executing the following:
<invoke method="getWhereClause"
javaType="oracle.jbo.ViewObject"
instance="${bindings.Datadescription.viewObject}"
result="${sessionScope.MyWhereClause}" />
I would like to get the complete SQL including FROM, WHERE and ORDER BY clause together in a single statement. I tried the following and received an error.
<invoke method="getQuery"
javaType="oracle.jbo.ViewObject"
instance="${bindings.Datadescription.viewObject}"
result="${sessionScope.MyWhereClause}" />
The error I get is as follows:
oracle.jbo.InvalidOperException: JBO-25048: Operation getQuery is invalid for a working set view object.
Does anyone have any ideas on how I can make this work?
Thanks in advance, ED

Hi Jancia,
It looks correct to me. I mocked up a test case that works, so maybe you can try it and it will help you figure out what you are doing wrong:
includeTest.uix:
<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:content>
    <dataScope>
      <contents>
   <stackLayout>
    <contents>
     <header text="including InlineTest">
      <contents>
       <include  node="${ctrl:parsePage(uix, 'inlineTest')}"/>
      </contents>
     </header>
    </contents>
   </stackLayout>
     </contents>
           <provider>
             <data name="rootPage">
               <inline headerText="Using inline" linkText="Click">
                <Rid name="CountryCodeRid" />
               </inline>
             </data>
      </provider>
     </dataScope>
  </ctrl:content>
</ctrl:page>inlineTest.uix
<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:content>
           <button   text="${uix.data.rootPage.Rid.name}"/>
  </ctrl:content>
</ctrl:page>

Similar Messages

  • Databinding within UIX include pages

    I have a uix file (call it browseTable.uix) with this line of code:
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.CountryCodeView1,'CountryCodeRid')}"/>
    But I'm trying to make this uix file into an include file, so I want to replace the references to "CountryCodeView1" and "CountryCodeRid"
    with databound values that will be supplied by the including page.
    So here's what I did
    1) The including page has this inline data provider:
    <data name="rootPage">
    <inline>
    <VO name="CountryCodeView1"/>
    <Rid name="CountryCodeRid"/>
    </inline>
    </data>
    and includes the browseTable.uix like this:
    <include node="${ctrl:parsePage(uix,' browseTable')}"/>
    2) and in the included page (browseTable.uix), I tried changing the line
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.CountryCodeView1,'CountryCodeRid')}"/>
    to be
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings[uix.data.rootPage.VO.name], '${uix.data.rootPage.Rid.name}')}"/>
    But the page isn't displaying the databound values. The documentation said that included pages can see data providers defined in the including page, so perhaps my syntax is wrong? I tried databinding a simple styledText element <styledText text="${uix.data.rootPage.VO.name}"/> in the included page to display inline data defined in the including page but that didn't work either (nothing was displayed).
    Any help would be appreciated!
    Thanks
    J
    PS I'm using JDeveloper 9.0.5.2

    Hi Jancia,
    It looks correct to me. I mocked up a test case that works, so maybe you can try it and it will help you figure out what you are doing wrong:
    includeTest.uix:
    <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:content>
        <dataScope>
          <contents>
       <stackLayout>
        <contents>
         <header text="including InlineTest">
          <contents>
           <include  node="${ctrl:parsePage(uix, 'inlineTest')}"/>
          </contents>
         </header>
        </contents>
       </stackLayout>
         </contents>
               <provider>
                 <data name="rootPage">
                   <inline headerText="Using inline" linkText="Click">
                    <Rid name="CountryCodeRid" />
                   </inline>
                 </data>
          </provider>
         </dataScope>
      </ctrl:content>
    </ctrl:page>inlineTest.uix
    <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:content>
               <button   text="${uix.data.rootPage.Rid.name}"/>
      </ctrl:content>
    </ctrl:page>

  • No chart/graph functionality in UIX?

    What functionality is currently available within Jdeveloper 10g 9.0.5.1 to build charts/graphs against a 10g database within a UIX page?
    The Jdeveloper docs says that the the built-in graph component (a part of BI Beans) is not available for UIX - only for JSP:
    From the docs:
    "Easy to integrate with custom applications - Since a graph component is reusable, you can add it to custom applications, including Oracle ADF web applications (currently JSP pages only) and ADF JClient applications."
    What did Oracle use to add charts/graphs to OEM10g ( a UIX application)?
    If we were to use a third-party java chart class and add the class as a component data source, how should we link user input, say from a text box on a UIX page, to the java class? For example, the user browses to a UIX page, types in ORCL, and the bottom half of the UIX page refreshes with a dynamically produced stock chart of Oracle's price history pulled from a 10g database. Or the java class returns a chart of the same data within a read-only table all within a UIX page.

    Thanks, but the issue is including a dynamically generated chart - especially one based on input in the UIX page, not simply including a static image.
    According to the UIX docs, includes do not allow parameters to be set.
    If a user types "ORCL" into a text box, how may my java class receive/obtain that value in order to use it within its charting code? I'm trying to link values on the UIX page to the java classes extending UIX. After reading the UIX docs, I remain unsure how to make this happen.
    I can use a datascope with the method element to bind a UINode to my java class - but how to send parameter(s) to the java class to alter what it returns to the databound UINode?
    I'd like to do something like this:
    (1) Drop into the page a MessageChoice.
    (2) Send the user-selected value of the MessageChoice to a java class bound to a UINode through a datascope - or have the class itself grab the MessageChoice value.
    (3) The class returns a chart generated using the value of the MessageChoice.
    kind of like this:
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
    <provider>
    <data name="stockChart">
    <method class="yourpackage.ChartDemo" method="getTheChart(VALUE.OF.MESSAGECHOICE)"/>
    </data>
    </provider>
    <contents>
    <image image="${uix.data.stockChart.theChart}"/>
    </contents>
    The seeming lack of any chart/graph functionality within UIX seems like a big loss.
    Does anyone know how Oracle is producing charts/graphs in OEM 10g on UIX pages?

  • ADF UIX Struts and the BajaContext, Page, and PageEvent

    Hi,
    I'm hoping someone can point me to the right piece of documentation, but I can't seem to figure out how to build the link between 1) the new ADF bindings and the UIX controller event handler objects such as the BajaContext and 2) a UIX event handler and the ADF bindings.
    We used the ServletBindingUtils object to gain a handle on BC4J objects within UIX event handlers. To get the application module, we'd use getApplicationModule and pass in the BajaContext object. Or, the BindingContext, but this context is the oracle.cabo.data.jbo.bind.BindingContext, not oracle.adf.model.BindingContext.
    Also, the opposite question remains on how does one obtain a handle the Page, PageEvent, and BajaContext from the struts side, from say the DataActionContext?
    If there is no link (or not one easily obtained) are there plans to provide one, or are these two controller mechanisms to remain separate?
    Thanks much,

    I don't know if this will help:
    http://helponline.oracle.com/jdeveloper/help/state/content/navSetId.jdeveloper/navId.4/vtAnchor.handlingEvents/vtTopicFile.jdeveloper%7Cuixhelp%7Cuixdevguide%7Cintroducingbaja%7Ehtml/
    There is a snippet to finding the BajaContext off of the rendering context:
    BajaContext bajaContext = BajaRenderingContext.getBajaContext(context);
    I'm not sure if something similar can be done with the ActionContext or not.
    Brad

  • UIX XML BC4J Choice

    Adam, In a previous thread In cactus, it has problem to generate report you mentioned that in order to implement a Choice within UIX/XML/BC4J one would have to write some code to do it. Specifically,
    1. Implement the oracle.cabo.ui.data.DataObjectList interface to wrap up the results of a BC4J query ...
    2. Write a MethodDataProvider ....
    3. Access the Method and display the Choices.
    Can you JDEV guys post a WORKING example of how to do it?
    An "EDIT.UIX" page where the USER makes a selection from the drop-down-list (Choice) and then updates the record with that selection would be nice.
    Bill G...

    Beautiful!
    I'll will look at implementing this over the weekend. I made a decision to temporarily go with UIX-JSP since I did not know how to implement a "UIX XML BC4J Choice".
    Now that you've delivered it I should be able to convert some of my UIX-JSP apps to UIX/XML.
    Thank You Good Buddy! (Think truck driver accent)
    Bill G...

  • Customizing ADF Faces Look & Feel. Some questions & suggestions

    Hi everybody,
    We are developing an application with ADF Faces using JHeadStart. For the moment, I am studying the way we must modify the JHS templates to adapt each element to our needs.
    As it's told in the JHeadStart Developer's Guide, there are two ways to customize Look & Feel:
    1) Modifying the templates
    2) ADF Skinning
    I'm using both methods, but I feel that thay are not good enough to adapt the L&F to our customer requirements.
    My main problem now is in the ADF Table customization. I want to use ADF Table because it offers us a lot of features that are not in the jsf table (the selection column, the table overflow...), and is very usefull combined with the generated JHS code. But at the same time, it doesn't offer a lot of functionality in the look & feel customization. Using JSF Table, I can set the CSS style for headers, rows, columns, the table, I can set the border, cellspacing and cellpadding. But I cannot do
    any of these thing (or at least, I don't see how) with the ADF Table.
    Our customer (a government) have a strict definition of the look & feel of his web applications. They want we use their CSS styles definition file, so they can modify at once the Look & Feel of all their applications. Modifying the L&F through skinning generate other styles, not use the style classes in our CSS (o so I think).
    So, the questions:
    1) There is any way to set the suitable styles for the ADF Table components (headers, rows)?
    1bis) Why, If I have defined a new skin, with only just a few selectors, some styles from oracle are applied? Maybe because the render kit in the 'adf-skins.xml' is "oracle.adf.desktop"? If it is true, how can I make that they are not used, I must implement a render kit or can I use another existent?
    2) Can I decide how looks the select column (for example a button instead of a radio button)? Can I decide where does it goes (right or left)?
    3) There is any way to hidden the text Show/Hide of the showDetail in the table (the tableOverflow), as I can change the icons through skinning? If it is not possible, How can I overwrite the text. I need it in Catalan, but it is shown in English for this locale. Where is the message bundle I should overwrite?
    4) There is any way to force a tree to start fully expanded?
    5) There is anywhere documentation about the javascript functions used in ADF and their meaning? I think for example in the previous question. If I knew which javascript function I should call for expand the tree and its parameters, I could put the call in the onload event of the body.
    6) I use a selectInputDate. I have skinned the launch-icon, and I would like to do a similar thing in the chooseDate that is opened in a new window. But It seems not to be affected for my skinning directives (if I put a chooseDate in the same page, its L&F follow the skinning rules I've defined). I don't know if this dialog is an ADF feature or a JHS generated feature.
    7) There is any way to keep unmodified the id I've choosed for a component? (I mean, an inputText with id="hello" in a form with id="form" will have in the HTML an id = "form:hello", but I would like it to be simply 'hello')
    8) How can I control the position and the size of a dialog (the chooseDate dialog or a dialog I've created)? In the cases I've been testing, it seems the dialog is forced to resize depending on the content. I would like to know if I can establish a fixed size.
    9) There is any way to open a non-modal dialog? (which I could keep open at the same time that another instance of the same dialog)
    For the moment, I think I have no more question. But give me time.... :-D
    The suggestion I've to do is basically more flexible components for a better customization (for example, the styles settings I've talked about previously). ADF components are nice and powerful, but I think they should generate pages that follow the tendencies in the web development: tableless pages (I cannot understand the utility of the objectSpacer existing the margins), use of CSS for layout...
    Any answer, comment or suggestion will be welcome.
    Carles.
    Message was edited by:
    cbios

    I have been able to make the UIX 2.2 and ADF Faces LAF look near identical by updating the oracle-desktop.xss file within UIX 2.2 as follows
    <!-- Change the accent color ramp to tan -->
    <style name="DarkAccentBackground">
    <!--<property name="background-color">#cccc99</property>-->
    <property name="background-color">#d2d8b0</property>
    </style>
    There are still some differences:
    1) A black line appears on the ADF Faces on the 'menu1' facet selected tab below the text. DON'T KNOW HOW TO REMOVE THIS FROM ADF Faces or add it to UIX 2.2!!!
    2) In UIX 2.2 a bulleted list uses the HTML <li> tag. In ADF Faces it doesn't use the HTML <li> tag rather it constructs the bulleted list using lower level HTML tags with the 'bullet' becoming an image, in my browser this means the disc is smaller in Faces. The motivation for this change I think is explained via this post. Since I have no control over how this specific HTML tag is rendered it forces me to replace the /adf/images/bltdscn.gif file in adf-faces-impl.jar with a larger disc!
    http://www.thescripts.com/forum/thread96839.html
    May update this again if there are other things I notice.

  • Can I use stylesheets to create multiple button styles?

    I am trying to create a custom look-and-feel within UIX to get it as close as possible to
    our existing application's look-and-feel.
    As part of this, I customized the UIX button by overriding the following named style:
    ButtonServerText
    and also by providing my own icons for:
    buttonStart
    buttonEnd
    buttonTopBackground
    buttonBottomBackground
    The good news is that I was able to get the button component to look exactly like our existing
    application buttons.
    The bad news is that we have different types of buttons in our application
    for different purposes. (i.e. the image used for the button can be completely different based on the context e.g.
    yellow button for important actions and light-blue buttons for secondary actions)
    It seems like there is no way in which I can use this stylesheet mechanism to create different types of buttons
    and use them within my application. (sometimes different types of buttons can appear on the same page)
    Please let me know if there is a way.
    This is in fact a general question regarding overriding a stylesheet for customizing look-and-feel.
    Lets say I customize the "contentContainer" component using the stylesheet. This change would then be global.
    But I do want to have different types of contentContainers in the application. I would be forced to create my own custom
    UIX elements similar to contentContainer and write my own renderers.
    (I know contentContainer does have the light, medium and dark styles. I used this just as an example.)
    Please let me know what my options are.
    Thanks,
    Jayesh Kapoor

    Hi Jayesh -
    The good news is that I was able to get the button
    component to look exactly like our existing
    application buttons.Cool - I'm glad to hear you were able to get this working!
    The bad news is that we have different types of
    buttons in our applicationRight. This is a fundamental limitation of our look and feel customization functionality - we only support global customizations, not instance-specific customizations. I agree that there are many cases where instance-level customization would be useful, but this just instance supported yet.
    The only solution that I can think of for your button dilemma would be to use static images. It's pretty easy to wire up an image to behave like a button - just embed the image in a link and use <fireAction> as the link's primaryClientAction.
    Obviously, the downside of this approach is that you need to create the button images manually - which also isn't ideal if you are planning to translate your applications. One possible solution here might be to use UIX to pre-generate your button images. The idea would be to create custom LAFs for each style of button, then create a UIX page for each button style, including <button> instances for each translated value. Then, you could configure UIX to run in the desired look and feel, hit the corresponding page, and UIX will generate the required buttons into your image cache. Again, not ideal, but this might be easier than creating the buttons by hand.
    This is in fact a general question regarding
    overriding a stylesheet for customizing
    look-and-feel.
    Lets say I customize the "contentContainer" component
    using the stylesheet. This change would then be
    global.
    But I do want to have different types of
    contentContainers in the application. I would be
    forced to create my own custom
    UIX elements similar to contentContainer and write my
    own renderers.Right - this is a generic problem. But for some components, like content containers, an easier solution might be to leverage UIX's templating mechanism. Remember, you can embed arbitrary HTML contents in a UIX page/template by setting the namespace to "http://www.w3.org/TR/REC-html40". You can then reference these templates from your other UIX contents as if they were in fact UIX components. I'd recommend that you explore UIX's template support to see if this will meet your needs.
    Andy

  • Can I include my own style definition in a .xss file for a custom laf?

    I am trying to create a custom look-and-feel within UIX to get it as close as possible to
    our existing application's look-and-feel.
    So I have an elance-laf.xml which points to an elance.xss stylesheet.
    In elance.xss, I override some of the simple laf styles.
    In addition, I also want to define my own styles.
    so elance.xss looks something like this:
    <?xml version="1.0"?>
    <styleSheetDocument xmlns="http://xmlns.oracle.com/uix/style">
    <styleSheet>
    <style name="DefaultFont">
    <property name="font-family">Courier</property>
    <property name="font-size">14pt</property>
    </style>
    <style name="ButtonServerText">
         <property name="background-color">#CEC992</property>
    </style>
    <style name="myStyle">
         <property name="background-color">#8397AF</property>
    </style>
    </styleSheet>
    </styleSheetDocument>
    The problem is that "myStyle" never makes it to the automatically generated
    cabo/styles/cache/elance-desktop-2_2_8-en-ie-6-windows.css
    Is this not allowed?
    I need this because I will be writing some custom template
    based renderers where I would want to use my own styles.
    Any help is greatly appreciated.
    Thanks,
    Jayesh Kapoor

    Hi Jayesh -
    The XSS language supports two different types of styles: named styles and selector-based styles.
    Named styles are used to define a set of style properties that are referenced by name from other styles (using the <includeStyle> element). These styles do not show up in the generated CSS style sheet - they are used to simplify the XSS style sheet definition.
    Selector-based styles are associated with a CSS selector instead of a name. These styles do show up in the generated style sheet.
    So, if you want to define a CSS style, you'll need to specify a selector-based style instead of a named style. That is, instead of:
    <style name="myStyle">You want:
    <style selector=".myStyle">Note that I added the "." prefix to your style name to indicate that it is a CSS class selector.
    Andy

  • Dataobject scope and howto set property in javabean - n00b question?

    1. I try to use my JavaBean in uix page as DataObject ( with generated adapter ).
    It works fine for geter methods to render properties but hot to set properties ( call setters )?
    2. That JavaBean calls long select method in BMP entity bean and I wonder what is a "scope" ( as it is in jsp:useBean ) of my DataObject wrapped JavaBean.

    1. I try to use my JavaBean in uix page as DataObject ( with generated adapter ).
    It works fine for geter methods to render properties but hot to set properties ( call setters )?You'll need to use Java code in an event handler. Or, you can use
    the built-in UIX-Struts integration support, and let Struts automatically
    set the JavaBean properties.
    JDev 9.0.4 will include a <set> EventHandler that will provide declarative support for
    setting properties of JavaBeans, e.g., grabbing a property from the request and setting
    it on a JavaBean from entirely within UIX.
    2. That JavaBean calls long select method in BMP entity bean and I wonder what is a
    "scope" ( as it is in jsp:useBean ) of my DataObject wrapped JavaBean.If the DataObject is created during rendering, its lifetime is a single request.
    However, a DataObject wrapper that only lives for a single request can easily
    wrap a JavaBean that lives for multiple requests.
    I wouldn't worry about caching the DataObject wrappers - they're very lightweight.
    But if your JavaBean is expensive to create, then by all means cache that JavaBean.

  • How can I render an active link (yrl) within a UIX/XML page

    How can I render an active link (url) within a UIX/XML page.
    How can I get <jbo:ShowValue> to work in UIX/XML, or is there another way?
    Bill G...

    It may seem strange, but the <contents> of <rawText> aren't actually
    raw - it's only the "text" attribute that's raw. (It seems strange because
    it is. Ah well.) This is different from UIX JSP.
    So, try something like the following:
    <bc4j:attrScope name="Notes">
    <contents>
    <rawText text="&lt;a href=&quot;"/>
    <rawText>
    <boundAttribute name="text">
    <bc4j:attrProperty name="value"/>
    </boundAttribute>
    </rawText text="&quot;&gt;"/>
    Some text in the link.
    <rawText text="&lt;/a&gt;"/>
    </contents>
    <bc4j:attrScope>
    Thankfully, this will be much simpler in 9.0.3, when the following
    will work:
    <link text="Whatever you want">
    <boundAttribute name="destination">
    <bc4j:attrValue name="Notes"/>
    </boundAttribute>
    </link>

  • How to use ShowValue within a UIX/JSP page to display an active link?

    I am storing URL's in the DB and want to display them as active links on a UIX/JSP page. I thought that I had this working some time ago, but now it no longer works.
    Using <bc4juix:RenderValue datasource="ds1" dataitem="myTextField" /> will display "http://www.otn.oracle.com" as an inactive link using UIX/XML which is expected.
    Using <jbo:ShowValue datasource="ds1" dataitem="myTextField" /> will display an active link using if using BC4J/JSP, which is expected.
    However, I have not been able to do this using a UIX/JSP page.
    Is it possible to use ShowValue within a UIX/JSP page to display an active link?
    Thanks,
    Bill G

    Hi Juan,
    I've done the following and it does not work for me;
    --- snip ---
    <uix:form name="form1" method="GET">
    <bc4juix:Table datasource="ds1" >
    <uix:columnHeaderStamp>
    <uix:styledText textBinding="LABEL"/>
    </uix:columnHeaderStamp>
    <%--
    <jbo:AttributeIterate id="dsAttributes" datasource="ds1" hideattributes="UixShowHide">
    <bc4juix:RenderValue datasource="ds1" dataitem="<%=dsAttributes.getName()%>" />
    </jbo:AttributeIterate>
    --%>
    <bc4juix:RenderValue datasource="ds1" dataitem="FacilityDesc" />
    <bc4juix:RenderValue datasource="ds1" dataitem="LocationId" />
    <bc4juix:RenderValue datasource="ds1" dataitem="LocationDesc" />
    <%-- ** THE FOLLOWING DOES NOT DISPLAY ON THE BROWSE_EDIT_PAGE ** --%>
    <jbo:ShowValue datasource="ds1" dataitem="Notes" ></jbo:ShowValue>
    <%-- ** THE FOLLOWING DOES NOT DISPLAY ON THE BROWSE_EDIT_PAGE ** --%>
    <uix:rawText>
    <jbo:ShowValue datasource="ds1" dataitem="Notes" ></jbo:ShowValue>
    </uix:rawText>
    <%-- ** THE FOLLOWING DOES NOT DISPLAY ON THE BROWSE_EDIT_PAGE ** --%>
    <uix:contents>
    <uix:rawText>
    <jbo:ShowValue datasource="ds1" dataitem="Notes" ></jbo:ShowValue>
    </uix:rawText>
    </uix:contents>
    --- snip ---
    Bill G...

  • Uix:train within a Struts Form v. UIX form

    I'm trying to implement the uix:train component within several of my JSP's. All of these JSP's are using Struts forms rather than UIX forms.
    Is it possible to use the uix:train tag within a Struts form or must I use a uix:form ?
    If I need to use a UIX form, can someone help me understand how to get the tag to actually submit the form to the destination that I am specifying rather than submitting back to itself?
    I can get the train tag to work regardless of form type if I don't specify true for the formSubmitted property of the train tag. However, I need to actually submit the form because there are form values other than "goto" and "source" and "id", that I need access to when going to the designated JSP.
    Thanks!
    -Teri

    I'm using 9.0.3, and I do see a marlinCore.js reference in the source.
    Here's what's displayed when I view source:
    <html>
    <head><title>Archipelago's ArcaVision</title>
    <link rel="stylesheet" charset="UTF-8" type="text/css" href="/ARCA-ArcaVision-context-root/cabo/styles/cache/blaf-en-ie-6.css">
    <body>
    <table id="piTrain" cellpadding="0" cellspacing="0" border="0" summary="" align="center"><script>function _navBarSubmit(formName, navBar, vld, val, sze, partialTargets){var i = val.indexOf(',');if (i >= 0){sze = val.substring(i+1);val = val.substring(0, i);}var submitFunc = (partialTargets == (void 0)) ? submitForm : _submitPartialChange;return submitFunc(formName,vld,{event:'goto',source:navBar,value:val,size:sze,partialTargets:partialTargets});}function _navChoiceSubmit(choice, formName, navBar, vld, size, partialTargets){if (!_navBarSubmit(formName, navBar, vld, choice.options[choice.selectedIndex].value, size, partialTargets)){choice.selectedIndex = choice._lastValue;}}</script><tr><td width="20"></td><td align="right"><img src="/ARCA-ArcaVision-context-root/cabo/images/cache/c-trasl-1.gif" alt="Account Search: Active step" width="12" height="23"></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif"><tr><td height="23" align="left"><img src="/ARCA-ArcaVision-context-root/cabo/images/cache/c-trasr-1.gif" alt="Account Search: Active step" width="11" height="23"></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif" height="23"><tr><td><script>function t(width,height){document.write('<img alt="" src="/ARCA-ArcaVision-context-root/cabo/images/t.gif"');if (width!=void 0)document.write(' width="' + width + '"');if (height!=void 0)document.write(' height="' + height + '"');document.write('>');}t(20,1)</script></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif"><tr><td height="23" align="right"><img src="/ARCA-ArcaVision-context-root/cabo/images/cache/c-trusl-1.gif" alt="Basic Account Detail: Next step" width="12" height="23"></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif"><tr><td height="23" align="left"><img src="/ARCA-ArcaVision-context-root/cabo/images/cache/c-trusr-1.gif" alt="Basic Account Detail: Next step" width="11" height="23"></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif" height="23"><tr><td><script>t(20,1)</script></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif"><tr><td height="23" align="right"><img src="/ARCA-ArcaVision-context-root/cabo/images/cache/c-trusl-1.gif" alt="Distribution Detail: Next step" width="12" height="23"></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif"><tr><td height="23" align="left"><img src="/ARCA-ArcaVision-context-root/cabo/images/cache/c-trusr-1.gif" alt="Distribution Detail: Next step" width="11" height="23"></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif" height="23"><tr><td><script>t(20,1)</script></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif"><tr><td height="23" align="right"><img src="/ARCA-ArcaVision-context-root/cabo/images/cache/c-trusl-1.gif" alt="Data Permissions: Next step" width="12" height="23"></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif"><tr><td height="23" align="left"><img src="/ARCA-ArcaVision-context-root/cabo/images/cache/c-trusr-1.gif" alt="Data Permissions: Next step" width="11" height="23"></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif" height="23"><tr><td><script>t(20,1)</script></td></tr></table></td><td><table cellpadding="0" cellspacing="0" border="0" width="100%" summary="" background="/ARCA-ArcaVision-context-root/cabo/images/cache/c-truj-1.gif"><tr><td height="23" align="right"><img src="/ARCA-ArcaVision-context-root/cabo/images/cache/c-trusl-1.gif" alt="Report Permissions: Next step" width="12" height="23"></td></tr></table></td><td align="left"><img src="/ARCA-ArcaVision-context-root/cabo/images/cache/c-trusr-1.gif" alt="Report Permissions: Next step" width="11" height="23"></td><td width="20"></td></tr><tr><td></td><td colspan="2" class="x2m">Account Search</td><td></td><td colspan="2" class="x2o"><a onclick="_navBarSubmit('PersonalInfoForm','piTrain',1,'2');return false" href="#">Basic Account Detail</a></td><td></td><td colspan="2" class="x2o">Distribution Detail</td><td></td><td colspan="2" class="x2o">Data Permissions</td><td></td><td colspan="2" class="x2o">Report Permissions</td><td></td></tr></table>
    <script src="/ARCA-ArcaVision-context-root/cabo/jsLibs/MarlinCore.js"></script><form id="PersonalInfoForm" name="PersonalInfoForm" style="margin:0px" method="POST" action="personalInfoSearch.do">
    <input type="hidden" name="event">
    <table align="center" cellpadding="1" cellspacing="4" border="0" width="100%">
    <tr>
    <td align="right" width="25%">First Name:</td>
    <td align="left">
    <input type="text" name="firstName" size="45">
    </td>
    </tr>
    </table>
    <input type="hidden" name="source"><input type="hidden" name="value"><script>var resetPersonalInfoFormNames=["source","value"];</script><script>function PersonalInfoFormValidater(form){return true;}</script></form>
    </body>
    </html>

  • UIX form need to clear cached data within session

    HELP! I have some UIX forms created with JHeadStart, thay work fine except but when the underling table data changes (from another user session or an update trigger from different table) the forms will NOT show refreshed data, unless I delete my browser session cookie. Is there one place to clear the cache, and force the data to be reloaded each time it’s displayed?
    JDeveloper 10.1.2
    JHeadStart 10.1.2
    Thanks, Craig S.
    Message was edited by:
    user503876

    In your struts diagram, rightclick the page and pick 'goto code'
    This will overwrite your data action. There overwrite the method you use, most likely onCommit(....)
    Use the appmodule to find your viewobjects there and clear the cache.

  • Display requestScope attributes within ADF UIX page

    In jsp I can do the following to display all attributes available in the current requestScope by
          < c:forEach var='parameter' items='${requestScope}'>
             < ul>
                < li>< b>< c:out value='${parameter.key} : ${parameter.value}'/></b>:</li>
             < /ul>
          < /c:forEach>How to do the same in ADF UIX (without using servletInclude)?

    Please provide an example
    This works
    <styledText text="parameterMap ${uix.bajaContext.servletRequest.parameterMap}"/>But this does not work.
    <stackLayout>
      <contents childData="${uix.bajaContext.servletRequest.parameterMap}">
             <styledText text="text: ${uix.current.key}"/>
       </contents>
    </stackLayout>How to use ${uix.bajaContext.servletRequest.attributeNames} for instance since this returns a java.util.Enumeration type?

  • UIX form will not refresh data within session

    I have some UIX forms to view a table, they displays data fine but when the underling table data changes (from another user session or an update trigger from different table) the forms will not show refreshed data, unless I delete my browser session cookie. Is there a simple way to fix this, and cause data to be reloaded each time it’s displayed? I'm using JDeveloper 10.1.2
    Thanks, Craig Smith
    Message was edited by:
    user503876
    Message was edited by:
    user503876

    Dear Sir...
    in the struts page flow diagram
    1- create a data action
    2- drag the execute method from the viewobject methods and drop it on the data action
    3- draw a page forward from the data action to your data page
    4- finally ad a refresh link in your page which links to your data action
    now each time you click the refresh button on your page, the execution will go to the data action, where the execute method is executed (the data is refreshed) and then the control goes back to your page.
    best regards

Maybe you are looking for

  • Wireless radio turns off every 2 minutes

    I have a Thinkpad Z60t, running Windows XP. I have the physical wireless switch on the side panel set to the on position (i.e. to the right). Initially, I am able to connect to any wireless network without a problem. However, after about 2 minutes of

  • Composite Studio - How to get Active Server Requests through Email

    Currently in my application, we have an issue with number of Active connections. When we view Composite Studio -> Manager -> Requests -> Active Server Requests, it shows the number of active requests at that particular moment. Is it possible to set a

  • What's the relationship of Oracle content search products?

    I'm puzzled about so many Content Search Products of Oracle, such as UltraSearch,SES(Security Enterprise Search), etc. What's the different? Thanks.

  • SAP CUA Vs Corporate LDAP

    Hello All,    Could anybody please let me know the pros and cons of the SAP CUA and Corporate LDAP? Please this is urgent Thanks, Leena.

  • F/s Canon EOS 5D Mark III Digital SLR Camera + 24 - 105 mm Lens Kit set

    F/s Canon EOS 5D Mark III  Digital SLR Camera + 24 - 105 mm Lens Kit set Package Content      1 Canon EOS 5D Mark III DSLR Camera+ 24 - 105 mm Lens Kit set     1 LP-E6 Battery Pack     1 LC-E6 Battery Charger     1 IFC-200U Data Cable (USB)     1 AVC