Query Result: IE 5.5 doesn't display nested Items

Hi all,
I have some trouble displaying Results of the decode section of this Query:
Assume there is a view of a few hundred rows,
Depending if the attribute's 'ID value is more than 4000, the browser should display a checkbox and a edit-sign, else there only should be a checkbox.
<code>
select id,
decode(sign(id-4000),
1,'<div style="float:left">'||
apex_item.checkbox(2,ID)||
'</div><div style = "float:none">
<a
href="javascript:popUp2(''f?p=&APP_ID.:11:&SESSION.::NO::P11_ID:'||id||''',700,700);"
<img src="#IMAGE_PREFIX#e2.gif"</a>
</div>',
apex_item.checkbox(2,ID))
as Auswahl
from v_partner dwhere id >3500
order by 1 desc;
</code>
Tested cases:
1) Display two elements into one Tablecell separeted by chr(10)
-Works in Mozilla, doesn't work in IE upwards 5.5
2) Build table inside of column2 and show the element each in his own cell
-Works in Mozilla, doesn't work in IE upwards 5.5
3) Build Div-Container
-Works in Mozilla, doesn't work in IE upwards 5.5( ok this one could be border-box problem)
The created Table or Div is shown in the 4th dimension of teh surrounding Region.
Does anone know how to aviod this behavoir?
regards
Franz

We have found the problem.
Having all the classes in the inheritance tree using isolated session fixed the problem. TopLink workbench didn't show this as an error. And TopLink was working fine when query via session cache but not when via UoW.
The error message from TopLink was: Queries on isolated classes, or queries set to use exclusive connections, must not be executed on a ServerSession or, in CMP, outside of a transaction.
But should at least been: Shared session cannot reference objects in the isolated session.
And better: Shared session cannot reference objects in the isolated session. All inheritance tree need to use isolated session if one is using isolated session and you query via UoW.

