rich:suggestionbox is not rendering the response

I am using <rich:suggestionbox>. It is not even showing any errors nor showing the suggestions
The following is my code
<h:panelGrid columns="1">
<h:inputText id="reg" value="#{valuesController.value.data}" />
<a4j:region renderRegionOnly="true">
     <rich:suggestionbox id="regid" for="reg"
suggestionAction="#{valueController.getValues}"
var="svalues"
          height="300" width="300">
          <h:column>
               <h:outputText value="#{svalues}" />
          </h:column>
     </rich:suggestionbox>
</a4j:region>
</h:panelGrid>
valueController.getvalues(Object) : returns a list of strings
Any idea plzz?

Oracle Security patches applied to Oracle-Application-Server-10g/10.1.3.5.0 .
APEX version is Application Express 4.0.1.00.03
The APEX application after the patch was applied on OAS was raising Error (Getting Http-400 Bad Name In The Request: Not A Legal Plsql Identifier ).
Implemented metalink Doc ID 1327343.1 to resolve this error.
Created a new procedure without parameters which calls the original procedure using parameters. Changed the DAD.conf to reflect the new Procedure
for the variable PlsqlDefaultPage instead of the format PlsqlDefaultPage f?p=AppID:PageID.
Apparently, there is this custom login screen which is called On-Load before Header on the Default Page 71 like this. And instead of rendering page 71 gives out the error.
begin
if app_security_pkg.is_user_authenticated(null,null)
then
wwv_flow_custom_auth_std.login( p_uname => v('APP_USER_NAME')
, p_password => null
, p_session_id => v('APP_SESSION')
, p_flow_page => :app_id||':71'
end if;
exception
when others then
dbms_output.put_line(sqlcode);
end;

Similar Messages

  • SingleSelectionBean is not rendering the child bean to the right

    Hi,
    I'm using JDeveloper 10.1.2. I am using singleSelectionBean as the tableSelection clhild of a table. And I have a button as the child of the singleSelectionBean. But the singleSelection is not rendering the button to the right side of the control bar. Which it should do automatically. Can somebody explain why it is not doing so for me?
    Thanks.

    Oracle Security patches applied to Oracle-Application-Server-10g/10.1.3.5.0 .
    APEX version is Application Express 4.0.1.00.03
    The APEX application after the patch was applied on OAS was raising Error (Getting Http-400 Bad Name In The Request: Not A Legal Plsql Identifier ).
    Implemented metalink Doc ID 1327343.1 to resolve this error.
    Created a new procedure without parameters which calls the original procedure using parameters. Changed the DAD.conf to reflect the new Procedure
    for the variable PlsqlDefaultPage instead of the format PlsqlDefaultPage f?p=AppID:PageID.
    Apparently, there is this custom login screen which is called On-Load before Header on the Default Page 71 like this. And instead of rendering page 71 gives out the error.
    begin
    if app_security_pkg.is_user_authenticated(null,null)
    then
    wwv_flow_custom_auth_std.login( p_uname => v('APP_USER_NAME')
    , p_password => null
    , p_session_id => v('APP_SESSION')
    , p_flow_page => :app_id||':71'
    end if;
    exception
    when others then
    dbms_output.put_line(sqlcode);
    end;

  • JEditorPane not rendering the CSS

    Hi,
    I am trying to convert a html page to an image by writing the page in a JEditorPane.
    It is rendering the text but not the CSS/images.
    Help me incase anyone know the solution for this issue .
    Thanks,

    This seems helpful: http://forums.sun.com/thread.jspa?messageID=1817077

  • Not rendering the background

    How do you "not" render the background when you are rendering the text?

    By the way I bought your book (Final Cut Express 4) it is awesome.
    I was told by someone in the forum to just render text and not the background when I am trying to put text over video-that's all.

  • Jsf not rendering the new data

    On the page a.jsp, when i select the year and company name, it displays the reqd company info. when i click edit, it goes to b.jsp and displays those information. after i edit, i click save. data is updated in the database and it goes back to a.jsp and displays the new data. now in a.jsp, when i select the year and company name, it shows the prior data and not the new data. even if logout of the appl and login again, this does not show the new data. only when i restart the appln server, i am able to see the modified data
    Can someone please help me on this. thanks.

    Crossposted:
    [http://forums.sun.com/thread.jspa?threadID=5447882&messageID=11036013#11036013|http://forums.sun.com/thread.jspa?threadID=5447882&messageID=11036013#11036013]
    If you don't get an answer, do you really think it is going to help to simply post the exact same question again?
    Why don't you do yourself a favor and try to reason about the problem yourself. You can be 100% assured this is your own fault that this is happening, somewhere in your code is a mistake. So where could it be? What could you have done to make the page display the old data in stead of the new data?
    Perhaps you will also want to invest some time into learning how to use a debugger, those things were invented to be able to work out these kind of "mysteries".

  • Adobe not rendering the current timeline, but a cached version?

    Hello!
    This is driving me up the wall, and costing me a great deal of time, so any help would be appreciated.  Inside my Adobe Premiere project I have a referenced composition from Adobe After Effects. Every now and then I need to tweak the After Effect composition, and when I do the changes instantly show up in Adobe Premiere. This is the behavior I am looking for. When I export everything out to Adobe Encoder for my final render, sometimes the changes don't show up and I end up with an older version of the file. It's as if there is a cashed version someplace that isn't being cleared. Any advice?
    Using Creative Cloud 64bit fully updated on a Windows 7 workstation.
    -Avotas

    Make sure you are not checking the box that says "Use Previews" when you export.

  • The wwv_flow_custom_auth_std.login is not rendering the page

    Hi, after patching of the OAS, the APEX application stopped working.
    1. The first issue was having f?p=AppID:pageID in the DAD.
    we resolved this by creating another procedure x and making it the value for the variable PlsqlDefaultPage
    create or replace procedure x as
    begin
    f(p=>'400:71');
    end;
    2. While it created another issue now.
    User is authenticated using a custom functtion and then the following APEX login API is called which should take to page 71.
    wwv_flow_custom_auth_std.login( p_uname => v('APP_USER_NAME')
    , p_password => null
    , p_session_id => v('APP_SESSION')
    , p_flow_page => :app_id||':71'
    Instead, from the http headers log, I can see that it is trying to execute an url without any parameter and we receive the error
    /pls/appName/f?
    We receive the error
    Expecting p_company or wwv_flow_company cookie to contain security group id of application owner.
    Error ERR-7620 Could not determine workspace for application ().

    Oracle Security patches applied to Oracle-Application-Server-10g/10.1.3.5.0 .
    APEX version is Application Express 4.0.1.00.03
    The APEX application after the patch was applied on OAS was raising Error (Getting Http-400 Bad Name In The Request: Not A Legal Plsql Identifier ).
    Implemented metalink Doc ID 1327343.1 to resolve this error.
    Created a new procedure without parameters which calls the original procedure using parameters. Changed the DAD.conf to reflect the new Procedure
    for the variable PlsqlDefaultPage instead of the format PlsqlDefaultPage f?p=AppID:PageID.
    Apparently, there is this custom login screen which is called On-Load before Header on the Default Page 71 like this. And instead of rendering page 71 gives out the error.
    begin
    if app_security_pkg.is_user_authenticated(null,null)
    then
    wwv_flow_custom_auth_std.login( p_uname => v('APP_USER_NAME')
    , p_password => null
    , p_session_id => v('APP_SESSION')
    , p_flow_page => :app_id||':71'
    end if;
    exception
    when others then
    dbms_output.put_line(sqlcode);
    end;

  • Hgrid Not Rendering the Advance Table Dynalically.

    Hi,
    I have created a Hgrid region and a Tree region. My requirement is when some one clicks on any of the Node ids from the grid, a Advance table has to be rendered dynamically.
    This works correctly only if I have a Tree Region.
    But if I include the Tree Region insde the Hgird, the dynamic rendering of the Table, does not work.
    Please help.
    Thanks

    Check notes 79193 and 128947.
    Rob

  • 9ias report server --could not get the response

    i could not run reports server on linux 6.2.
    it works like this ---- web site found, waiting for reply
    then i get no response.
    have anybody got answer for that????
    plz help
    i detailed configuration procedure (incuding patches etc)
    will be much helpful.
    thanks in advance
    smaran
    [email protected]

    It's still not working even if I export for ORACLE_HOME
    Red hat version : 2.6.9-5ELsmp
    [oracle@appli bin]$ ./rwdiag.sh -findall
    Environment:Environment java.lang.UnsatisfiedLinkError: /u01/app/oracle/mdw/lib/ librwu.so: /usr/X11R6/lib/libXm.so.2: undefined symbol: _Xsetlocale
    Environment:getEnvironmentStrings java.lang.UnsatisfiedLinkError: /u01/app/oracl e/mdw/lib/librwu.so: /usr/X11R6/lib/libXm.so.2: undefined symbol: _Xsetlocale
    java.lang.reflect.InvocationTargetException
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    Broadcast mechanism used to locate servers
    Channel address = 228.5.6.7
    Channel port = 14021
    REP-50503 No server found in the network

  • Not rendering the smallest of changes in Adobe Premiere Pro CC 2014

    Hello,
    I am trying to create a very simple video with only a few layers of color mats moving in the background and footage on top. With minimal movemet and very basic tranbsitions I am unable to play back or render ever just three seconds of my video to see what I have done. I have checked my Task manager and found that there is nothing running in the background, I have uninstalled Premiere, rebooted and reinstalled. I have tried saving as a new project, new timeline, new sequence. Not sure what to do as it has brought my work to a stop.

    Go to Project Settings/Scratch disks.
    There you will find the path where the auto saves are located.

  • Safari v7.0 not rendering the letters 'f' and 'i' (lower case) ??

    Tried alternate Safari encoding, Western (Mac OS Roman) and Unicode (UTF-8) - this makes no difference.
    Chrome (v13xxx) works just fine using Western (ISO-8859-1)??
    Any ideas on how to fix this problem?
    <Link Edited by Host>

    Not sure what you are referring too.  I didn't provide any spam links and was asking a serious question.  How about providing a serious answer?
    If the link provided was incorrect, my apologies but here it is again:  http://superfundwholesale.com.au
    BTW...I have checked that this link works.
    Note that if you opened this in Safari the lower case 'f' and 'i' does not render whereas in Chrome it does.  Look at the menu item which should read "Benefits". 
    The same through the site.... no 'f's or 'i's apparent.  This is a Safari problem.
    Cheers..

  • Pages not rendering the same with preview

    Could anyone tell me why my pages are viewing differently
    when &quot;live&quot; versus when I use the preview/debug
    feature in DW 8? What is looking differently, is that my side
    margins are not showing up at all on the live pages but they do
    show on the previews. Please help.
    http://kidtalksls.com
    Thanks!

    On Wed, 6 Feb 2008 00:57:59 +0000 (UTC), "binkyu"
    <[email protected]> wrote:
    >Could anyone tell me why my pages are viewing differently
    when 'live' versus
    >when I use the preview/debug feature in DW 8? What is
    looking differently, is
    >that my side margins are not showing up at all on the
    live pages but they do
    >show on the previews. Please help.
    http://kidtalksls.com Thanks!
    Not sure exactly what, but it's being caused by the ads your
    free host
    is displaying.
    Gary

  • Page not rendering the values as expected...?

    i had a situation in which on click of each and every link a common pop up will be called and the field values in the page are changed depending on the link clicked....
    its working as expected for the first click when i click other link its showing the first link values.For any link pressed its showing only the first link data...Here is the code i`m using for calling pop up
    <h:outputLink
                             binding="#{booking.lnkSlot2}"
                             id="lnkSlot2"
                             value="javascript:popupWindow('/BookingWeb/pages/bookedDet.jsf?bookingData=#{bookingList.value['onDate']}$2')">
                                  <h:outputText      
                                id="otSlot2"
                                binding="#{booking.otSlot2}"
                                value ="#{bookingList.value['slot2']}">
                              </h:outputText>
                              </h:outputLink>
    popup page code snippet<tr>
              <td>
              <ui:label id="lblOnDate" binding="#{bookedDet.lblOnDate}" text="Booked Date "> </ui:label>
              </td>
              <td>
              <ui:textField id="tfOnDate" binding="#{bookedDet.tfOnDate}" readOnly="true"></ui:textField>
              </td>
              </tr>
              <tr>
              <td>
              <ui:label id="lblSlot" binding="#{bookedDet.lblSlot}" text="Slot "> </ui:label>
              </td>
              <td>
              <ui:textField id="tfSlot" binding="#{bookedDet.tfSlot}" readOnly="true"></ui:textField>
              </td>
              </tr>
              <tr>
              <td>
              <ui:label id="lblBookedBy" binding="#{bookedDet.lblBookedBy}" text="Booked By "> </ui:label>
              </td>
              <td>
              <ui:textField id="tfBookedBy" binding="#{bookedDet.tfBookedBy}" readOnly="true"></ui:textField>
              </td>
              </tr>
              <tr>
              <td>
              <ui:label id="lblProject" binding="#{bookedDet.lblProject}" text="Project "> </ui:label>
              </td>
              <td>
              <ui:textField id="tfProject" binding="#{bookedDet.tfProject}" readOnly="false"></ui:textField>
              </td>
              </tr>
    and mbean of pop up contains this code in init method which is called on each request(snnipet of code i`m providing to be more clear)
    System.out.println(bookedPersonDetList);
                    this.tfOnDate.setText(bookedPersonDetList.get(0));
                   // this.tfSlot = new TextField();
                    this.tfSlot.setText(bookedPersonDetList.get(1));
                    this.tfBookedBy.setText(bookedPersonDetList.get(2));
                    this.tfExtn.setText(bookedPersonDetList.get(4));
                    this.tfProject.setText(bookedPersonDetList.get(3));
                    this.taPurpose.setText(bookedPersonDetList.get(5));
                    this.cbRepeat.setSelected(Boolean.FALSE);
    //                this.repeatForDaysOptions = new Option[16] ;please help me
    Thanks & Regards,
    Shivaji Byrapaneni.

    you have cartesian product. check
    SELECT amd.brkr_nm,
           amd.brkr_sym,
           AMD.MINORITY_FLG,
           atdf.comm_brkr_dim_key,
           atdf.exec_brkr_dim_key,
           CASE
              WHEN atdf.COMM_BRKR_DIM_KEY = AMD.ACCESS_METHOD_DIM_KEY
              THEN
                 CASE
                    WHEN AMD.MINORITY_FLG = 'Y'
                    THEN
                       CASE
                          WHEN atdf.EXEC_BRKR_DIM_KEY = atdf.COMM_BRKR_DIM_KEY
                          THEN
                             'Directed'
                          ELSE
                             'InDirected'
                       END
                    ELSE
                       'NA'
                 END
              ELSE
                 '0'
           END
              AS Direction_Method
      FROM alloc_tran_det_fact atdf, ACCESS_METHOD_DIM AMD
    /* your join condition */
      where atdf.COMM_BRKR_DIM_KEY = AMD.ACCESS_METHOD_DIM_KEY(+) description on tables are helpful ...

  • Lightroom 5 not rendering the color red correctly

    Out of the blue, LR5 has decided to render red as a dark orange - similar to the orange in the SF Giants team colors.  But red in the LR5 import previews is correct.  It's also correct in a different editor, Faststone Image Viewer and Irfan View.
    It's orange when opened in Camera RAW 8.1 from PS Elements 10.  So the culprit would seem to be Camera Raw 8.1.
    A picture is worth a thousand words:

    Couldn't you reach 120 Luminance in Eye One Match in advanced mode using the display's Brightness control? Are you using on the 'Custom' display preset mode and adjusting the RGB controls in Eye One Match for 6500K? Try downloading the latest Eye One Match v3.6.2 software, uninstall what you have now and reinstall with the new download v3.6.2. Something's wrong with the calibration process.
    Please provide your display control settings, including Brightness, Contrast, RGB Color, and any other display control settings. Here's what TFT Central used:
    Calibrated Settings
    (Custom mode)
    luminance (cd/m2)
    121
    Black Point (cd/m2)
    0.18
    Contrast Ratio
    672:1
    Firstly I calibrated the screen using LaCie's software suite while also changing the monitor to the 'Custom' preset mode, affording me access to the RGB colour controls. During the calibration process the screens brightness was adjusted to 20%, with contrast being left at 50%. RGB values were altered to 92, 90 and 98 respectively. It should be noted that OSD adjustments only form part of the calibration process with the majority of changes being made automatically at the graphics card LUT level.
    After calibration, the results of the test and report were far more pleasing! Luminance was corrected nicely to 121 cd/m2, with black depth being improved also to 0.18 cd/m2. This gave us a static contrast ratio of 672:1 which was adequate. The gamma was now corrected to 2.2, and colour temperature was also now recorded at 6477k (<1% out). Most impressively the colour accuracy was improved drastically, with dE average being only 0.5, and maximum being only 1.0. LaCie would consider colour accuracy to be excellent here, and this was certainly a very pleasing improvement to the default factory settings.

  • CS3: Exporting to .mov not rendering the correct size??

    I'm using Flash CS3 and trying to export a Flash movie I made
    as a .mov file. The file size is 1020x574. I export with the
    "Render width" set to 1020, the "Render height" set to 574, and
    "Maintain aspect ratio" is set (this is the same size as my stage,
    fyi). However, every time I export it the resulting movie is some
    completely different, distorted size, like 800x150 or something.
    It's the same size every time.
    Any ideas what's wrong here?

    Okay, I found part of my problem: the "render width/height"
    has nothing to do with the output size. I clicked on the Settings
    option, and saw that the Size was set to that strange size. I
    clicked on Size to change it, and saw it was set to "Current" -- at
    this point I realized that I had changed my stage size. The size
    was incorrectly reporting the "current" size as the old stage size.
    So I switched to a different setting, then back. However, that
    didn't fix it. Switching to a different compression type did for
    the "current" size to update, though.
    However, I have another problem: my exported .mov file plays
    very slowly and choppy. My timeline framerate is 30, and so is the
    export setting. However, it plays very choppy when the .mov file is
    played back.
    Any ideas there?

Maybe you are looking for

  • Ipod troubles - don't know what else to try

    I've had my ipod since 2004, and its always worked well. I used it a day ago, and set it on my desk. Today, when I plugged it into my computer to charge it came up with a message that I suddenly needed to restore my ipod. Now my ipod makes a clicking

  • How to update multiple Price conditions in FM CRM_ORDER_MAINTAIN

    Hi All,       need to update multiple price conditions in a contract Thru FM CRM_ORDER_MAINTAIN. please see the piece of code that am using...   am able to update single price condition...but not able to populate 2 or more .......i,e..ADD A Condition

  • Images not displayed on safari on netbook

    I installed safari onto my netbook running windows 7 And no pictures are displayed. This includes logo pictures like the google logo. Does anyone else have this problem and/or solutions to it?

  • IP Profile set very low

    Hi, I had a problem with my phone line last weekend and when it finally got assigned to an engineer, he diagnosed a cable fault between the exchange and my house, and provisioned the service on a new pair of wires on Wednesday. While the phone is now

  • RMAN - Incremental backup / NOARCHIVELOG / Restore & Recover Until Cancel

    I'm testing out a weekly plan as follows: Sun : Shutdown db, RMAN level 0 Incremental Backup Mon-Sat: Shutdown db, RMAN level 1 Incremental Backup. The database is NOARCHIVELOG mode and is 10.2 XE. I then run a restore (which I understand to be to mo