Vertical Funnel issue in ADF

I have asked this already but still :) Has anybody managed to get a vertical funnel in ADF 11g with drill down ? either DVT or external components will also do.
thnks

Shay, this is the default layout of the funnel chart. I want to display it vertically. I guess funnels generally make sense when you see them vertically (as least thats what the management feels). Drill down can be achieved, but i am more specifically looking for vertical display to horizontal.
Any out of the box component you have tried for that ?

Similar Messages

  • Very urgent Decimal issue in ADF page

    Hello friends,
    i have an issue in ADF page which was weight field, issue has below.
    1) weight filed was validated that without entering 5 digit value in filed, example suppose i enter 12345 in weight it is showing that in small dialog box -weight value should be 0 to 9999.999 only. but it is let me to go next field and submit button. it is happening only in create page only.
    2)but when i go to detail page , same weight fild is populated there - i enter invalid weight something 12345, it is showing that in small dialog box -weight value should be 0 to 9999.999 only. but here let me not go to another filed until i ENTER valid value.
    create page weight filed need to work same as detail page.i am new to ADF development, how to check where this validation done and how to fix this.
    very very urgent.
    Thanks,
    vamshi.

    If you use ADF BC, open the entity and choose "Business Rules". You can then add validation rules such as range limits under the attributes. It is usually best practice to include validation rules in the entity (model layer), this way they apply automatically to all view objects based on the entity and you are guaranteed to have only valid values in the database. (View layer validation may have its place as a convenience supplement.)
    Read more about business rules in the developer's guide: http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/bcvalidation.htm

  • T400's Vertical line issue

    I'm not sure how Lenovo doesn't have recalls yet but in our company we have T430's T440's and T450's that have a vertical line on the LCD screen. Almost everyday we have 1-2 laptops with this issue. What's even worse is we purchased some T440p's last year and for some reason they were only under warranty for a year and not 3 years and now one of the laptops T440p ran out of warranty as of 7/20/2015 and it's having this Vertical line issue. What is one suppose to do in a situation like this? It's fairly a new computer. We've had this issue on brand new machines out of the box. How is lenovo not getting sued for this problem?

    Hai Deep,
    Use Elements as suggested by Kodarapu.
    Now goto Paragraph Formats create a format for Item lines.
    ex.
    Name Paragraph Format as 'IL' Now click on the Push Button "Tabs" on bottom Right.
    now in "Tab Position" enter the spacing that you need for your item dispaly
    ex.
    Number     Tab position       Alignment
    1               6.00   CH          LEFT
    2               25.00  CH         LEFT
    3               54.00  CH         LEFT
    The above example is for 3 items
    Now in your Script Windows-> Main
    do the following.
    /E           ITEM_LINE_A
    IL           &EKPO-EBELP&,,&EKPO-EMATN&,,,,&EKPO-TXZ01&
    Hope it SOlves your Issue.
    Cheers,
    Suvendu

  • ADF Table vertical scroll issue in Chrome & Safari, works fine in FF & IE

    Hi,
    Jdeveloper 11.1.1.7.0
    ADF BC & ADF Faces
    I have a jspx page with a command link. On click of link, opening a popup. Displaying a ADF table inside popup dialog.
    Problem Statement :   I have set contentDelivery="immediate" & autoHeightRows="8" in ADF table. while running the application in Chrome & Safari and moving vertical scroll up & down rapidly, first few rows & last few rows are not visible respectively. But if i scroll up & down using scroll arrow it's working as expected.
    But there is NO issue while running the application in IE & FF and moving vertical scroll up & down rapidly.
    FF 26.0
    Safari 5.1.7
    IE 8.0
    Chrome 31.0.1650.63 m
    JSPX Code :
    [code]
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:commandLink text="Customize" id="cl1">
              <af:showPopupBehavior popupId="p1" triggerType="action"/>
            </af:commandLink>
            <af:popup id="p1">
              <af:dialog id="d2" type="none">
                <af:panelGroupLayout id="pgl1">
                  <af:table value="#{bindings.XXXXView1.collectionModel}"
                            var="row"
                            rows="#{bindings.XXXXView1.rangeSize}"
                            emptyText="#{bindings.XXXXView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                            fetchSize="#{bindings.XXXXView1.rangeSize}"
                            rowBandingInterval="0" id="t1" autoHeightRows="8"
                            contentDelivery="immediate">
                    <af:column sortProperty="#{bindings.XXXXView1.hints.ProductOrder.name}"
                               sortable="false"
                               headerText="#{bindings.XXXXView1.hints.ProductOrder.label}"
                               id="c4">
                      <af:inputText value="#{row.bindings.ProductOrder.inputValue}"
                                    label="#{bindings.XXXXView1.hints.ProductOrder.label}"
                                    required="#{bindings.XXXXView1.hints.ProductOrder.mandatory}"
                                    columns="#{bindings.XXXXView1.hints.ProductOrder.displayWidth}"
                                    maximumLength="#{bindings.XXXXView1.hints.ProductOrder.precision}"
                                    shortDesc="#{bindings.XXXXView1.hints.ProductOrder.tooltip}"
                                    id="it1">
                        <f:validator binding="#{row.bindings.ProductOrder.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.XXXXView1.hints.ProductOrder.format}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.XXXXView1.hints.SerialNo.name}"
                               sortable="false"
                               headerText="#{bindings.XXXXView1.hints.SerialNo.label}"
                               id="c2">
                      <af:inputText value="#{row.bindings.SerialNo.inputValue}"
                                    label="#{bindings.XXXXView1.hints.SerialNo.label}"
                                    required="#{bindings.XXXXView1.hints.SerialNo.mandatory}"
                                    columns="#{bindings.XXXXView1.hints.SerialNo.displayWidth}"
                                    maximumLength="#{bindings.XXXXView1.hints.SerialNo.precision}"
                                    shortDesc="#{bindings.XXXXView1.hints.SerialNo.tooltip}"
                                    id="it5">
                        <f:validator binding="#{row.bindings.SerialNo.validator}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.XXXXView1.hints.SystemId.name}"
                               sortable="false"
                               headerText="#{bindings.XXXXView1.hints.SystemId.label}"
                               id="c1">
                      <af:inputText value="#{row.bindings.SystemId.inputValue}"
                                    label="#{bindings.XXXXView1.hints.SystemId.label}"
                                    required="#{bindings.XXXXView1.hints.SystemId.mandatory}"
                                    columns="#{bindings.XXXXView1.hints.SystemId.displayWidth}"
                                    maximumLength="#{bindings.XXXXView1.hints.SystemId.precision}"
                                    shortDesc="#{bindings.XXXXView1.hints.SystemId.tooltip}"
                                    id="it2">
                        <f:validator binding="#{row.bindings.SystemId.validator}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.XXXXView1.hints.SystemName.name}"
                               sortable="false"
                               headerText="#{bindings.XXXXView1.hints.SystemName.label}"
                               id="c5">
                      <af:inputText value="#{row.bindings.SystemName.inputValue}"
                                    label="#{bindings.XXXXView1.hints.SystemName.label}"
                                    required="#{bindings.XXXXView1.hints.SystemName.mandatory}"
                                    columns="#{bindings.XXXXView1.hints.SystemName.displayWidth}"
                                    maximumLength="#{bindings.XXXXView1.hints.SystemName.precision}"
                                    shortDesc="#{bindings.XXXXView1.hints.SystemName.tooltip}"
                                    id="it3">
                        <f:validator binding="#{row.bindings.SystemName.validator}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.XXXXView1.hints.ModelNumber.name}"
                               sortable="false"
                               headerText="#{bindings.XXXXView1.hints.ModelNumber.label}"
                               id="c3">
                      <af:inputText value="#{row.bindings.ModelNumber.inputValue}"
                                    label="#{bindings.XXXXView1.hints.ModelNumber.label}"
                                    required="#{bindings.XXXXView1.hints.ModelNumber.mandatory}"
                                    columns="#{bindings.XXXXView1.hints.ModelNumber.displayWidth}"
                                    maximumLength="#{bindings.XXXXView1.hints.ModelNumber.precision}"
                                    shortDesc="#{bindings.XXXXView1.hints.ModelNumber.tooltip}"
                                    id="it4">
                        <f:validator binding="#{row.bindings.ModelNumber.validator}"/>
                      </af:inputText>
                    </af:column>
                  </af:table>
                </af:panelGroupLayout>
              </af:dialog>
            </af:popup>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>
    [/code]
    Any help will be appreciated.
    ~Abhijit

    Hi,
    We are seeing this behaviour too - JDEV 11.1.1.7 with WLS 10.3.6.
    Anybody got any suggestions?
    Thanks
    Jon

  • Single Vertical Line When Using ADF for Scan or Copy on HP Officejet Pro 8600

    HP Officejet Pro 8600 Premium Printer (CN577A)
    OS: MS 7 64 bit
    When using the ADF for my CN577A HP Officejet Pro 8600 Premium printer, I get a single vertical line on the document that is produced. This occurs when copying or scanning, both in black and white, and in color. If I scan or copy using the glass, I don't get the vertical line.
    I already tried the troubleshooting.  I unplugged the printer, left it without power for several minutes; that didn't correct the problem.  Next, I cleaned the rollers and the glass; I still get the vertical line, but only when using the ADF.
    My firmware version used is current (CLP1CN1150CR).
    What should I check next?
    This question was solved.
    View Solution.

    The ADF uses its own glass area on the scanner bed, it is the narrow (about 1" wide) strip on the left.  Cleaning this area should resolve the issue.  A single small spot would cause the issue you are seeing.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Scrollbar refresh issue in ADF Table

    Hello, All
    We have an issue regarding the ADF Tables. Please let me know if it is a Oracle bug. All of us know that 'ExecuteQuery' operation refreshes the cache in View Objects.
    But, based on our testing results, there might be a table refresh issue on vertical scrollbars after this opertion is executed.
    Settings:
    In the attached example project, we have a ADF RichTable included in a PanelCollection.
    In addition, We set 'AutoHeightRows' property on this ADF RichTable in order to show scrollbars on the PanelCollection.
    Furthremore, a standard CommandButton is created on the toolbar to execute queries.
    Experimental Steps:
    1. Use your mouse to move the vertical scrollbar to around the center of its range. This behavior causes the scrollbar scrolling vertically.
    2. Click on any row showing in the table right now, make it to be the active row.
    3. Press the 'ExecuteQuery' button, waiting for the table refresh.
    Results:
    1. Active row moves to the first row in the rowset.
    2. Vertical scrollbar stay in the center of its range without moving to the first row.
    3. The first row is hidden from end users. The user can not see the active row in this case.
    FYI:
    The attached project can be accessed from the following link:
    http://www.4shared.com/zip/Xn4Ki0DP/Application3.html
    In this project, we tried to set 'partialTriggers' on RichTable and its surrounding PanelCollection separately. But, the refreshing issue still exists.
    Regards,
    David He

    Welcome David to forums.
    Always mention your exact Jdev version. For more information read this: https://forums.oracle.com/forums/ann.jspa?annID=56
    I too faced the similar kind of issue in one of my application.
    As you have not mentioned the exact jdev version, I will tell you what I did in my application which was developed using Jdev 11.1.2.0
    After the VO is executed, you can write the below line of code to show the first rows in the table.
    applicationsRichTable.setDisplayRow(applicationsRichTable.DISPLAY_ROW_FIRST);
    //applicationRichTable is the binding for the RichTable in managed beanHope it helps.

  • Generic vertical menu-list in ADF application

    Hi All,
    I am trying to create a generic vertical menu for my application. I follow the best practices given in Oracle docs and don't seem to get it right. I have a panelAccordion and several child showDetailItem components in it. Within each showDetailItem I have several commandlinks (I could not find a suitable component to replace the commandlink). I have attached the jspx template code for review. I have several issues
    1) I want to display all the showDetailItems and child commandlinks taking geometry and screen resolution into account. I tried playing around with the flex and InflexibleHeight attribute without much success. Is there way I can force the framework to do the geometry space allocation for each showDetailItem for me. The problem seems to be the showDetailItem on monitors with different resolution flows out of the page even if sufficient space is available to display everything. How to handle this?
    2) Is there a substitute component for the commandlink component. I want the user to click on that component to take them to specific screens. I don't want the underline of the commandlink. It should looks like neat tiles one under the other.
    To achieve this I even tried playing around with the skinning.css. I am using simple skin and want to extend on it.
    Is there a sample example out somewhere which will help?
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <af:pageTemplateDef var="attrs">
    <af:xmlContent>
    <component xmlns="http://xmlns.oracle.com/adf/faces/rich/component">
    <display-name>VacarTemplate</display-name>
    <facet>
    <facet-name>center</facet-name>
    </facet>
    </component>
    </af:xmlContent>
    <af:panelStretchLayout topHeight="107px" bottomHeight="50px" id="pt_psl1">
    <f:facet name="top">
    <af:image source="/images/vacarhead.JPG" id="pt_i2"/>
    </f:facet>
    <f:facet name="center">
    <af:decorativeBox theme="dark" id="pt_db1">
    <f:facet name="center">
    <af:panelSplitter splitterPosition="190" id="pt_ps1">
    <f:facet name="first">
    <af:panelAccordion id="pt_pa1" discloseMany="true"
    dimensionsFrom="parent">
    <af:showDetailItem text="Main Menu" id="pt_sdi1"
    inlineStyle="font-family:Arial, Helvetica, sans-serif; background-color:White;"
    disclosed="true" inflexibleHeight="10"
    flex="1">
    <af:group id="pt_g2">
    <af:commandLink text="Home" id="pt_cl13"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="pt_s13"/>
    <af:commandLink text="Case Search" id="pt_cl14"
    inlineStyle="font-size:small; font-weight:bold;"/>
    <af:separator id="pt_s14"/>
    <af:commandLink text="Import Cases" id="pt_cl16"
    inlineStyle="font-size:small; font-weight:bold;"/>
    <af:separator id="pt_s16"/>
    </af:group>
    </af:showDetailItem>
    <af:showDetailItem text="Data Maintenance" id="pt_sdi5"
    inlineStyle="background-color:White;"
    disclosed="true" inflexibleHeight="10"
    flex="3">
    <af:group id="pt_g3">
    <af:commandLink text="Questionnaires" id="commandLink1"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="separator1"/>
    <af:commandLink text="Reference Codes" id="commandLink2"
    inlineStyle="font-size:small; font-weight:bold;"/>
    <af:separator id="separator2"/>
    <af:commandLink text="Employees" id="commandLink3"
    inlineStyle="font-size:small; font-weight:bold;"/>
    <af:separator id="separator3"/>
    <af:commandLink text="Error Messages" id="commandLink4"
    inlineStyle="font-size:small; font-weight:bold;"/>
    <af:separator id="separator4"/>
    </af:group>
    </af:showDetailItem>
    <af:showDetailItem text="Cases" id="pt_sdi6"
    inlineStyle="background-color:White;"
    disclosed="true" inflexibleHeight="10"
    flex="1">
    <af:group id="pt_g4">
    <af:commandLink text="Cases" id="commandLink5"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="separator5"/>
    <af:commandLink text="Teams" id="commandLink6"
    inlineStyle="font-size:small; font-weight:bold;"/>
    <af:separator id="separator6"/>
    <af:commandLink text="Case Audit" id="commandLink7"
    inlineStyle="font-size:small; font-weight:bold;"/>
    <af:separator id="separator7"/>
    </af:group>
    </af:showDetailItem>
    <af:showDetailItem text="Patient" id="pt_sdi2"
    inlineStyle="font-family:Arial, Helvetica, sans-serif; background-color:White;"
    disclosed="true" inflexibleHeight="10"
    flex="5">
    <af:group id="pt_g5">
    <af:commandLink text="Patient" id="pt_cl1"
    inlineStyle="font-weight:bold; text-align:right; font-size:small;"/>
    <af:separator id="pt_s3"/>
    <af:commandLink text="Contacts" id="pt_cl2"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="pt_s1"/>
    <af:commandLink text="Arrest" id="pt_cl3"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="pt_s2"/>
    <af:commandLink text="Trauma" id="pt_cl4"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="pt_s4"/>
    <af:commandLink text="Mx" id="pt_cl5"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="pt_s5"/>
    <af:commandLink text="VSS" id="pt_cl6"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="pt_s6"/>
    <af:commandLink text="Destination" id="pt_cl7"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="pt_s7"/>
    <af:commandLink text="Hospital" id="pt_cl8"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="pt_s8"/>
    <af:commandLink text="Clinical Trial" id="pt_cl9"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="pt_s9"/>
    <af:commandLink text="QOL Survey" id="pt_cl10"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="pt_s10"/>
    </af:group>
    </af:showDetailItem>
    <af:showDetailItem text="Reporting" id="pt_sdi3"
    inlineStyle="font-family:Arial, Helvetica, sans-serif; background-color:White;"
    disclosed="true" inflexibleHeight="10"
    flex="1">
    <af:group id="pt_g6">
    <af:commandLink text="Standard Reports" id="pt_cl11"
    inlineStyle="font-size:small; font-weight:bold;"/>
    <af:separator id="pt_s11"/>
    <af:commandLink text="Ad-Hoc Reporting" id="pt_cl12"
    inlineStyle="font-size:small; font-weight:bold;"/>
    <af:separator id="pt_s12"/>
    </af:group>
    </af:showDetailItem>
    <af:showDetailItem text="Documentation" id="pt_sdi7"
    inlineStyle="background-color:White;"
    disclosed="true" inflexibleHeight="10"
    flex="1">
    <af:group id="pt_g7">
    <af:commandLink text="User Guide" id="commandLink8"
    inlineStyle="font-weight:bold; font-size:small;"/>
    <af:separator id="separator8"/>
    </af:group>
    </af:showDetailItem>
    <af:showDetailItem text="Search" disclosed="true" id="pt_sdi4"
    inflexibleHeight="10" flex="1">
    <af:panelGroupLayout
    id="pt_pgl1">
    <af:panelFormLayout maxColumns="1" id="pt_pfl1">
    <af:inputText id="pt_it1"/>
    <af:commandButton partialSubmit="true" text="Find Case"
    id="pt_cb3"/>
    </af:panelFormLayout>
    </af:panelGroupLayout>
    </af:showDetailItem>
    </af:panelAccordion>
    </f:facet>
    <f:facet name="second">
    <af:decorativeBox theme="medium" id="pt_db2" topHeight="30px">
    <f:facet name="center">
    <af:facetRef facetName="center"/>
    </f:facet>
    <f:facet name="top">
    <af:panelGroupLayout id="pt_pgl2" halign="end"
    layout="horizontal">
    <af:outputText value=" Currently Logged In: #{sessionScope.user}" id="pt_ot1"
    noWrap="true"
    visible="#{not empty sessionScope.user}"/>
    <af:spacer width="10" height="10" id="pt_s17"/>
    <af:commandLink text="Login?" id="pt_cl15"
    visible="#{empty sessionScope.user}"/>
    <af:commandLink text="Logout"
    id="commandLink9"
    visible="#{not empty sessionScope.user}"
    action="#{Main.onLogoutButtonPressed}"/>
    </af:panelGroupLayout>
    </f:facet>
    </af:decorativeBox>
    </f:facet>
    </af:panelSplitter>
    </f:facet>
    </af:decorativeBox>
    </f:facet>
    <f:facet name="bottom">
    <af:panelFormLayout id="pt_pfl2" maxColumns="4" rows="1">
    <f:facet name="footer">
    <af:group id="pt_g1">
    <af:outputFormatted value="Copyright &amp;copy; 2010 VACAR" id="pt_of1"
    styleUsage="pageStamp"/>
    </af:group>
    </f:facet>
    </af:panelFormLayout>
    </f:facet>
    </af:panelStretchLayout>
    </af:pageTemplateDef>
    </jsp:root>
    Thanks
    Edited by: user5108636 on Feb 8, 2011 6:51 PM

    I want to remove the '+' and the '-' from the showDetailItem. Should I tweak the css file.
    Thanks

  • Vertical line issue - How can we get Apple to address this?

    Hi guys,
    As can be seen in this forum (and a lot of other forums, as well), a lot of people are experiencing this problem on their 17" iMac G5 with iSight. Here are some pertinent details (which may be familiar to a lot of people but can be a primer for those who are just starting to experience the problem):
    1. For most of us, these lines started appearing between 13-15 months after they purchased them. The lucky ones either had these failures occur during the first 12 months, or had APP.
    2. The majority of these units can be traced to the Shanghai factory W8 (enter your S/N in this website to get the manufacturing information of your unit: http://www.chipmunk.nl/klantenservice/applemodel.html).
    3. A similar issue occurred (or is occurring) with 17" PBs. From what I have read on the Apple PB forums, it seems that this has been a long standing issue and Apple has SUPPOSEDLY attempted to censor some of the posts discussing this. Note that these units can also be traced back to the same Shanghai factory.
    4. The "iMac G5 Repair Extension Program for Video and Power Issues" which certain people have always been referring users to on posts discussing this type of problem obviously refers to a totally different issue (http://www.apple.com/support/imac/repairextensionprogram/) and is applicable only to first gen iMac G5s. I'm sure that everyone appreciates it but, at this point, it is quite clear that it is not the solution to our problem.
    5. Based on the number of posts discussing this very same problem in the Apple forums, it is pretty obvious that these are not isolated issues. There are too many similarities (time of failure, how the numbers of line increase over time, manufacturing source, etc.)
    6. Some people have suggested that unstable power sources may be the primary cause of the problem. However, based on the locations of the people with these problems who have posted in this forum, it seems unlikely. From what I can see, the problem happens whether you are from a highly industrialized country (where a stable power source can be expected) or a developing country (where power sources MAY be more unstable).
    7. Apple has typically responded (to anyone who has taken the time to write or have their iMacs inspected) that this is not a known manufacturing defect issue. As such, the cost to repair this problem, which can go up to USD 500, will have to be borne by the owner.
    8. Based on posts of some people who have had their units repaired, it is the LCD that has to be replaced. This is also supported by posts from people who have resorted to purchase a separate display as a workaround.
    Now, the question is, *how do we get Apple to address this issue*? Do we all start writing Steve Jobs about it? Do we go to the press? Should we put up a website and Digg it to death? A spoof video on YouTube? MySpace? Or will we just suffer in silence? Suggestions anyone?
    P.S. Suggestions that involve any sort of violence or industrial sabotage are not acceptable, please.
    Note that Ale_Tog has put up a Flickr page where we can post photos of our poor iMacs. Just send the photo to [email protected] with the subject "Dead pixels on iMac". No text, just the photo attachment. (+Ale_Tog, if you read this, I hope you don't mind me posting this here. Also, I suggest that we at least put the first 5 chars of the serial number, the factory information which can be retrieved on the link in #2 above, and which country the unit is based.+). I highly recommend that everyone send a photo to show that these are not isolated issues.
    To get an idea on how many people are experiencing this problem, here are a list of posts in these forums, as well as others, discussing this issue (feel free to add to this):
    http://i7.ebayimg.com/05/i/000/b2/75/2e8d_1.JPG
    http://i16.ebayimg.com/06/i/000/b2/75/2ee5_1.JPG
    http://i12.ebayimg.com/07/i/000/b2/75/2faf_1.JPG
    http://discussions.apple.com/thread.jspa?threadID=974094
    http://discussions.apple.com/thread.jspa?messageID=5146382&tstart=0
    http://www.macusersg.org/forums/index.php?topic=40998.0
    http://discussions.apple.com/thread.jspa?threadID=607522&tstart=180
    http://discussions.apple.com/thread.jspa?threadID=463075&tstart=270
    http://discussions.apple.com/thread.jspa?threadID=197560&tstart=360 (this is about dead pixels, but one person reported a whole line)
    http://discussions.apple.com/thread.jspa?threadID=292889&tstart=390
    http://discussions.apple.com/thread.jspa?threadID=293895&tstart=390
    http://discussions.apple.com/thread.jspa?threadID=279138&tstart=420
    http://discussions.apple.com/thread.jspa?threadID=197630&tstart=465
    http://discussions.apple.com/thread.jspa?threadID=197745&tstart=510
    http://discussions.apple.com/thread.jspa?threadID=197741&tstart=510
    http://discussions.apple.com/thread.jspa?threadID=197641&tstart=585
    http://discussions.apple.com/thread.jspa?messageID=4227335&#4227335
    http://discussions.apple.com/thread.jspa?messageID=976574&#976574
    http://discussions.apple.com/messageview.jspa?messageID=4369582&stqc=true
    http://discussions.apple.com/thread.jspa?threadID=778470&tstart=0
    Please start sending your suggestions. The more the many-ier!

    Yep. I feel Apple's 1 year manufacturer warranty for the iMac is not adequate, especially for an all-in-one unit with a relatively high price.
    My iMac G5 started displaying a vertical cyan line about 4 weeks ago, only about 19-20 months after I bought it for Christmas in 2005.
    I called up Apple to enquire what could be done and was told by their customer service that a rather long period had elasped since the warranty expired in 2006. So I was told to take the iMac to an authorised repair centre and Apple will not contribute to the cost of the repair.
    I expect respectable service life from my computer and anything less than 5 years is totally unacceptable. Thus I seriously question the value proposition for the iMac in this respect. Does it mean that I have to replace my iMac every 2 years? The computer still feel reasonably zippy, I still have plenty of space left on my hard drive, but the screen is failing ...
    Today another line (green) appeared on the screen ...
    It is my understanding that a number of LCD monitor manufacturers are now providing 3 year warranties for their products. Now why should Apple only provide a 1 year warranty? Especially when the replacement option will cost more than buying an entire new LCD monitor with even better specifications?
    Based on the number of responeses I have seen here, this is not a rare occurance and I seriously question their quality control in their manufacturing process. I think Apple should be responsible for these repairs, and also provide a 3-year warranty for their LCD screens.
    My iMac's serial number is W8548Zxxxxx.
    Sincerely yours, an unhappy Apple customer.

  • Issue with ADF Application Report Generation

    1) We are developing the web-base ERP application we are using technology as follows
    a) Operating System Red Hat Enterprise Linux4.
    b) Application Server Oracle Application Server 10.1.3
    c) Oracle ADF is the frame work
    d) Jasper reports (iReport 3.0.0) as report generation tool.
    While generating larger reports using iReport3.0.0 Tool i,e., contains more than 20,000 records the query while executed in Sqlplus takes less than a minute, but while the report is run it takes more time leading to time out and the pdf file is not generated. The error shown on the screen is “the web server unable to process the given request”
    The session time-out is 5 minutes. Please help us to tackle this issue since most of the reports are summarized reports and contain large transactional data and is critical reports.
    You may also suggest other web based report tools which help us generate large reports in PDF and/or text formats.
    By
    PRABEETHSOY P
    Edited by: prabeethsoy on Jun 26, 2009 1:13 AM

    PRABEETHSOY,
    some things come to mind.
    While generating larger reports using iReport3.0.0 Tool i,e., contains more than 20,000 records the query while executed in Sqlplus takes less than a minute, but while the report is run it takes more time leading to time out and the pdf file is not generated.Running a query in sqlplus is totally different from running it in an application. Sqlplus only pumps the results to the screen, whereas the application builds some layers around the data, so that you can navigate through the result. This will cost some time.
    You can try to optimize your strategy working with the data, i.e. running the query in forward only mode and/or omit the usaeg of EO where you know you don't need to change data.
    But in the end you may find that you have to use a different approach to generate the reports: do it asynchrony, meaning that you start the generation on the server, let it finish there (putting the result in a file) and send the finished report to the user in a different request. Do do this you can use a poll component, or you ask the user to come back later (giving him a report number to ask for). Other solution are possible.
    Timo

  • View Criteria issue on ADF Tree

    Hi,
    JDev 11.1.1.5.0
    I am facing an issue while displaying ADF tree. I've created ParentVO & ChildVO from a single table with view criteria to filter the nodes.And then created two View links ParentToChild & ChildToChild.
    Added VOs & corresponding ViewLinks to ApplicationModule. When I tried to run application module, getting the results as per expectation (applying view criteria at each level).
    Now i've dragged the parent vo from data control on to jspx page. when I run the jspx page, it's displaying the tree structure.
    Issue is only view criteria is applying for top level nodes(parent VO) but not sub levels. If there is some issue with creation of View criteria then it should give same problem while executing AM. But while running AM, getting the expected results.
    It would be great if you provide any clue on this issue
    Thanks,
    Samba

    Thanks for your response.
    But my usecase is different. I need to filter the sublevels of the tree.
    Following is the sample
    Level1
         Level1.1
         Level1.2
         Level1.3
    Level2
         Level2.1
         Level2.2
         Level2.3
         Level2.4
    Level3
         Level3.1
         Level3.2
         Level3.3
    If I gave View Criteria as contains '2' then, Need to filter the nodes contains character 2. Able to filter first level nodes according VC. But VC is not applying for sub levels. Is there any way to set the VC in my case?

  • Issues Consuming ADF portlet in Webcenter

    Hi,
    We created an ADF page in the portlet producer and created a portlet entry. We used a webcenter consumer to consume the ADF portlet from the portlet producer.
    On running the webcenter consumer the page is displayed as desired but on performing any action on the page, a blank JS popup message is displayed. Once this popup message displays nothing else can be performed on the screen and the browser tab has to be closed.
    There are no logs at the server level.
    The jdeveloper version is :11.1.1.6.0.
    Can you please help us with this issue
    Thanks and regards

    Hi.
    See into Oracle My Support. Remember (don't know exactly) that exists a Portlets problems with version 11.1.1.6 similar to your problem.
    Probably you'll need to patch your WebCenter installation to 11.1.1.6.2
    Regards.

  • Issue With ADF Tree Expand/Collapse

    Hi All,
    I have a customer who is having issues using the af:tree component on a deployed application. When he tries to expand or collapse a node of the tree, the icon just blinks. This is occurring not only on our application, but also the Oracle ADF Rich Client Demo on http://jdevadf.oracle.com/adf-richclient-demo/faces/components/tree.jspx. He is using Internet Explorer v7.0.5730.13. As far as I can tell, our browser settings are identical, but I can use the tree without a problem.
    Any ideas as to what the problem could be?
    Thanks,
    Brad

    Unfortunately, Internet Explorer is the only browser that is authorized to run on his computer.
    Do you know of any specific IE settings that would cause the af:tree not to work?

  • Vertical line issue in SAP Script main window

    Hi All,
    I want to draw a vertical line in my main window in SAP Script output.
    But problem is in main window i am printing some texts at the beggining then i am printing line items.
    So this is not fixed line (box). It may increase/decrease based on text available before line items.
    How can i manage this prining vertival line as i don't know height, top of this line!
    Thanks in advance.
    Thanks,
    Deep.

    Hai Deep,
    Use Elements as suggested by Kodarapu.
    Now goto Paragraph Formats create a format for Item lines.
    ex.
    Name Paragraph Format as 'IL' Now click on the Push Button "Tabs" on bottom Right.
    now in "Tab Position" enter the spacing that you need for your item dispaly
    ex.
    Number     Tab position       Alignment
    1               6.00   CH          LEFT
    2               25.00  CH         LEFT
    3               54.00  CH         LEFT
    The above example is for 3 items
    Now in your Script Windows-> Main
    do the following.
    /E           ITEM_LINE_A
    IL           &EKPO-EBELP&,,&EKPO-EMATN&,,,,&EKPO-TXZ01&
    Hope it SOlves your Issue.
    Cheers,
    Suvendu

  • Issues in ADF mobile application using Trinidad components

    I am facing the following issues when developing a mobile application using trinidad components :
    Jdev version : 11.1.1.6
    1) I dont see a date component using trinidad components? The dev guide http://docs.oracle.com/cd/E23943_01/web.1111/e10140/sup_comp.htm says that tr:inputDate is supported but when i try to drag a data field to jsf page i don't see an option for Trinidad date component. so i went ahead and created an af:inputDate in the page. But the date selection dialog doesnt open up.
    2) i tried using 'Rendered' for conditional rendering of a component but it does not work or refresh immediately, the same problem is solved in my adf application using visible property but looks like there is no 'Visible' property for Trinidad components. any work around?
    3) i wanted to have a 'create insert' call in my task flow before launching the page. Since Task flows are not supported in ADF mobile application, i have added 'ADF Faces' also into my project and created task flow and jsff page as i do for a adf web application the only diff being the usage of trinidad components in my jsff page. is this fine? Also can we mix trinidad components and adf components into the same page?
    4) I have a tr:inputText on a clob input text field which i am updating in ADF page using a clob converter class. Same thing i cannot do for trinidad text as it is resulting in null pointer exception. any solution to update clob fields into database which uses tr:inputText compents.
    Help to solve any one of the above issues (by quoting serial no) would be highly appreciated. Thanks.

    >
    4) I have a tr:inputText on a clob input text field which i am updating in ADF page using a clob converter class. Same thing i cannot do for trinidad text as it is resulting in null pointer exception. any solution to update clob fields into database which uses tr:inputText compents.
    wht is the stack trace.. when is it giving null pointer exception.. explain
    >
    Below is the code for an inputText component based on a CLOB Field.
    <tr:inputText value="#{bindings.ObsComments.inputValue}"
                        label="#{bindings.ObsComments.hints.label}"
                        required="#{bindings.ObsComments.hints.mandatory}"
                        columns="#{bindings.ObsComments.hints.displayWidth}"
                        maximumLength="#{bindings.ObsComments.hints.precision}"
                        id="it4" rows="4" binding="#{ObsMobileBean.obsComments}"
                        showRequired="#{bindings.WoNeeded.attributeValue eq 'Y'}"
                        partialTriggers="sbc1" converter="ClobConverter">
            <f:validator binding="#{bindings.ObsComments.validator}"/>
          </tr:inputText>When i try to render the page it self i face this error initially.
    >
    java.lang.NullPointerException
         at sfi.apps.sso.mobileUi.util.ClobConverter.getAsString(ClobConverter.java:41)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.ValueRenderer.getConvertedString(ValueRenderer.java:63)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.EditableValueRenderer.getConvertedString(EditableValueRenderer.java:163)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.SimpleInputTextRenderer.renderContent(SimpleInputTextRenderer.java:364)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.SimpleInputTextRenderer.encodeAllAsElement(SimpleInputTextRenderer.java:121)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.FormElementRenderer.encodeAll(FormElementRenderer.java:109)
         at org.apache.myfaces.trinidad.render.CoreRenderer.delegateRenderer(CoreRenderer.java:435)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.InputLabelAndMessageRenderer.renderFieldCellContents(InputLabelAndMessageRenderer.java:146)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.LabelAndMessageRenderer._renderFieldCell(LabelAndMessageRenderer.java:492)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.LabelAndMessageRenderer.encodeAll(LabelAndMessageRenderer.java:359)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.InputLabelAndMessageRenderer.encodeAll(InputLabelAndMessageRenderer.java:124)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelFormLayoutRenderer._encodeFormItem(PanelFormLayoutRenderer.java:911)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelFormLayoutRenderer.access$100(PanelFormLayoutRenderer.java:48)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelFormLayoutRenderer$FormColumnEncoder.processComponent(PanelFormLayoutRenderer.java:1419)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelFormLayoutRenderer$FormColumnEncoder.processComponent(PanelFormLayoutRenderer.java:1338)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:170)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:290)
         at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:255)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelFormLayoutRenderer._encodeChildren(PanelFormLayoutRenderer.java:312)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelFormLayoutRenderer.encodeAll(PanelFormLayoutRenderer.java:137)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:421)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelHeaderRenderer.encodeAll(PanelHeaderRenderer.java:133)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2633)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:421)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer._encodeChildren(RegionRenderer.java:278)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.encodeAll(RegionRenderer.java:201)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at oracle.adf.view.rich.component.fragment.UIXRegion.encodeEnd(UIXRegion.java:300)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:421)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelPartialRootRenderer.renderContent(PanelPartialRootRenderer.java:69)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.BodyRenderer.renderContent(BodyRenderer.java:142)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.PanelPartialRootRenderer.encodeAll(PanelPartialRootRenderer.java:151)
         at org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.BodyRenderer.encodeAll(BodyRenderer.java:78)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:266)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:197)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:911)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:367)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:222)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >
    Now if i remove the tag converter="ClobConverter" then the page renders fine but when i try to submit the values back into the database, then i got the error
    >
    Cannot convert <entered text> of type class java.lang.String to class oracle.jbo.domain.ClobDomain
    >
    My clob converter class is registered in faces-config.xml file and the code for it is also pasted below for reference:
    import javax.faces.component.UIComponent;
    import javax.faces.context.FacesContext;
    import javax.faces.convert.Converter;
    import javax.faces.convert.ConverterException;
    import oracle.jbo.domain.ClobDomain;
    public class ClobConverter implements Converter {
        public ClobConverter() {
        public Object getAsObject(FacesContext context, UIComponent component,
                                  String value) {
            if (context == null || component == null) {
                throw new NullPointerException("FacesContext and UIComponent can not be null");
            if (value == null) {
                return null;
            try {
                return new ClobDomain(value);
            } catch (Exception ex) {
                final String message =
                    String.format("Unable to convert boolean value \"%s\" into a oracle.jbo.domain.Number",
                                  value);
                throw new ConverterException(message, ex);
        public String getAsString(FacesContext context, UIComponent component,
                                  Object value) {
            if (context == null || component == null) {
                throw new NullPointerException("FacesContext and UIComponent can not be null");
            return value.toString();
    }

  • Getting leaked connection issues in ADF 11g - Urgent

    Hi,
    I am using Jdev 11.1.1.2.0 with ADF 11g.
    I am facing severe and recurring issues of leaked connections and JBO 29000. I have tried many ways but in vain.
    I observed that say on my own bowser if I do few login-logouts say 3-4 login logouts I start getting the error.
    Initially I thought that I can do away with this by increaing my initial connection pool size. It helped but then it was just so that I deferred the exception by few logouts.
    So I seriously doubt if my logout is releasing all resources. Here is what I am doing
    1. I send an audit record to DB for the logged in user
    2. I do commit/rollback
    3. I remove the session attributes associated to the logged user
    How and where do I get the session invalidate method. Is there something a miss?
    Kindly help.

    You can all an action and use code like
    public void logout(ActionEvent actionEvent) {
    try {
    ExternalContext ectx = FacesContext.getCurrentInstance().getExternalContext();
    HttpServletResponse response = (HttpServletResponse)ectx.getResponse();
    HttpSession session = (HttpSession)ectx.getSession(false);
    session.invalidate();
    response.sendRedirect("Login.jsp");
    } catch (Exception e) {
    e.printStackTrace();
    }The important part is the session.invalidate()!
    Timo

Maybe you are looking for

  • Notification Detail Page is not displaying

    Hi All, I have a requirement of creating a read only workflow admin responsibility. For that I have followed the below steps. 1. Set 'Workflow Administrator Web Applications' as the Workflow Administrator from administration tab. 2. Create a grant wi

  • BW Basis related queries

    Hi, Two questions: 1)     There is an archive file in BW that is getting build up slowly but surely. The basis guys here have no idea of what and why. It is increasing 20-30% on a daily basis. 2)     The customer basis team fears that if we connect S

  • Cannot connect to stratus from adobe air 1.5???

    Hi, I have tried this code from flash actionscript 3 and it connected to stratus and the event netConnectionHandler was called .  When I cutted and pasted it to ADOBE  AIR 1.5 and tested it. Nothing happened.  Did I forget something to make it to wor

  • Can't find tab to load Airplay in App Store

    Can't find tab, icon to load Airplay in App  Store

  • Floating point number to IBM bytes

    Hello, I'm trying to convert a float value to a byte array (but in IBM standard). I understand that the general idea will be the following algorithm: 1. process the sign, exponent and fraction from the float value (using IBM standard) 2. build the by