Similar Messages

  • Calendar forms10g: doesn't display, 'cause items are required in the record

    in the record I have items with the required property set to yes.
    I Display the Calendar on Key-ListVal and When-Mouse-DoubleClick triggers.
    when the triggers are fired, oracle shows me the following error FRM 40202 Field must be entered. and I can't enter the date.
    That's why the record loses the focus when the calendar shows up.
    how I can keep my items with the required property set to yes, without having the frm 40202 error.
    Steve

    Instead of using a different block for the calendar, you could create a separate fmb and use CALL_FORM and a GLOBAL to show the calendar and intercat with it. This way, the record will not loose focus and you won't get the error.

  • QA: Designer's operation to Add one more Field to display in Query Result Web Part

    QUESTION ABOUT Query Result Web Part presentation +1 Field
    I'd be looking at a property of Web Part to look up Discussion Board through Query Result Web Part. Currently it displays 'Title' column of Discussion Board, and my caring requirement is presentation customization to hold double
    columns of 'Title'+'Updated Date'. How could I add one more field 'Updated Date' to display in addition to that preexisting 'Title' field?
    Any procedural steps to realize how to add Filed to display in Query Result Web Part?

    Hi Yoshihiro,
    As I understand, you want to add the field to display in Query Result Web Part in SharePoint 2013.
    Which web part does you use? Content query web part or search results web part?
    If you use search results web part, you could edit the discussion board result template and add the updated field in the template.
    You could go to Design Manager: Edit Display Templates (site setting-> look and feel->design manager->edit display template), download the Discussion Item.htm file, and edit the file. 
    After editing, upload the file.
    The articles below are about how to modify an existing Display Template in SharePoint 2013.
    http://www.learningsharepoint.com/2012/09/17/sharepoint-2013-the-new-display-templates-for-styling-your-content/
    http://blogs.technet.com/b/sharepoint_quick_reads/archive/2013/08/01/sharepoint-2013-customize-display-template-for-content-by-search-web-part-cswp-part-1.aspx
     If you use content query web part, you could edit the content query web part, in the Property Mappings section select the “Change the mapping of managed”, and add the “modifiedOWSDATE” (it means the last modified date) in the line, after
    that you could see the update date under the title.
    Best regards,
    Sara Fan
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Mapping query result

    Hello,
    I can't map string Display Name to the string property, on the User prompts tab I set prompt with type Query Result, on the Configure Prompts I configure this query by selecting AD User of Group -> Display Name, now I have Prompt Output called DisplayName
    (string). On the Map prompts I can't map this prompt to the string property, why? I just want to choose one user from AD and put it on the form as string.

    You will never get "simple values" from a query result. The option "3. Display Columns" are the properties on the class that you display on the portal. You will not be able to map a query result anywhere. You must attach it somehow to the request (in the
    last tab "4. Options").
    So even though the prompt output says "DisplayName (string)" you are still getting an object out of it. This makes more sense if you select more properties in 3.
    http://codebeaver.blogspot.dk/
    Thanks fro info, I have a script which reads custom string property of my custom service request class and translates it to 'AD user class' and makes it as Reviewer in the Review Activity. But instead of textbox field on the portal I need to use query,
    how can I get info from this service request about query to create AD user in my script?
    I placed query form on the portal to test, it shows only 2000 objects by default, is it possisble to show members of some OU or group in this field?

  • How to pass query result to HTML table?

    Hi,
      i want to get the query result in HTMl table instead of Display Grid. how to do it? i searched in help, it suggests use icommand to do this. but i dont know how to pass the select query result to HTML table.. please help me.
    -senthil

    Hi Senthil,
    You can create an icommand query. You can then use the icommand retrieval methods to capture and manipulate the query data.
    (http://help.sap.com/saphelp_xmii115/helpdata/en/Applet_Reference_Details/iCom
    mand_Reference.htm)
    Basically what we did was, use the getColumnCount() and getRowCount() methods, once you have these two numbers you can set two for loops and use String getValue(int ColID, int RowID) , within the for loops you can generate the inner html content and write the values either in a html table or html form (which is what we did). This seems to work well, I'm still playing around with it and may post this approach on sdn by end of this week.
    Mahwish

  • Query Result Doesn't Display

    Hi All,
    When i run the code below the query with SELECT statement display result as expected but other queries with LOOP and Object oriented running againt same table as that used in SELECT statement doesn't show anything, not even the output page. The status bar only showed the the program has complied without syntax error but no output page.
    Please I need somebody to tell me why is the output not showing.
    REPORT  read_table_flights.
    DATA: itab_flight TYPE STANDARD TABLE OF sflight,
          wa_flight TYPE sflight,
          alv TYPE REF TO cl_salv_table.
    FIELD-SYMBOLS: <wa_comp> TYPE any.
    SELECT *
      FROM sflight INTO TABLE itab_flight
      WHERE carrid = 'LH' AND seatsmax < 250 .
    Alternative one: Loop at table and write the different components of work area
    LOOP AT itab_flight INTO wa_flight.
    WRITE:  wa_flight-carrid,
            wa_flight-connid,
            wa_flight-fldate,
            wa_flight-price,
            wa_flight-currency,
            wa_flight-planetype,
            wa_flight-seatsmax,
            wa_flight-seatsocc,
            wa_flight-paymentsum.
            skip.
    endloop.
    **Alternative two: Loop at table with dynamic assign of component
    *LOOP AT itab_flight INTO wa_flight.
    DO.
       ASSIGN COMPONENT sy-index OF STRUCTURE wa_flight TO <wa_comp>.
       IF sy-subrc <> 0.
         SKIP.
         EXIT.
       ENDIF.
       WRITE <wa_comp>.
    ENDDO.
    *ENDLOOP.
    object oriented way
    *cl_salv_table=>factory( IMPORTING r_salv_table = alv
                           CHANGING  t_table      = itab_flight ).
    *alv->display( ).

    Thanks SaiRam  for your prompt reply. and thanks to everyone who has read my post.
    The GUI i have is fresh installation. The SELECT query is working fine but LOOP doesn't display result even when SELECT does.
    Please help me.

  • Options to control display performance of CLOBs, etc. in Query Result view?

    Whenever I attempt to query a table that contains LOBs (e.g. a CLOB or XMLTYPE), the lack of performance pretty much makes the "Query Result" view (from F9) unusable. Any time I attempt to scroll the results, SQL developer apparently continues to query the database for the additional characters to populate the view.
    Resizing the columns containing the LOB to only a few characters almost solves the issue. Unfortunately, the size of the columns showing the LOBs apparently attempt to resize to the length of the LOB, making the column several pages long - and the same performance issue prevents resizing it smaller.
    Ideally, there would be some way to resize a column to a given or even a predefined and small size, without having to drag the resize handle the entire width of the desired resize amount. Alternatively, there could be a user preference to never set default column widths above a given number of pixels or characters. Another option would be a user preference to disable the in-line display of LOB contents, displaying only and requiring a click on the "..." (or pencil icon) button to open the "View Value" dialog. Ideally, all 3 of these options could be implemented.
    One crude work-around I'm using for now is to exclude the LOB columns from the results, requiring me to make secondary queries to see the LOB contents when necessary, and doesn't allow for scrolling through and viewing the LOB contents at all. Another work-around is to run the query as a script (F5) instead of a query (F9), and view the results in the "Script Output" view instead.
    I'm currently using SQL Developer 2.1.0.63, but experienced this same issue with all previous versions, including 1.5.5.
    Thanks!

    I agree.
    When I requested to auto-width the columns, I said to build in a maximum, but apparently they didn't.
    I suggest you log 2 feature requests on the SQL Developer Exchange; 1 for the maximum width, 1 for the CLOB contents/performance. Like this others can vote too and add weight for future implementation (I will).
    Have fun,
    K.

  • Local Calculation (Summation) in query doesn't display correctly in web

    Hi All,
    I have been working on a complicated query where I have formulas that perform calculations.  I then Hide these formulas and use them in another formula for further calculations.  The new calculations I then use local summation to basically just add the columns values and come up with an overall result.  Works perfect and is displayed perfectly.
    Problem is now in the web.  Either using a Pie Chart or just simply an Analysis item, the values are not displayed correctly at all.  The Pie Chart only displays the first row of data (not the overall result...which is a local summation...which is what I would prefer) and suprised that the Analysis item doesn't basically display what the query does.  I'm guessing it has to do with this local calculation.
    Can someone explain this behavior?
    Thanks.

    Anyone any ideas?

  • "Dead" Space before Query Results Display

    We were required to use PL/SQL to create a report within HTMLDB. The report runs fairly quickly and is displayed as desired in the window with one exception. "Dead" space is always placed on the screen before the query results. In many cases, this space is only a couple of lines. In cases where the result set is a few hundred lines, there are a few hundred lines (usually a comparable number to the result set) before the query result. Therefore, the user sees an empty screen and doesn't always know to scroll down several times to reach the output. We are looking for a means to eliminate this leading space.

    To perform the reqired sorting and add a checkbox to each section of the report, using PL/SQL embedded into the HTMLDB was the best method. Within the PL/SQL we used the htp.* commands to format the HTML. Unfortunately, this results in prgressively more empty lines before the actual report display with larger result sets.

  • BI7 Query in Solution Manager doesn't display chars

    Hi All,
    I've just created a new query in Solman 7.01 SPS31 using SAP GUI 720 and BEx Analyzer BI AddOn 7.X SP10.
    But when I run the query in Excel 2007 I get all the key figures but no values for any of the characteristics, either those in the query or those in the free characteristics.  I've tested this on new queries and queries delivered by SAP and get the same result.  However the queries are displayed fine within the BEx Web!
    Any ideas what might be causing this?  We are running SAP_BW SPS13
    I should mention that 3.x queries are just fine.
    Thanks
    Craig

    That's a strange one. Run Thinkvantage System Update, or just download and install most recent PM driver and software. Maybe refreshing these will give you PM back. Otherwise, I believe you may also have a setting in the BIOS for the beep. Not in front of my X100 now, but I know I have this setting on my X60s.

  • How to display the query results in several pages?.

    Hi,
    i want to display the query results in several pages. for example my query result found 50 matches, now i want to print 20 per pages next 20 will be in next pages. iam using only jsp & mysql.
    Regards
    Chinna

    Hi, what you are trying accomplish is known as pagination.
    You could use JSTL tags with Custom Tags to perform pagination in your JSP pages.
    evnafets showed me DisplayTags , you could use those as well http://displaytag.sourceforge.net/11/tut_externalSortAndPage.html
    Here is one article on paging:
    http://www.javaworld.com/javaworld/jw-07-2004/jw-0726-pagination.html

  • Warning pop up before query results display

    Hi,
    Iam getting one pop up Box before query results display  in that box I am getting around 10 messages like below.
                 *Warning  period 00000000- No vaild translation date to specify (ZMRATECMN)"
       after I click on the CLOSE tab on that box it is displaying query results.
      It seems this is warning related to currency traslation.
      How to avoid this pop up box display with the messages.Please help me.

    Hi,
    You can supress the messages in RSRT. Select your query and click the button warnings button in toolbar. There you can see all the messages. select the check boxes of the corresponding messages you want to supress and click save.
    Thanks
    Venkat

  • Extending Expert Query VO but Query doesn't display in standard VO

    I need to add a new attribute to an export query VO (oracle.apps.icx.por.reqmgmt.server.GroupReqsPublicVO), but when I edit the standard VO in JDeveloper the existing query doesn't display (query is blank and no attributes are listed). I can get the query from the xml file, but does this mean there is a problem? Should I just copy the query from the xml file and use that?

    All of the info is in the standard VO xml file (ie query, attributes, etc), but when I choose Edit VO ... in JDev nothing is displayed. A similar standard VO (slightly different query) appears fine in JDev - query and attributes displayed.
    I ended up trying the following, which appears to be working (although I am still waiting on some test data from the users):
    Create new VO, extending standard
    Copied the query from standard VO xml file
    This left me with all of the queried attributes, but none of the transient attributes.
    I tried to copy the additional attributes from the standard VO xml file to the extending VO xml file in JDev, but the extending VO xml file is protected.
    Then I closed JDev, manually edited the extending VO xml file to include the additional transient attributes that are in the standard VO xml file.
    Whether it was related or not, but when rebuilding my project, it complained that it couldn't find the standard VO's Impl java file, so I decompiled the class file to produce that.

  • Display the query result in an Excel file??

    hi there..
    am writing one script file that queries my DB and display the query result in an Excel file??
    i.e: if my query is :
    select col1, col2
    from table;
    and i want the results to dispalys in 2 col. in an Excel spreadsheet..
    Appreaciating ur cooperation..
    Mourad

    set colsep to a delimiter that is not normally part of your data like |
    also setup the environment with these other setup commands
    Set Echo Off;
    Set Concat Off;
    Set Pagesize 9999;
    Set Feedback Off;
    Set Verify Off;
    Set Term Off;
    Set Space 0;
    Set Colsep '|'
    Set Underline Off;
    If you wanted to use a comma delimiter the setup would be same but the set colsep='","'
    with the addition of concatenating a " on the first col and last col of the query
    eg.
    -- if first col and last_col are character types then
    SELECT '"'||col1,....,last_col||'"'
    FROM table;
    Otherwise if either is a number they would have to be converted with a TO_CHAR

  • Why does the Query Result display "X" as a result

    Hello All,
    I have a query in which there are 6 Characteristics and 1 calculated key figure. But when the query is executed the query result displays as "X" in the column against all the 6 characteristics.
    Can anybody provide solution as to why the result displays "X" as a result.
    Regards,
    Vikram

    Hello all,
    Everybody answered it correctly. But when i debugged the query, i did not get any calculation which is getting divided by 0 and there were no mixed units of measurements. Probably it was an erroneous transport earlier. I only created and request again and transported the query from dev and the query is running fine.
    Thanks everybody.
    Vikram

