Widget Failure on Interactive Report

I have a page with an Interactive Report that is getting the following error when entering a search in the search field.
{"dialog":{"uv":true,"row":[{"V":"Widget Failure
ORA-06502: PL/SQL: numeric or value error: character string buffer too small,
worksheet"}]}}
I am able to search using the report filters (from the Actions menu) without getting this error. I am also able to search without any problems if I specify the column in the Search Field drop down. So it seems the error is only occurring when entering a search in the search field and not selecting a report column so that it performs a row contains search. Could there be a limit to the number of columns allowed in an interactive report when using this search feature? Or could it be that one of my columns is too big?
Any ideas are much appreciated.
Thanks,
Andrew

Hi Andrew,
I have the same issue.. did you figure it out?
Dana

Similar Messages

  • Problem with DATE in Interactive Report

    Hello,
    In Interactive Report when I click on the header of any column with DATE datatype, nothing happens due to Javascript error:
    Line: 2
    Char: 14838
    Error: Expected identifier, string or number
    Code: 0
    Click on any other column works perfectly as well as sorting by DATE column from Action Menu.
    I tried to set different format masks for my DATE column and for Application Date Format, but it didn't help.
    Finally I found out that this error disappeared when in properties of my DATE column in "List of Values" section I set "Report Filter Date Ranges" = 'Past' instead of 'All'. In this case I get the list with values "Last 5 Years", "Last 2 Years", etc, but not with "Next Hour", "Next 2 Hours", etc...
    Can someone help me on this issue, because this functionality might be usefull and also it's not very convinient to change this property for all date columns in all Interactive Report.
    By the way, my database version is 9.2.0.5 - maybe it can cause such problem?
    Best regards,
    Vladimir

    Hi Marco,
    1) French Canada (fr-ca)
    2) This filter works
    More informations about the error when I call the function gReport.controls.widget():
    &lth;div id="apexir_DT" style="text-align: center;" onclick="gReport.controls.widget(this.id)"&gth;Date de naissance&lth;/div&gth;
    *************POST*************
    flowid     48579
    p_flow_step_id     5
    p_instance     1412541985987586
    p_request     APXWGT
    p_widget_action     SORT_WIDGET
    p_widget_mod     CONTROL
    p_widget_name     worksheet
    x01     5775894815382747091
    x02     5775899227924757464
    x03     apexir_DT
    *************RESPONSE*************
    {"dialog":{"id":"1966481623126322611","hide":["apexir_info","apexir_computation"],"coltype":"DATE","filter"
    :false,"uv":true,{"dialog":{"uv":true,"row":[{"V":"Failure<br />ORA-20001: get_dbms_sql_cursor error
    ORA-00923: FROM keyword not found where expected"}]}}
    Louis-Guillaume
    Homepage: http://www.insum.ca
    Blog: http://insum-apex.blogspot.com

  • Interactive Report (IR) column heading: filtered items number & flashlight

    Hello everyone
    several hours of searching through the forum did not provide me with leads or answers to 2 questions. Both are related to the IR column heading menu and options. Let's start with a copy of the relevant portion of the interactive report help screen:
    Column Heading Menu
    Clicking on any column heading exposes a column heading menu.
    [snip]
    Text Area is used to enter case insensitive search criteria (no need for wild cards). Entering a value will reduce the list of values at the bottom of the menu. You can then select a value from the bottom and the selected value will be created as a filter using '=' (e.g. column = 'ABC'). Alternatively, you can click the flashlight icon and the entered value will be created as a filter with the 'LIKE' modifier (e.g. column LIKE '%ABC%').
    List of Unique Values contains the first 500 unique values that meet your filters. If the column is a date, a list of date ranges is displayed instead. If you select a value, a filter will be created using '=' (e.g. column = 'ABC').
    Q1: Why do I not see a flashlight icon? I looked everywhere in the report definition to "enable" it, to no avail.
    Q2: Although we've found IRs to be incredibly useful and embraced by end users, we are having issues when dealing with large datasets. Let's look at searching for people's first/last name in our CONTACTS table. The table is ~28,000 names long. If one attempts to use Column Heading menu to "filter" for any name outside the first 500 unique values, the search does not work. Yes, I know that a workaround is to use Actions Menu icon filter... but, it sure is misleading to have a search which does not go beyond letter B in the list of last names. Furthermore, I do not see a way to DISABLE Column Heading Text Area, and avoid user confusion.
    I suspect that "List of Unique Values contains the first 500 unique values" was set for the performance purposes. Is there a way to set that number anywhere? Have it customized for each column? (columns county and state could be <100, for example)
    Thanks an advance to any advice.
    Vojin

    @Prabodh: what you say is only changing the default image for the column selector at the search bar level. What i think is being looked for is an icon on the popup when a column header is clicked in an IR. Don't bother: there is none.
    @Vojin, Tonibony:
    I also ran into this problem with IRs and the useless column header box. If you want to hide the unique values list, it is a bother. First of all, you can't disable the finding of values, this is embedded in the widget ajax code. Then if you want to just hide the list, there is no real event you can hook up to. The poping up of the box is an ajax callback, and is part of the IR javascript, but this callback does not trigger any event (no apexafterrefresh for example, which is understandable). I've worked around this by overriding/extending the method which is called when ajax is done loading within the IR code. Here is a piece of code which does this (call it on page load):
       // _Finished_Loading is called when the IR is done with a GET action
       // because the posts are synchronous in this report, and no events
       // or hooks are available, the best way to preserve functionality
       // yet extending it is to override the original function, yet
       // keep the base code
       // apexafterrefresh cant be used since it is not triggered after
       // the widget ajax
       var or_Finished_Loading = gReport._Finished_Loading;
       gReport._Finished_Loading = function(){
           //overriden, but still have to call orinigal!
          or_Finished_Loading();
          //SORT_WIDGET is the widget containing all the header elements
          if(gReport.current_control=='SORT_WIDGET'){
             // hide the original dropdown box
             $("#apexir_rollover_content").hide();
       };If you're interested, i've recently developed a plugin for use in my interactive reports which works around some of these limitations. For me, the headers are much more userfriendly than the actions > filter menu. So what i've done is: hide the orignal dropdown, and turn the searchfield into an autocompletion field, which will progressively search through the distinct column values in the IR with ajax. I've even made an option to have the searching behave like a "contains" or a "like". I'm working on a post about it, with background, documentation and source code. I'll add a post here when i finish it up, you can see if that helps you.
    I also would like to add a button later on which will simply add the entered value as a "like %value%" filter. I know how to do this and what to do, i'm just a bit short on time at the moment. I actually think that adding the button in the layout may be the hardest part... :')

  • Adding print button to interactive report

    For now I have the downloaded to PDF option checked so the user can print an interactive report via the widget.
    I would like to have a print button on the report also.
    Has anyone got any of the java script stuff working off of a button?

    Hi willjamu ,
    All you should have to do is call the 'PDF' request to download the same report the drop down will create.
    f?p=355:14:3381437251536222:PDF::::
    I hope I was able to answer your question let me know.
    Mike

  • Interactive Reports in Firefox 3.0.5

    Hi!
    When running an interactive report in Firefox 3.0.5, the pull-down menu next to the cog icon does not display right over the icon as it does in IE. Rather, the menu displays at the bottom of the page below the report area.
    Anyone knows why is this and how it can be fixed?
    Thx!
    Marc

    ...and FWIW, here's the whole page code...
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>W-9 File Upload &amp; Search</title>
    <link rel="stylesheet" href="/apex_images/themes/theme_15/theme_V3.css" type="text/css" />
    <style type="text/css">
    <!--
    body {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-size: 12px;
         margin: 0px;
         padding: 0px;
         line-height: 16px;
         width: 100%;
    #header {
         overflow: hidden;
         border-bottom-width: 2px;
         border-bottom-style: solid;
         border-bottom-color: #0099CC;
    #wrap {
         overflow: hidden;
         margin: 0px;
    #primary {
         float: left;
         width: 100%;
         border-top-width: 10px;
         border-top-style: solid;
         border-top-color: #D7EDFE;
         margin: 0px;
         padding: 0px;
    #secondary {
         width: 25%;
         float: left;
         border-top-width: 10px;
         border-top-style: solid;
         border-top-color: #D7EDFE;
         display: none;
    #footer {
         clear: both;
    #header #column-1 {
         float: left;
         width: 25%;
    #header #column-2 {
         float: left;
         width: 50%;
    #header #column-3 {
         float: right;
         width: 25%;
         text-align: right;
    table.standardLook tr:hover {
         background-color: #DDE9FE;
    #tabs {
    clear:both;
    width:100%;
    #tabs ul {
         float:right;
         list-style-type:none;
         margin:0px;
         padding:0px;
    #tabs ul li {
         float: left;
         margin-right:0px;
         background-image: url(https://dev-navcentral.navigators.org/apex_images/themes/theme_15/tab_open.gif);
         background-repeat: no-repeat;
    #tabs ul li.current {
        background-image: url(https://dev-navcentral.navigators.org/apex_images/themes/theme_15/tab_open_c.gif);
    #tabs ul li a {
         float:left;
         padding-left:0px;
         padding-right:9px;
         font:12px Arial;
         text-decoration:none;
         font-weight:bold;
         color:#336699;
         line-height:19px;
         height: 19px;
         margin-left: 10px;
         background-image: url(/apex_images/themes/theme_15/tab_center.gif);
    #tabs ul li.current a {
         background-image: url(/apex_images/themes/theme_15/tab_center_c.gif);
         margin-left: 12px;
         color: #CEDFF0;
    #tabs ul li a:hover {
         color: #003366;
    #tabs ul li.current a:hover {
         color: #ffffff;
    -->
    </style>
    <script src="/apex_images/javascript/apex_ns_3_1.js" type="text/javascript"></script>
    <script src="/apex_images/javascript/apex_3_1.js" type="text/javascript"></script>
    <script src="/apex_images/javascript/apex_get_3_1.js" type="text/javascript"></script>
    <script src="/apex_images/javascript/apex_builder.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    /*Global JS Variables*/
    var htmldb_Img_Dir = "/apex_images/";
    //-->
    </script>
    <link rel="stylesheet" href="/apex_images/css/apex_3_1.css" type="text/css" />
    <!--[if IE]><link rel="stylesheet" href="/apex_images/css/apex_ie_3_1.css" type="text/css" /><![endif]-->
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    </head>
    <body >
    <div id="wrap">
      <form action="wwv_flow.accept" method="post" name="wwv_flow" id="wwvFlowForm" >
      <input type="hidden" name="p_flow_id" value="275" id="pFlowId" />  <input type="hidden" name="p_flow_step_id" value="1" id="pFlowStepId" />  <input type="hidden" name="p_instance" value="1054298689687563" id="pInstance" />  <input type="hidden" name="p_page_submission_id" value="4137293142420641" id="pPageSubmissionId" />  <input type="hidden" name="p_request" value="" id="pRequest" />    <div id="header">
        <div id="column-1">
          <br />
        </div>
        <div id="column-2">
        </div>
        <div id="column-3">
          <br />
        </div>
        <div id="tabs">
          <ul>
            <li class="current"><a href="javascript:doSubmit('T_PAGE_1');">W-9 File Upload</a></li><li><a href="javascript:doSubmit('T_UPLOAD EXCEPTIONS');">Upload Exceptions</a></li><li><a href="javascript:doSubmit('T_USERS');">Users</a></li>
          </ul> 
        </div>
        <div style="clear:both;"></div>
      </div>
      <div id="primary">
        <div id="primary-header">
          <div id="R1102609521283413" class="t15breadcrumb"><ul></ul></div>
        </div>
        <div id="notification">
        </div>
        <table summary="" cellspacing="0" cellpadding="0" border="0" width="100%"><tr><td align="right"><table class="t15Button" cellspacing="0" cellpadding="0" border="0"  summary=""><tr>
    <td class="t15L"><img src="/apex_images/themes/theme_15/button-l.gif" alt="" /></td>
    <td class="t15C"><a href="javascript:doSubmit('UPLOAD_FILES')">Upload Files</a></td>
    <td class="t15R"><img src="/apex_images/themes/theme_15/button-r.gif" alt="" /></td>
    </tr></table></td></tr></table><table width="100%" border="0" cellspacing="0" cellpadding="0" id="R1118932641117463" class="t15ReportsRegion" summary="">
    <tr>
    <td valign="bottom" class="t15RegionHeader">W-9 Uploaded Files</td>
    <td align="right" class="t15ButtonHolder">   </td></tr>
    <tr>
    <td colspan="2" valign="top" class="t15Body"><div id="apexir_WORKSHEET_REGION" class="apex_worksheet"><div id="apexir_DETAIL" class="apex_detail"></div><div id="apexir_REPORT" class="apex_report"><div id="apexir_TOOLBAR" class="apex_toolbar"><table border="0" cellpadding="0" cellspacing="0"><tr><td valign="top"><table class="apex_finderbar" cellpadding="0" cellspacing="0" border="0"><tbody><tr><td valign="top" class="apex_finderbar_left_top"><img src="/apex_images/1px_trans.gif" class="spacer" width="10" height="8" alt="" /></td><td rowspan="3" class="apex_finderbar_middle" valign="middle"><img src="/apex_images/htmldb/builder/finder_w_dropdown.gif" id="apexir_SEARCH_ICON" onclick="gReport.controls.search_column();" /><input type="hidden" id="apexir_CURRENT_SEARCH_COLUMN" /><div id="apexir_SEARCHDROP" style="display:none;"><br /></div></td><td rowspan="3" class="apex_finderbar_middle" valign="middle" id="apexir_SEARCH_COLUMN_DROP" ></td><td rowspan="3" class="apex_finderbar_left" valign="middle"><table class="formlayout" summary=""><tr><td nowrap="nowrap" align="right"></td><td  colspan="1" rowspan="1" align="left"><input type="text" size="30" maxlength="2000" value="" id="apexir_SEARCH" onkeyup="($f_Enter(event))?gReport.search('SEARCH'):null;" /></td><td nowrap="nowrap" align="right"> <label for="apexir_NUM_ROWS">Rows</label></td><td  colspan="1" rowspan="1" align="left"><select size="1"  id="apexir_NUM_ROWS"  name="p_accept_processing"><option  value="1">1</option><option  value="5">5</option><option  value="10">10</option><option selected="selected" value="15">15</option><option  value="20">20</option><option  value="25">25</option><option  value="30">30</option><option  value="50">50</option><option  value="100">100</option><option  value="200">200</option><option  value="500">500</option><option  value="1000">1000</option><option  value="5000">5000</option><option  value="100000">All</option></select></td><td nowrap="nowrap" align="right"></td><td  colspan="1" rowspan="1" align="left"><input type="button" value="Go"  onclick="gReport.search('SEARCH')"  /></td><td align="left" width="55"><div class="dhtmlMenuLG"><div class="dhtmlMenuItem" style="margin-right:0px;"><img src="/apex_images/ws/action_dropdown.gif"  class="dhtmlMenu" onclick="gReport.controls.menu(this,'apexir_ACTIONSMENU',false)" alt=""/></div><ul id="apexir_ACTIONSMENU" htmldb:listlevel="2" class="dhtmlSubMenu" style="display:none;"><li><a href="javascript:gReport.controls.display_column('COLUMN');" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Select Columns"><img src="/apex_images/ws/edit_col_32.gif" /> Select Columns</a></li>
    <li class="dhtmlMenuSep"><img src="/apex_images/1px_trans.gif"  width="1" height="1" alt=""  class="dhtmlMenuSep" /></li>
    <li><a href="javascript:gReport.controls.filter();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Filter"><img src="/apex_images/ws/filter_32.gif" /> Filter</a></li>
    <li><a href="javascript:gReport.controls.ordering();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Sort"><img src="/apex_images/ws/sort_32.gif" /> Sort</a></li>
    <li><a href="javascript:gReport.controls.ctrl_break();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Control Break"><img src="/apex_images/ws/break_col_32x24.gif" /> Control Break</a></li>
    <li><a href="javascript:gReport.controls.highlight();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Highlight"><img src="/apex_images/ws/highlight_32x24.gif" /> Highlight</a></li>
    <li class="dhtmlMenuSep"><img src="/apex_images/1px_trans.gif"  width="1" height="1" alt=""  class="dhtmlMenuSep" /></li>
    <li><a href="javascript:gReport.controls.flashback();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Flashback"><img src="/apex_images/ws/flashback_32x24.gif" /> Flashback</a></li>
    <li class="dhtmlMenuSep"><img src="/apex_images/1px_trans.gif"  width="1" height="1" alt=""  class="dhtmlMenuSep" /></li>
    <li><a href="javascript:gReport.controls.save();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Save Report"><img src="/apex_images/ws/disk_32.gif" /> Save Report</a></li>
    <li><a href="javascript:gReport.controls.reset();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Reset"><img src="/apex_images/ws/reset_32x24.gif" /> Reset</a></li>
    <li class="dhtmlMenuSep"><img src="/apex_images/1px_trans.gif"  width="1" height="1" alt=""  class="dhtmlMenuSep" /></li>
    <li><a href="javascript:popupURL('wwv_flow_utilities.show_ir_help?p_app_id=275&p_worksheet_id=1119004877117463&p_lang=en-us');" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Help"><img src="/apex_images/ws/help_32x24.gif" /> Help</a></li>
    <li class="dhtmlMenuSep"><img src="/apex_images/1px_trans.gif"  width="1" height="1" alt=""  class="dhtmlMenuSep" /></li>
    <li><a href="javascript:gReport.controls.download();" class="dhtmlSubMenuN" onmouseover="dhtml_CloseAllSubMenusL(this)" title="Download"><img src="/apex_images/ws/download_32x24.gif" /> Download</a></li>
    </ul></div></td></tr><tr><td></td><td  colspan="1" rowspan="1" align="left"></td></tr></table></td><td rowspan="3" width="30"><br /></td></tr><tr><td class="apex_finderbar_left_middle"><br /></td></tr><tr><td valign="bottom" class="apex_finderbar_left_bottom"><img src="/apex_images/1px_trans.gif" class="spacer" width="10" height="8"  alt="" /></td></tr></tbody></table></td></tr></table></div><div id="apexir_WORKSHEET"><div id="apexir_CONTROL_PANEL_DROP" class="drop_panel clearfix" style="display:none"></div><style id="apexir_WORKSHEET_CSS" type="text/css">
    </style>
    <input type="hidden" id="apexir_WORKSHEET_ID" value="1119004877117463" />
    <input type="hidden" id="apexir_APP_USER" value="23733090" />
    <input type="hidden" id="apexir_REPORT_ID" value="1119819810130548" />
    <div>
    <div id="apexir_CHART">
    </div>
    <div id="apexir_CALENDAR">
    </div>
    <div id="apexir_DATA_PANEL">
    <table summary="">
    <tr><td colspan="5" class="pagination" align="right"><span class="fielddata"> 1 - 15 of 1559 <a href="javascript:gReport.navigate.paginate('pgR_min_row=16max_rows=15rows_fetched=15')"><img src="/apex_images/jtfunexe.gif" title="Next" alt="Next" align="absmiddle" /></a></span></td></tr>
    <tr><td><script>var gTable = '1119004877117463'</script>
    <table summary="" cellpadding="0" cellspacing="0" border="0" class="apexir_WORKSHEET_DATA" id="1119004877117463">
    <tr><th><div id="apexir_DOWNLOAD" onclick="gReport.controls.widget(this.id)" style="text-align:center;">Download</div></th><th><div id="apexir_FILENAME" onclick="gReport.controls.widget(this.id)" style="text-align:center;">Filename</div></th><th><div id="apexir_DATE_UPLOADED" onclick="gReport.controls.widget(this.id)" style="text-align:center;">Date Uploaded</div></th><th><div id="apexir_ELIMINATE" onclick="gReport.controls.widget(this.id)" style="text-align:center;">Delete</div></th></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23759474_12032008_Conservative_Baptist_Foreign_Mission.pdf%2C1&cs=3BE46CEC54B25D9045EA1101E5205F6C5" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23759474_12032008_Conservative_Baptist_Foreign_Mission.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23759474_12032008_Conservative_Baptist_Foreign_Mission.pdf%2C1&cs=35E7631A02949AC0874933DB5011A7A9B" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23759484_12032008_Elaina_Whittenhall.pdf%2C1&cs=30628489CF133D8AE07C3F6DCDEACD4B5" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23759484_12032008_Elaina_Whittenhall.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23759484_12032008_Elaina_Whittenhall.pdf%2C1&cs=324BE78644A60856A9FB7598AE0E2927D" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23759494_12032008_Donald_Parrott.pdf%2C1&cs=381C0B68B62C1DE0AFAFFB138849DD343" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23759494_12032008_Donald_Parrott.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23759494_12032008_Donald_Parrott.pdf%2C1&cs=3E7711587AEB6567E2E5DB49A4486F146" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23759505_12032008_Hydron_Turf_Inc.pdf%2C1&cs=370546244E33C0CDD45EC592543251891" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23759505_12032008_Hydron_Turf_Inc.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23759505_12032008_Hydron_Turf_Inc.pdf%2C1&cs=368EB6EC80669A372E442EEE7009E7614" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23759511_12032008_Zeeks_Pizza_inc.pdf%2C1&cs=393AD5D099610F1714B0EA78181EE755C" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23759511_12032008_Zeeks_Pizza_inc.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23759511_12032008_Zeeks_Pizza_inc.pdf%2C1&cs=34281BB3410289F25BA111051C2470AF1" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:1437_12032008_Foxworth_Galbraith.pdf%2C1&cs=310BF9AC14F29E35E6027C2EC6B7D49C4" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">1437_12032008_Foxworth_Galbraith.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:1437_12032008_Foxworth_Galbraith.pdf%2C1&cs=31A37B74BF39A7A8028457C978A3982E1" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:1442_12032008_Brunos_Party_Time_Rental.pdf%2C1&cs=359B1791458976AF272259756BECC2426" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">1442_12032008_Brunos_Party_Time_Rental.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:1442_12032008_Brunos_Party_Time_Rental.pdf%2C1&cs=362713E518E1A23FE165DCC5C909B529B" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23747564_12032008_Matt_Mikalatos.pdf%2C1&cs=3852CC3C23951C12384568DD801BEB0DD" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23747564_12032008_Matt_Mikalatos.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23747564_12032008_Matt_Mikalatos.pdf%2C1&cs=301CD3F8543CB50E0AC89D0AD605CB915" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23747574_12032008_Casas_Por_Cristo.pdf%2C1&cs=3892F3DE74C4E007443D5117634A7D329" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23747574_12032008_Casas_Por_Cristo.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23747574_12032008_Casas_Por_Cristo.pdf%2C1&cs=3E14BCB602BA6BEAC7369238C19669216" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23747868_12032008_Mark_Brunson.pdf%2C1&cs=326579694381D52F1C9B0E6CEFF9B6AC0" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23747868_12032008_Mark_Brunson.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23747868_12032008_Mark_Brunson.pdf%2C1&cs=3D7A290F9474B4674EB57810CDEE828C7" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23747892_12032008_Brandon_Tackett.pdf%2C1&cs=35159001B486DD368DDB15977B0D0CC74" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23747892_12032008_Brandon_Tackett.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23747892_12032008_Brandon_Tackett.pdf%2C1&cs=3D672DF7CAF3DEB99CF9D36788CEFF94A" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23747990_12032008_Jami_Kirkbride.pdf%2C1&cs=3500DCCE200085E8071279B7431382DD5" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23747990_12032008_Jami_Kirkbride.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23747990_12032008_Jami_Kirkbride.pdf%2C1&cs=38AB133AF835915640EBCE78E346925F3" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23748001_12032008_Steven_Todd.pdf%2C1&cs=3C92E47F21A6264800ED11EDD1909A23F" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23748001_12032008_Steven_Todd.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23748001_12032008_Steven_Todd.pdf%2C1&cs=37031494E7B6950E1DFEBCE014A7E8DD8" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23748023_12032008_Amerigas.pdf%2C1&cs=38C1BA2D898623C6EB90373DC0B42694A" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23748023_12032008_Amerigas.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23748023_12032008_Amerigas.pdf%2C1&cs=3565731C7716F663E9B115B003135A29B" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    <tr ><td  align="center"><a href="f?p=275:2:1054298689687563::NO::P2_DOC_NAME,P2_REQUESTING_PAGE:23761639_12172008_Kathy_Ammon.pdf%2C1&cs=3E678E6956231231F39E6CF9181B6E3D4" ><img src="/apex_images/download.gif" alt="Download" width="20" height="20"></a></td><td  align="left">23761639_12172008_Kathy_Ammon.pdf</td><td  align="left">20-JAN-2009 11:16AM</td><td  align="center"><a href="f?p=275:4:1054298689687563:ELIM:NO::P4_DOC_NAME,P4_RETURNING_PAGE:23761639_12172008_Kathy_Ammon.pdf%2C1&cs=32787E0AB470723DDB5D7159696FD1596" ><img src="/apex_images/del.gif" alt="Delete"></a></td></tr>
    </table></td></tr>
    <tr class="fielddatasmall" align="left"><td>
    </td></tr>
    <tr><td colspan="5" class="pagination" align="right"><span class="fielddata"> 1 - 15 of 1559 <a href="javascript:gReport.navigate.paginate('pgR_min_row=16max_rows=15rows_fetched=15')"><img src="/apex_images/jtfunexe.gif" title="Next" alt="Next" align="absmiddle" /></a></span></td></tr>
    </td></tr>
    </table>
    </div>
    </div>
    </div>
    </div></div><script type="text/javascript">
    addLoadEvent(init_gReport);
    var gReport,gValid;
    function init_gReport(){
    gReport = new apex.worksheet.ws('');
    gValid = new apex.validation.v();
    </script>
    <div id="apexir_rollover" style="position:absolute;display:none;"><table cellpadding="1" cellspacing="0" border="0" width="100%"><tr><td><span id="apexir_sortup"><img src="/apex_images/ws/dup.gif" alt="Sort Ascending" title="Sort Ascending" onclick="gReport.column.order('ASC')" /></span><span id="apexir_sortdown"><img src="/apex_images/ws/ddown.gif" alt="Sort Descending" title="Sort Descending" onclick="gReport.column.order('DESC')" /></span><span id="apexir_hide"><img src="/apex_images/ws/trash.gif" alt="Hide Column" title="Hide Column" onclick="gReport.column.hide()" /></span><span id="apexir_break"><img src="/apex_images/ws/break_col.gif" alt="Control Break" title="Control Break" onclick="gReport.column.break_on()" /></span><span id="apexir_info"><img src="/apex_images/ws/info_20x18.gif" alt="Column Information" title="Column Information" onclick="gReport.controls.info()" /></span><span id="apexir_computation"><img src="/apex_images/ws/calc.gif" alt="Compute" title="Compute" onclick="gReport.controls.computation(false)" /></span></td></tr><tr><td><input type="text" onkeyup="$d_Find('apexir_rollover_content',this.value,'a');" style="width:95%;" id="apexir_search" /></td></tr></table><div id="apexir_rollover_content"></div></div><span id="apexir_LOADER" style="display:none;"><img src="/apex_images/ws/ajax-loader.gif" /></span></td>
    </tr>
    </table><table id="apex_layout_3134323851085756" class="formlayout" summary="" ><tr><td></td><td  colspan="1" rowspan="1" align="left"><input type="hidden" name="p_arg_names" value="3134621904094597" /><input type="hidden" name="p_t01" value="test-navcentral.navigators.org" id="P1_SERVER_NAME"  /></td></tr><tr><td></td><td  colspan="1" rowspan="1" align="left"><input type="hidden" name="p_arg_names" value="3139106994289054" /><input type="hidden" name="p_t02" value="" id="P1_DEBUG"  /></td></tr>
    </table>
      </div>
      <div id="secondary">
      </div>
      <div id="footer">
        <br />
      </div>
      <input type="hidden" name="p_md5_checksum" value=""  /></form>
    </div>
    <script type="text/javascript">
    <!--
    //-->
    </script></body>
    </html>Marc

  • Custom traffic lighting with Interactive Reporting

    Has anyone written a custom javascript solution for cell-based traffic lighting in Interactive Reports? It does not appear that the object model gives access to cell-level properties in either the pivot or OLAPquery objects although spotlighting can be applied to individual columns and rows.

    Oh yes, understand perfectly what you want, sighing...
    I planned to write another blog post about reporting partial scores, but since Posterous closed down in March, I am not blogging any more, just paying to keep the old posts online on demand of a lot of users. There are several reasons for that, which I will not explain but it is mainly because I feel really exploited.
    Two possiblities:
    Using the mastery widget of InfoSemantics (but limited to SWF-output)
    Using JavaScript
    Lilybiri

  • 9.3.1.0 Interactive Reporting - Service Fix

    I have a problem with my current software, Hyperion support said I should download the 9.3.1.0.11 service fix for Hyperion Reporting and Analysis Client, but I looked all through edelivery.oracle.com and couldn't find it. Do any of you know where it is?
    "The files that need to be downloaded are:
    Hyperion System 9 BI+ 9.3.1.0.11 Service Fix Readme Hyperion.
    System 9 BI+ 9.3.1.0.11 Service Fix Windows.
    Check for the full Studio client 9.3.1.0.11 versoin.
    Please go through the Readme file for steps to apply the service Fix."

    We applied the fix and it resolved some issues for us. However, it seems to have introduced another problem.
    When more than one bqy is run and left open and we close one of the windows and try opening and running another small bqy, the web client freezes.
    The related entry in the dbgprint file is:
    Failure in removal of file:C:\DOCUME~1\ij24\LOCALS~1\Temp\ODSC6.tmp.
    Error: [13] <path specifies a read-only file>
    Exception thrown in v1_bi_code\bq\query\qryom.cpp, line 375: Error during Process
    Script(x):uncaught exception: Error during Process
    Anyone else experiencing this? We have a red hat linux distributed environment.
    I see a related entry in:
    Re: Interactive Reporting An Unknown error has occured
    thanks,
    Insiyah.

  • Interactive Reporting 9.3.1 - Server-side ODBC setup for Windows Authent.

    Help. I am having a problem with Interactive Reporting connections to SQL server through the Web Client.
    In our environment, we have the Hyperion BI 9.3.1 suite. We develop IR documents (BQY's) on our local machine using Studio and using locally setup ODBC connections to SQL Server, using Windows NT authentication. Everything works perfectly fine, locally.
    When we upload the BQY and the OCE, and properly associate them to each other in Workspace, we then proceed to open them using the Web Client. The file opens fine, and when I hit process to run the query, I am prompted to login. When I login (using my NT Authenticated login), I receive the following error message: "Error Logging on as Windows User: Win32 Error code: 1385 Logon failure: the user has not been granted the requested logon type at this computer."
    The ODBC that was setup on the server was setup to use NT Authentication (as opposed to SQL server). The DAS connections are setup properly. My question is - how do you setup a connection to a SQL server using NT authentication and have the user authenticate through the Web Client. We don't want to grant users access to the server directly.
    If you can't answer this question, can you tell me how you have setup your connections on the server through DAS and how you properly maintained security controls?
    Thanks - Mike

    its not really in the bqy (its in the oce) but I understand your point. Now we get to the point It s not my expertiece any more but perhaps something like row level security or making use of odsusername variable might give some solution or workaround. sometimes this how we solve it when it comes to sensitive information from a app DB. We retrieve users security from the db app and use it as a where clause in the bqy. as long as endusers do not have enough right to change the query its enough.

  • Empty CSV exports of data from interactive reports.

    Currently using version 4.2.1.00.08 of APEX. My application has interactive reports; when I try to export data to CSV file, it is empty. Tried HTML, that just has the control widget for the report. I could swear this used to work. Thanks for any help.
    -jg-

    Hi!
    Check that the RFC is set as a trusted connection and it uses the current user for the connection.
    Check that you use the same user in RSCUSTV3 as in the source system you have set up in RSA1 for the REP and the BI client.
    Check that the user you use for this is configured as follow
    - On the tab Logon data select System as User Type, SUPER as User group and also enter an initial password; use password welcome.
    - On the tab Roles assign the roles SAP_BC_USR_CUA_CLIENT and SAP_BC_USR_CUA_SETUP_CLIENT (Valid From and Valid to should be left empty). In addition, assign the profiles S_BI-WHM_RFC and S_BI-WX_RFC on the tab Profiles.
    rollo

  • Interactive Reports hooks

    Hello!
    Is there any way to hook to Interactive Reports to:
    1) do select of an option item in a widget filter (table header) from JavaScript and submit the report request (usefull when comming to an IR page from another page and want to "pre-filter").
    2) have a JavaScript code (function) executed before and after IR execution (say after selecting new filtering and after getting the data).
    Haven't seen anything similar to this on the forum nor in the documentation. Any comments appreciated.
    Dusan

    Hello,
    Please check the following segment, in the documentation - http://download.oracle.com/docs/cd/E10513_01/doc/appdev.310/e10499/app_comp.htm#sthref981 .
    The f?p syntax can be used with JavaScript.
    Regards,
    Arie.

  • Checkbox (check all) in interactive report behaves not as expected.

    I have created an interactive report with one column being apex_item.checkbox (1,key,checking_expression).
    To be able to check all rows, I have put the following code in the column's heading field:
    <input type="checkbox" onclick="checkAll(this)" value="1" name="x01"/> (code got with Firebug from automatically generated tabform).
    Well, the checkbox in heading checks/unchecks itself OK, but then, instead of checking all rows, a standard interactive column menu drops with sort/select value options.
    I presume, I am missing something. But what?
    Igor

    Looking with Firebug at at the generated code, I see the following:
    div id="apexir_SEL_YON" style="text-align: center;" onclick="gReport.controls.widget(this.id)"
    <input type="checkbox" name="x01" value="1" onclick="checkAll(this)"/>
    /div
    How could I patch away this onclick trigger?
    Igor
    Edited by: kortchnoi on Sep 2, 2008 12:11 PM

  • Interactive Reporting An Unknown error has occured

    I have a number of users that keep getting the following message:
    "An unknown error has occurred. Please save your document and restart your application."
    This error appears several times in Interactive Reporting. It happens when you are trying to copy and paste formulas into a spreadsheet. Also, the error has occurred when adding or changing a filter, removing a column, processing a query, changing column orders, copying and pasting from one window to another, removing a column, etc.
    Any ideas on why we are getting this error.
    Thanks
    Doug Pilot

    We have the same problem after applying the service fix. When we rolled back to the pre-service fix web client, we were unable to reproduce this issue so it seems the new web client is flawed.
    Are you on red hat linux too?
    We asked a couple of other implementations but they did not see this issue after adding the service fix.
    The related dbgprint entry we see is:
    Failure in removal of file:C:\DOCUME~1\ij24\LOCALS~1\Temp\ODSC6.tmp.
    Error: [13] <path specifies a read-only file>
    Exception thrown in v1_bi_code\bq\query\qryom.cpp, line 375: Error during Process
    Script(x):uncaught exception: Error during Process
    thanks,
    Insiyah.

  • Open document from interactive report

    Application Express version 4.0.2.00.07.
    In apex I am trying to accomplish the following:
    1. create a link to a pdf or Word document stored on local network using the file browse button.
    2. store the link to that file in my table but not store the actual document in the oracle table.
    3. open the document from link in interactive report.
    My dba does not want to store anymore documents into oracle because of performance issues we are experiencing with current applications that do this. Does anyone know the where to find sample code that will accomplish this task or will load the linked document into the oracle table but delete the document from the blob when the document is closed.

    You're probably looking to use the BFILE functionality - a pointer to a LOB on the filesystem.
    Try looking at some of the following sources for guidance
    http://docs.oracle.com/cd/B10501_01/appdev.920/a96591/adl12bfl.htm
    APEX BFILE
    http://monkeyonoracle.blogspot.com.au/2009/10/storing-images-outside-oracle-xe-with.html
    Scott

  • Questions on Interactive Report Icons

    When I created an Interactive Report, rectangular icons have been automatically created on the left side of the report on every line.
    When clicked one of the icons, it displays the details of the line in vertical order.
    Here are my questions:
    1. When I've hidden some columns in the interactive report and clicked the icon, it does not display hidden column details. But I want to hide those columns only in the report but displays all details when the icon is clicked. How can I do this?
    2. How can I hide the icons?
    3. How can I use the icons not to display line details but to direct to an editable page to edit the same details?
    Thanks,
    Guy

    Hello
    1. When I've hidden some columns in the interactive report and clicked the icon, it does not display hidden column details. But I want to hide those columns only in the report but displays all details when the icon is clicked. How can I do this?You can create another region, or page that will show your row description by identifier or rowid. You can do this by changing Link Column type to "Link to Custom Target"
    2. How can I hide the icons?Go to Interactive Report -> Link Column -> Link Column change to (Exclude Link Column)
    3. How can I use the icons not to display line details but to direct to an editable page to edit the same details?The same as answer 1.
    Best Regards, Kostya Proskudin!

  • Interactive Report view is empty

    Hi,
    I'm on CRM 7.0 EHP3. I'm encountering empty report criteria and display when open the Campaign effectiveness and all other interactive report page. Please see the screen shot below. There is no error message on the screen, as well as ST22.
    I've configured the interactive report and ran the configuration wizard /CRMBW/CONFIG_WIZARD successfully and no error found.
    Also the roles SAP_CRM_OR_ADMIN, SAP_CRM_OR_CONFIG and SAP_CRM_OR_USER and SAP_ALL are given to the user in both clients.
    Please let me know what could be the causes.
    Thanks in advance.
    cheers,
    julius

    Okay, problem seems solved. I don't know if it is a bug or a feature... (: Anyway, this view selects data from threads that had been created from a portal application. And if you create threads from WC_Collaboration server admin console, there's no data will be selected with FORUMCRAWLER_VW view. Sorry, have no time to check SQL query for those DB view, may be this behaviour is reasonable.
    Edited by: Insomnium on 17.01.2013 2:33

Maybe you are looking for

  • Xorg cannot find screens with nvidia module

    I know that this question is very common, but I cannot find solution, I should use "nvidia" drivers on Lenovo notebook with two videocards (work with Cuda technology). Xorg cannot load nvidia module with this xorg.conf. Can anybody help? Thanks. lspc

  • Acrobat 9.5.2 preflight

    Installed 9.5.2 and preflight is now disabled from print production toolbar and missing from print production menu.  ???

  • SortByTime method complains trying to figure out why help please

    public void sortByTime() // check out the bubble sort code in Module 11 for an // example of what to do in this method // your code here (please remove this line) double fastRat = -1; int last = this.getSize() - 1; boolean didSwap = true; Time ratDif

  • Invalid number in viber

    i have reinstall and install  the viber in to my phone but it still says invalid number . i have used viber in any other device. pls can anyone help me ?

  • To install JVM without Administrator rights....

    i am a user only ...... i don't have admin rights...... i download JVM-1.5 .... but i can't install........ any idea......