Grouping of columns in classical report

Hi,
I have a classical report and it has a about 30 to 40 columns . I want to do grouping of columns.
E.g  First six columns i want to LABLE as a net rate columns. other 5 column label as  Git columns . How i can do this ?
         Net Rate                                       GIT
col1  col2 col3 col4 col5 col6         col7 col8 col9 col10 col11
Thanks & Regards
Vedant

Try to change report template.
Or write own plugin-report.

Similar Messages

  • How to fix Width of column in classic report.

    Dear Friends
    i am using Apex 3.2.
    i have created Clasic Report and i have summary column in my report that column have description of issue so i want to fix width of that column nn Classic report .
    i have try some code in html expression
    <span>style="width: 480px; display: block; white-space: normal; font-size: 11px;">#ACTIVITY_SUMMARY#</span>
    {code
    after apply abovemention code that display me in my summary like this and not manage width of column.
    style="width: 480px; display: block; white-space: normal; font-size: 11px;">Dear Cherryl, Greetings !! Thank you very much for the new query and we are pleased to confirm the availability of one single cabin in all the three categories of cabin on M.V. Mahabaahu. We would like to inform you that both the departures 15th Oct 2013 & 29th Oct 2013 (Golden triangle with Cruise) are operational and attached are the prices for your kind consideration. As a special promotion for the 15th Oct 2013 departure only, we are offering USD 100 per person reduction on the Golden triangle portion combined with the cruise. Kindly review and advise us to block the accommodation accordingly. Regards...pankaj
    How to fix Width of column in classic report.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    I'm working an example in APEX 4.2 so YMMV (your milage may vary!).
    For Classic Reports, where the Column Attributes "Display As" is set to Display as Text (escape special characters ...:
    1) I find that Column width and Element Width setting have no effect to make the column smaller or larger.
    2) Here is one way that works:
    - In the Region's Region Definition, under Attributes give the Static ID a name (no spaces), say, class-report.
    - In the columns you want to affect, place "&#60;div>#ENAME#</div&#62;" in the columns Column Formatting "HTML Expression". Where "ENAME" here is the actual column name.
    I'm using the EMP table as an example.
    - Finally, in the page's HTML Header put, for example
    <style>
    #classic-report td.data[headers="ENAME"] div {
      width: 200px;
      color: blue;
    #classic-report td.data[headers="JOB"] div {
      width: 50px;
      white-space: nowrap;
      word-wrap: break-word;
    </style>This makes the ENAME column wider and the JOB column smaller and wraps it.
    Much more could be said. If you tweak you will find you can also affect spacing above, below and right/left of the data.
    #classic-report .report-standard th.header {
      border-left: #9fa0a0 1px solid;
      padding: 2px 3px 4px 5px;   /* top right bottom left margins */
      font-size: 11px;
      font-weight: bold;
      vertical-align: bottom;
    #classic-report .report-standard td.data {
      border-left: #9fa0a0 1px solid;
      padding: 3px 4px 5px 6px;
      font-size: 9px;
    }Does this help?
    Howard

  • Dynamic action in column of classic report

    Good day master!
    Hi im new in apex,, so im dynamic ondering if its posible to create a dynamic action in the column of classic report in apex?
    i'm trying but its not working my problem goes like this..
    i have a classic report stock_replenish
    columns
    item_code
    price
    supplier_name
    item_code is a pop-up loved by sql
    what i want to do is when the user choose a item_code it will also return the price and supplier_name
    i can do that in apex form but i dont know if iits posible to clasic report?
    please help!
    ty
    Myke;l

    Dynamic action on report columns is possible but not as straigth forward as on items.
    First you can't select "report colum" as selection type for the dynamic action. Use jQuery Selector instead.
    See the [url http://api.jquery.com/category/selectors/]jquery documentation  on possible selectors.
    I prefer to use something like[name='f01'].
    Use the developer tools of your browser to see the name of your report column.
    Because you can't submit a single report cell value with the action "Set value".
    You have to use a combination of a action "Execute javascript" and a ondemand process.
    The javascript code is something like
      var elementId,idParts,row;
      /*Determine the id of the element that has triggered the dynamic action*/
      elementId = String(this.triggeringElement.id);
      /*The id of a item in a report column consists of to parts the name and the rownumber*/
      idParts = elementId.split('_');
      /*The second part is the rownumber we need that to set the value in the right row later on*/
      row = idParts[idParts.length-1];
      /*This calls the ondemand process*/
      apex.server.process ( "MANAGER_EMAIL", {x01:$v(this.triggeringElement),x02:row}, {success: function( pData ) { $s(pData.r,pData.d) }} );apex.server.process(name ondemand process,values to be submitted,options)
    {x01:$v(this.triggeringElement),x02:row}
    This submits the values of the triggering element and the row on which all the action is happening.
    x01 refers to apex_application.g_x01
    {success: function( pData ) { $s(pData.r,pData.d) }}
    The succes option defines a function that is executed upon succefull completion of the ondemand process.
    The ondemand process returns a json object. Which we can refer to in the javascript function with pData.
    In our ondemand process we are defining the json object as having to properties.
    d and r . d is the display value and r is the id of the element to be set.
    $s(r,d) is a [url http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21676/javascript_api.htm#CDEEIGFH]apex javascript function that sets the value d to item with id r.
    Now the server side code. This is an application process with process point Ondemand.
    Which is something like this.
    declare
      cursor c_emp(b_employee_id in number)
      is
        select emp.email
        from   oehr_employees emp
        where  emp.employee_id = b_employee_id
      col_emp_email oehr_employees.email%type;
      v_regel       number;
    begin
      /*Get the employee email*/
      open  c_emp(apex_application.g_x01);
      fetch c_emp
      into  col_emp_email;
      close c_emp;
      /*Calculate the rownumber do this only if the triggering element is a popup lov*/
      v_regel := to_number(apex_application.g_x02) + 1;
      /*Create the json header*/
      APEX_PLUGIN_UTIL.PRINT_JSON_HTTP_HEADER;
      /*Print out the json object*/
      sys.htp.p('{"d":"'||col_emp_email||'","r":"f03_'||lpad(to_char(v_regel),4,'0')||'"}');
    end; For specification of the JSON notation see [url http://www.json.org/]http://www.json.org/
    To see this in action I have set up a [url http://apex.oracle.com/pls/apex/f?p=VANBAREN_FORUM_TRY_OUT:TBDA:0&c=VANBAREN]demo.
    Change the manager and the manager email will change.
    I hope this is enough to get you started.
    If you have a problem in translating the above code to your specific situation set something up on apex.oracle.com. Then the help can be more specific to.
    Nicolette

  • How to freeze the columns in Classical reports using vertical scroll

    Hi All,
    I am facing one problem that when i am scrolling down the page in the report     output ,the columns in the report are moving upward.I want to freeze those columns . Please give me the solution for to freeze the columns in classical report when i scroll vertically.
    With Regards,
    R.P.Sastry

    Put ur colum headers in TOP-OF-PAGE Event.
    this will sole ur problem.
    reward if useful.
    Regards,
    Vimal

  • How to fix the first field or column in classical report while scrolling

    i want to know, how to fix the first field or column in classical report while scrolling
    horizontally. the first  should be constant when i scroll the report horizontally .
    please help me.
    it's urgent.

    Hi,
    Suppose your first field is itab-matnr.
    WRITE :/ itab-matnr.
    SET LEFT SCROLL-BOUNDARY.
    WRITE :/......."Remianing fields

  • Group above and left classic reports

    how can i group above and left in an existing classic reports? is there any document around here please share it to me.

    >
    Please update your forum profile with a real handle instead of "user13653962".
    how can i group above and left in an existing classic reports? What does "group above and left" mean? A demonstration layout on apex.oracle.com or here (using tags<tt>\...\</tt> tags to preserve formatting) would be helpful.
    The options for break formatting on classic reports are:
    <li>The basic built-in control break features.
    <li>Simple DIY break layout on any number of columns using analytics in the source query: +{message:id=10679160}+
    <li>Complex report layout with multi-level headings using analytics in the source query and a custom named column report template with conditional row templates: +{message:id=9816577}+
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.

  • Need help in sorting a column in classic report

    Hi I am trying to create and classic report and I need to do sorting on the columns. Also I am using a select list to filter the records in the column. When I am not using the select list the sorting is working but when I am using the selcet list and select the sort option then it is showing error. Can anyone help...
    Thnaks,
    Rik

    Select lists prior to v4 will sort on the return value. In v4, it sorts on the display value (as you're probably expecting). There's nothing really for you to fix here except if it's really important, see if you can get upgraded to v4.

  • How to create a dynamic action from link column in classic report

    I Have an apex page that display a modal window utilizing jquery. In the modal window I have a classic report with a link column that I want to capture its click event.
    I was thinking I could create a dynamic action with selection type=jquery selector. Not for sure if I need to do anything on link column and do not know the syntax
    for jquery selector. Would appreciate any help or direction???

    Thank you for your response. I am very new to Jquery so don't understand all that well.
    What I did:
    I created a dynamic action
    Event: Click
    Selection Type: jQuery Selector
    jQuery Selector: tdheaders
    Created True Actions
    I created an alert to see if this is being executed.
    Alert 'I made it here'
    What I have:
    I created a report region with the following query:
    Select empno, ename, 'SELECT' from emp
    where (ename like '%'||ltrim(rtrim(:P2_SEARCHPU))||'%'
    or :P2_SEARCHPU is null)
    I created 'SELECT' column as Link Column
    Report Attributes
    Link Text Select
    Target Page in this Application
    Page 2
    Region Header
    <div id="ModalForm2" title="Employee List" style="display:none">
    Region Footer
    </div>
    This report is displayed in a modal form when a button is clicked.
    Code for modal window in Page Header
    <script type="text/javascript">
    $( function() {
    $('#ModalForm2').dialog(
    { modal : true ,
    autoOpen : false ,
    buttons : {
    Cancel : function() {
    closeForm2();
    function openForm2()
    $('#ModalForm2').dialog('open');
    function closeForm2()
    $('#ModalForm2 input[type="text"]').val('');
    $('#ModalForm2').dialog('close');
    </script>
    I am trying to capture the click event on the link column of the report in the modal form. I want to pass a couple of column values
    back to the main form and close the modal window. I do not want to do the submit that happens if I click on the link column and link back to the main page(2)
    If I let the submit to happen, all other entered fields are cleared on my main form.
    Just don't understand the jQuery selector. I have no problem catching the button clicks on the modal form.

  • OnMouseOver displays Tooltip from hidden column of classic report

    What: The Goal:
    Make easily available more information than fits on one line of the screen without using multiple fixed lines.
    Background:
    Classic report with 18 data items (columns) visible. Has Search box and user can choose number of rows displayed.
    A couple data items can be long (20-30 characters) compared to the screen width. The right-most data item might run 100 characters.
    Proposed Strategy:
    1) Display the first n characters of the long item(s) on the report.
    2) On onMouseOver display the entire item.
    Proposed Approach:
    1) For each column with long data, hold the entire value in a hidden item.
    2) Display long (hidden) value in tooltip (bubble?/balloon?) upon onMouseOver of that value.
    Note: This is not ToolTip/Help for a column but display of the long value for a specifc item in the row of a column.
    Sought After Feature:
    1) To reduce maintenance, would like to implement for multiple columns using a single common block of code.
    Question:
    Given other approaches you know, is this a good approach to achieve the goal? Alternative approaches?
    Howard

    Well it took a while and you really made me work for this. :)
    For the end result hover on the Job Ln Nm column.
    http://apex.oracle.com/pls/apex/f?p=991202:1
    I added some old code I had laying around. It adds a bubble that will stay up for 5 sec or until you click away or hover on another record.
    What I would do at this point is just truncate (with a substr) the length of the Long Nm to something short. Use whatever indicator you want for the hover. Like for example these glasses <img src="#IMAGE_PREFIX#Fndview1.gif"> It's really up to you.
    You'll see there's an AJAX Callback PLSQL where you can retreive and format the content of the popup to whatever you want. You could make it real pretty.
    Here's what I did:
    1. New ShowJob javascript procedure.
    function ShowJob(pThis,pId){
         this.dTimeout;
         clearTimeout(this.dTimeout);
         this.dGet = dGet;
         this.dShow = dShow;
         this.dCancel = dCancel;
         var get = new htmldb_Get(null,$v('pFlowId'),'APPLICATION_PROCESS=FULL_LONG_NAME',$v('pFlowStepId'));
         this.dGet();
         return;
         function dGet(){
               this.dTimeout = setTimeout("this.dCancel()",6500);
              get.addParam('x01',pId);
               get.GetAsync(dShow);
         function dShow(){
               $x_Hide('rollover');
               if(p.readyState == 1){
               }else if(p.readyState == 2){
               }else if(p.readyState == 3){
               }else if(p.readyState == 4){
                     $x('rollover_content').innerHTML = p.responseText;
                     $x_Show('rollover');
                var l = findPosX(pThis)+pThis.offsetWidth+5;
                     var t = findPosY(pThis);
                $x_Style('rollover','left',l + 'px');
                     $x_Style('rollover','top',t + 'px');
    // This math would center on the vertical           
    //                 $x_Style('rollover','left',findPosX(pThis)+pThis.offsetWidth+5);
    //                 $x_Style('rollover','top',findPosY(pThis)-($x('rollover').offsetHeight/2)+($x(pThis).offsetHeight/2));
                   document.onclick = function(e){
                   dCheckClick(e);
               }else{return false;}
         function dCheckClick(e){
              var elem = html_GetTarget(e);
              try{
                        var lTable = $x_UpTill(elem,"DIV");
                        if(lTable.id!='rollover_content'){dCancel();}
                        else{}
              }catch(err){dCancel();}
         function dCancel(){
               $x_Hide('rollover');
              document.onclick = null;
               get = null;
    }2. Rollover div on the page footer (div id="rollover"...). Of course this could be a region also.
    &lt;div id="rollover" style="display:none;color:black;background:#FFF;border:2px solid #369;width:290px;position:absolute;padding:4px;">
    &lt;div id="rollover_content">&lt;/div>
    &lt;/div>
    3. PLSQL AJAX Callback. : FULL_LONG_NAME
    -- select your value with apex_application.g_x01
    htp.p('You hover over ' || apex_application.g_x01 || '<br>');
    htp.p('Here is the Full Long Name: XXXXXXX XXXXXXX XXXXXXX 1234565');4. Changed Long Nm column to be a link with the onmouseover call that calls the new procedure ShowJob. I made the assumption that with the NUM parameter you could fetch the full record of what you need.
    onmouseover="ShowJob(this,#NUM#)"
    That should be it.
    Let me know what you think.
    -Jorge
    Edited by: jrimblas on Apr 22, 2013 1:05 PM: Added code to post for completion

  • Showing particular row in a color depending on a column in classical report

    Hi,
    I have a classical report with a column as "Affirmation Status". This column can take three value as "Affirmed, Rejected or NA". My requirement is I have to show all row in one color like red wherever it has value affirmed, and all row in color like green wherever it is rejected.
    Pls give some idea.

    Hi chandra Bhanu,
    create PL/SQL Dynamic content region for your report for showing the row in different color on the basis of conditions
    i am giving you sample code..you can modify according to your requirement
    declare
    cursor emp_data
    is
    select empno,ename,sal,status from emp;
    begin
    htp.p('<table width="100%" bgcolor="#DCE6F1"><tr>');
    htp.p('<td width ="20%"><b>Empno</b></td>');
    htp.p('<td width ="20%"><b>Employee Name</b></td>');
    htp.p('<td width ="20%"><b>Salary</b></td>');
    htp.p('<td width ="20%"><b>Status</b></td>');
    htp.p('</tr></table>');
    for c_emp_data in emp_data
    loop
    htp.p('<table width="100%"><tr><td>');
    if c_emp_data.status = 'Affirmed' then
    htp.p('<TABLE width="100%"><tr bgcolor="#FF0000">');
    htp.p('<td width ="25%">'||c_emp_data.empno||'</td>');
    htp.p('<td width ="25%">'||c_emp_data.ename||'</td>');
    htp.p('<td width ="25%">'||c_emp_data.sal||'</td>');
    htp.p('<td width ="25%">'||c_emp_data.status||'</td>');
    htp.p('</tr></table>');
    elsif  c_emp_data.status = 'Rejected' then
    htp.p('<TABLE width="100%"><tr bgcolor="#006400">');
    htp.p('<td width ="25%">'||c_emp_data.empno||'</td>');
    htp.p('<td width ="25%">'||c_emp_data.ename||'</td>');
    htp.p('<td width ="25%">'||c_emp_data.sal||'</td>');
    htp.p('<td width ="25%">'||c_emp_data.status||'</td>');
    htp.p('</tr></table>');
    else
    htp.p('<TABLE width="100%"><tr>');
    htp.p('<td width ="25%">'||c_emp_data.empno||'</td>');
    htp.p('<td width ="25%">'||c_emp_data.ename||'</td>');
    htp.p('<td width ="25%">'||c_emp_data.sal||'</td>');
    htp.p('<td width ="25%">'||c_emp_data.status||'</td>');
    htp.p('</tr></table>');
    end if;
    htp.p('</td></tr></table>');
    end loop;
    end;Hope this will helps you.
    Regards,
    Jitendra

  • How to Breake Column in Classic report.

    Dear Friends
    i want to display Employee information so I have created classicreport using below sql query
    select
    EMP_ID,
    FIRST_NAME,
    MIDDLE_NAME,
    LAST_NAME,
    GENDER,
    BLOOD_GROUP,
    MARITAL_STATUS,
    ADDRESS_1,
    ADDRESS_2,
    CITY_NAME,
    PINCODE,
    PHONE_NO,
    MOBILE_NO,
    FAX_NO,
    OFFICE_NO,
    EXT_CODE,
    EMAIL_ID,
    ANNIVERSARY,
    BIRTHDAY,
    QUALIFICATION,
    DESIGNATION,
    MGR_CODE,
    DATE_OF_JOINING,
    EMP_IMAGE,
    PASSPORT_NO,
    SKYPE_ID,
    ACTIVE_FLAG
    from DEMO_EMP  where EMP_ID =:APP_USER
    Problem is all coloumn display in report but i need to display 4 column and  then 4 column in right side and  then 4 column in right side.
    I need breake after 4 column .How can i do this.
    Thanks

    modify your query and include ROW_NUMBER, move everything to an inline view and include a CASE statement to hide some of the values... wow, very cryptic.. there is an example here:
    SQL*Plus or Report style Break Groups in SQL Query&lt;/title&gt; //&lt;title&gt;AMIS Technology Blog &amp;raquo; SQL*…

  • How to Link column header only in classic Report in APEX 4.1

    Hello Everybody,
    Probably there is a simpler way to do this, but I am not sure. I want a link on column header in Report on a specific column. The link will take me to new region or a page.
    How to achieve this in APEX 4.1
    Theme : Blue 2
    Database 11g
    I see there is a column link opiton, but that creates link for every row in that column on a specific icon, I just want link on a title of the column in Classic Report.
    For Example,
    if there are two columns Name and Client ID, which has 10 records to display on a classic report. I wan the link on Client ID on header only not on the records.
    Can anybody provide some simple solution for this.
    Thanks,
    --CP
    Edited by: cpora007 on Jun 22, 2012 10:38 AM

    Hello,
    I didn't understand, what do you mean by default it is going to sort popup. I have a classic report based on SQL, which generates a report with static header, there is no sort or any other link on that.
    I added a link in column header name with an anchor. It works and takes to the new page.
    But it is not a proper solution. A solution based on Jquery dynamic action is preferable. Also the preferred option is that the link opens a hidden region of the same page at the same location of the report and the report gets hidden. after the procession on the form region and submitting the update/ insert process. the report region shows up with the change data.
    Moving on to new page is 2nd option, if the first do not work.
    In the JavaScript, put: apex.submit("GO_TO_MY_OTHER_PAGE");
    On the page, create a Branch to the Second page. Set the condition to Request=Expression 1. Set the request to "GO_TO_MY_OTHER_PAGE"
    On which page I need to create a branch?, Is it on the report page or the form page.
    Thanks a lot for the response. I appreciate your kind efforts in this regard.
    --CP                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to do Grouping columns in XL-Report (Report Composer)

    hi Guys,
    Can anyone explain regarding the Issue of "Grouping the Columns in XL-Report" how to do this? ie especially in Report Composer how to do Grouping in this XL-Report
    can any one explain briefly without  giving any URL's. Can any suggest r views abut this issue.Can any one help regarding this issue asap?
    Regards
    ANAND

    Hi there
    Highlight the column on which you want to group. In the Advanced report builder (The window to the left of the spreadsheet) click on column summary (the icon with the + and what looks like a gate). Now you can put in the criteria for the grouping in that window.
    Hope this helps.
    Regards
    Danie

  • Classic Report + jQuery help me understand

    Hi All, need some help to understand couple of things
    I had a theoretically small thing to achieve on one of my APEX page (inline editing of one column).
    Classic report allow me to select a named LOV as a type of the column, and using ajax i was able to update changes into database.
    But the method i have achieved this functionality totally blocked me.
    Here how I did it:
    1) I have assign a static id to my report region (Move)
    2) In Element Attributes on that column i add on change event onchange="javascript:save(this);" 3) In function save() i have next record to select the value and primary key to be able to update the change in the database
    function save(pThis) {
    var newVal = pThis.value;
    var currIndex = $('select[name="'+pThis.name+'"]').index($x(pThis.id));
    currIndex  = currIndex + 1;
    var myid = $("#report_Move table.uReport tr:eq("+currIndex+") td[headers='PK_ID']").text();
    ... ajax call here is ususal using myid as PK and newVal
    }My HTML generated by APEX:
    <section class="uRegion  clearfix" id="Move" aria-live="polite">
      <div class="uRegionHeading">
        <h1>Test<a class="eLink" title="Edit" href="javascript:apex.navigation.popup.url('f?p=4000:374:1058298648647::::P374_ID,FB_FLOW_ID,FB_FLOW_PAGE_ID:5508319451889760,555,6');"><img src="/i/e.gif" alt="Edit" class="eLink"></a></h1>
        <span class="uButtonContainer">
        </span>
      </div>
      <div class="uRegionContent clearfix">
        <div id="report_5508319451889760_catch"><table class="uReportContainer" id="report_Move" summary="">
    <tbody class="uReportPagination">
    <tr><td></td></tr>
    </tbody>
    <tbody class="uReportBody">
    <tr><td>
    <table summary="Test" class="uReport uReportStandard">
    <thead><tr><th align="left" id="PK_ID">PK_ID</th><th align="left" id="USER_NAME">USER_NAME</th><th align="left" id="CART_DATE">CART_DATE</th><th align="left" id="SELECTED">SELECTED</th><th align="left" id="EDIT_LINK">Edit Link</th></tr></thead>
    <tbody>
    <tr><td headers="PK_ID">1210161455014</td><td headers="USER_NAME"><label for="f01_0001" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0001"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">05-DEC-12</td><td headers="SELECTED">Y</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455009</td><td headers="USER_NAME"><label for="f01_0002" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0002"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">05-DEC-12</td><td headers="SELECTED">N</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455013</td><td headers="USER_NAME"><label for="f01_0003" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0003"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">05-DEC-12</td><td headers="SELECTED">Y</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455017</td><td headers="USER_NAME"><label for="f01_0004" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0004"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">05-DEC-12</td><td headers="SELECTED">N</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455032</td><td headers="USER_NAME"><label for="f01_0005" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0005"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">05-DEC-12</td><td headers="SELECTED">N</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455031</td><td headers="USER_NAME"><label for="f01_0006" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0006"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">05-DEC-12</td><td headers="SELECTED">N</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455021</td><td headers="USER_NAME"><label for="f01_0007" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0007"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">05-DEC-12</td><td headers="SELECTED">N</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455007</td><td headers="USER_NAME"><label for="f01_0008" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0008"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">04-DEC-12</td><td headers="SELECTED">N</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455010</td><td headers="USER_NAME"><label for="f01_0009" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0009"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">03-DEC-12</td><td headers="SELECTED">Y</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455008</td><td headers="USER_NAME"><label for="f01_0010" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0010"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">03-DEC-12</td><td headers="SELECTED">Y</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455006</td><td headers="USER_NAME"><label for="f01_0011" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0011"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">03-DEC-12</td><td headers="SELECTED">Y</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455004</td><td headers="USER_NAME"><label for="f01_0012" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0012"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">03-DEC-12</td><td headers="SELECTED">Y</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455003</td><td headers="USER_NAME"><label for="f01_0013" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0013"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">03-DEC-12</td><td headers="SELECTED">N</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455019</td><td headers="USER_NAME"><label for="f01_0014" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0014"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">03-DEC-12</td><td headers="SELECTED">N</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    <tr><td headers="PK_ID">1210161455028</td><td headers="USER_NAME"><label for="f01_0015" class="hideMeButHearMe">USER_NAME</label><select name="f01" onchange="javascript:test(this);" id="f01_0015"><option value="0"></option><option value="11">SHELF 1</option><option value="12">SHELF 2</option><option value="13">SHELF 3</option><option value="14">SHELF 4</option><option value="15">SHELF 5</option><td headers="CART_DATE">03-DEC-12</td><td headers="SELECTED">N</td><td headers="EDIT_LINK"><a href="#"><img src="/i/edit_big.gif" alt=""></a></td></tr>
    </tbody>
    </table>
    </td>
    </tr>
    </tbody>
    <tbody class="uReportPagination">
    <tr><td colspan="5" align="right"><table summary=""><tbody><tr><td class="pagination"></td><td class="pagination"></td><td nowrap="nowrap" class="pagination"><span class="fielddata">1 - 15</span></td><td class="pagination"><a href="javascript:apex.widget.report.paginate('5508319451889760', {min:16,max:15,fetched:15});" class="uPaginationNext">Next <img src="/i/f_spacer.gif" alt=""></a></td><td class="pagination"></td></tr></tbody></table></td></tr>
    </tbody>
    </table>
    <div class="uReportDownloadLinks"></div></div>
      </div>
    </section>Is there any other more elegant solution to achieve this inline editing? because this one is relaying on theme on uReport class, on things that i can't control.
    Also can you tell me please if table.uReport is correct or table.uReportStandard is correct? How to address the class in jQuery if in HTML it is "uReport uReportStandard"?
    Thanks a lot
    Andrei

    There is probably nothing wrong with the logic board. The panic was certainly not caused by the manufacturing defect common in that model.
    Remove the Sophos product by following the instructions on this page. If you have a different version, the procedure may be different.
    Back up all data before making any changes.

  • First group heading below displays below column headings using Template 23 Classic Report using Repeat Headings on Break

    Hello,
    I am migrating an application from APEX 3 to APEX 4.2 on one thing I notice with the classic reports when I bring them into Template 23 is that the first break section has the break row display below the column headers for that section while the remaining rows correctly have it display above the headers on subsequent group sections.
    When I look a the code in firebug I can seen that the all tables but the first, the break row is being included as the last row of the previous table so I can see how this would not work for the break since.
    I have tow questions.
    1. Is this really intentional because it doesn't seem  terribly elegant and my users zeroed in on it right away as a perceived bug.
    2. Is there a reasonable work around that still uses Repeat Headings on Break? I have multiple reports on the same page in places so changing over to interactive reports is not a silver bullet for me in this case.
    Example of issue can be seen at apex.oracle.com at  Home
    Thanks,
    Brad

    Roadling wrote:
    Hello,
    I am migrating an application from APEX 3 to APEX 4.2 on one thing I notice with the classic reports when I bring them into Template 23 is that the first break section has the break row display below the column headers for that section while the remaining rows correctly have it display above the headers on subsequent group sections.
    1. Is this really intentional because it doesn't seem  terribly elegant and my users zeroed in on it right away as a perceived bug.
    The Standard report template definition in theme 23 contains thead and tbody elements:
    Before Column Heading
    <thead>
    Column Heading Template
    <th #ALIGNMENT# id="#COLUMN_HEADER_NAME#">#COLUMN_HEADER#</th>
    After Column Heading
    </thead>
    <tbody>
    After Rows
    </tbody>
    </table>
    </td>
    </tr>
    </tbody>
    <tbody class="uReportPagination">
    #PAGINATION#
    </tbody>
    </table>
    <div class="uReportDownloadLinks">#EXTERNAL_LINK##CSV_LINK#</div>
    This is intentional, following best practice for marking up HTML tables. What is not intended is the problem that arises when this template is used with the Repeat Headings on Break break formatting option. The repeated headings result in the table consisting of tag soup containing multiple incorrectly constructed tbody and thead elements, which is invalid.
    2. Is there a reasonable work around that still uses Repeat Headings on Break? I have multiple reports on the same page in places so changing over to interactive reports is not a silver bullet for me in this case.
    Create a copy of the Standard report template as Standard (break formatting) for use with break reports, remove the thead and tbody tags from the template definitions, and change the break reports to use the new template. (Or, if you primarily have break reports using the Standard template, keep the tags in the copy and remove them from the original to minimize the number of reports you have to edit.)
    Personally I'd create a custom row report template for complex break reports in order to be able to have complete control over the structure and presentation.

Maybe you are looking for

  • Photoshop CS6 PDFs will not open in Adobe Acrobat

    Photoshop CS6; Windows 8 I've been using Photoshop to create reduced size PDFs. I've never had a problem with CS6 until the passed week. When I click to save for PDF no "error" dialogue box appears. However, when I try to open the new file in Adobe A

  • Can't seem to find my jsp

    i'm a first timer here and thanks to kevin yank, i am able to get the message "Apache/1.3.22 (Win32) running ..." and "Starting service Tomcat-Standalone Apache Tomcat/4.0.1 Starting service Tomcat-Apache Apache Tomcat/4.0.1" when starting the server

  • Issue with updation of table BBP_PDBEI

    Hello, I am facing a strange issue. I created an extended classic PO. It is properly replicated in the backend. But the table BBP_PDBEI is not getting filled. The only details I found in BBP_PD were BE_OBJECT_TYPE as BUS2201 and BE_OBJECT_ID as 1. BB

  • How to give range value and different value in headerof alv report

    Hi All, If User is giving range value 10 to 20 and also wants 25 28 30 and these all values should be displayed in Alv header.How is it possible.I have tried by using if variable-option eq 'BT'                       elseif variable-option eq 'EQ'.the

  • You can't open the application install because PowerPC applications are no longer supported?

    I have just recently got a textbook for one of my collge courses and it came with a CD to use for tutoring and exercises. When I inserted the CD a box came up, as if it was ready for me to install, but there is a Slash through Install. I clicked on i