Maybe you are looking for

  • Issue in Absence Evaluation Scheme Rules

    Hi All, I have set up Absence evaluation scheme rule. When I try to maintain absence for one employee(hiring01.12.2013) from 02.01.2014 to 01.08.2014. when i try to save record i am getting message"Entitlement Used (issued on 29.05.2014): NO entitlem

  • When using HDMI to HDMI cable the Master Sound Control is locked.

    master sound control is locked when using HDMI to HDMI using an HDTV for the display. Although itunes sound control works.  Why is the Master Control locked?

  • Guide to which metadata are placed where in Metadata Overlays?

    Hi.  Is there a list or guide explaining the layout of the Metadata Overlays for the Browser and the Viewer?  I'm interested in more carefully programming the Metadata Overlays.  I can show (and not show) metadata, and I can change the order of the s

  • Close, maximize and minimize buttons not themed on Windows 8.

    When using a theme in Windows 8 the close etc buttons are not themed and look ugly and out of place. Any way to fix this embarassing issue? Screenshot here http://postimg.org/image/4rkm18qf3/

  • Portal Replication Across Global Servers

    I am creating a Portal site in the US. This same site needs to be accessed in Indonesia, and it has been suggested to replicate the Portal site in Indonesia considering download times, etc. I have replicated regular website, but never a Portal. What