Security check in "HTML Expression" property?

Hi,
question for the gurus, because it's not logical for me how APEX behaves.
I have the following report query:
SELECT EMPLOYEE_ID
     , LAST_NAME
     , EMAIL
     , Apex_Item.Text(1, PHONE_NUMBER) AS PHONE_NUMBER_INPUT
     , PHONE_NUMBER
     , HIRE_DATE
  FROM EMPLOYEESFor the PHONE_NUMBER column I want to set the "HTML Expression" property to
#PHONE_NUMBER_INPUT#For the PHONE_NUMBER_INPUT column, the "Show Column" property would be set to "No".
What is the idea behind this construct? It would allow to make the column PHONE_NUMBER sortable by the actual column value, and not based on the string <INPUT ...> APEX generates with the Apex_item.text call.
But the above trick doesn't work, it always returns NULL as soon as I reference a column where the value includes an "<INPUT..." in the column value. If a reference another column it works fine. Is there some security check built into the "HTML Expression" function?
Patrick
My APEX Blog: http://inside-apex.blogspot.com
The ApexLib Framework: http://apexlib.sourceforge.net
The APEX Builder Plugin: http://apexplugin.sourceforge.net New

Scott,
the problem doesn't seem to be related to the "HTML Expression" property. After reading the following thread Column link omits html tags
I did some further testing and it looks like that whenever a report column is referenced with #COLUMN_NAME#, all tags which are between &lt; and > are stripped out. It doesn't have to be a valid HTML tag, &lt;abc> is also removed.
See the last report at http://apex.oracle.com/pls/otn/f?p=45495:2 for an example.
Patrick
My APEX Blog: http://www.inside-oracle-apex.com
The ApexLib Framework: http://apexlib.sourceforge.net
The APEX Builder Plugin: http://apexplugin.sourceforge.net/ New!

Similar Messages

  • Display PDF file in the Apex query report using HTML Expression

    Hi Folks,
    I have PDFs stored in BLOB columns along with FILE_ID column in the database.
    I want to display these to the APEX user on the page at runtime.
    I have created a SQL Query report page to display FILE_ID column.
    I am using HTML Expression property of the FILE_ID column to pull the image from the table using PROC_DISPLAY_DOCUMENT procedure.
    I typed folowing code int the HTML Expression text area of the FILE_ID column of the report page :
    <img src="#OWNER#.proc_display_document?p_id=#file_id#"/>
    I am using following Procedure code:
    create or replace procedure "PROC_DISPLAY_DOCUMENT"(p_id number) as
    s_mime_type varchar2(48);
    n_length number;
    s_filename varchar2(400);
    lob_image blob;
    Begin
    select MIME_TYPE,dbms_lob.getlength(blob_content),file_name,blob_content
    into s_mime_type,n_length,s_filename,lob_image
    from tbl_upload_file
    where file_id = p_id;
    owa_util.mime_header(nvl(s_mime_type, 'application/octet' ),false);
    --set the size so the browser knows how much it will be downloading
    htp.p( 'content-length: '|| n_length );
    --The file name will be used by the browser if the users does a "save as" 
    htp.p( 'content-Disposition: filename="' || s_filename ||'"');
    owa_util.http_header_close;
    --Download the BLOB
    wpg_docload.download_file( lob_image );
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-202121,'Record matching screenfield filename not found, PROC_DISPLAY_DOCUMENT.');      
    end;
    --This is very Important
    --grant execute on PROC_DISPLAY_DOCUMENT to public;
    This code does not work and report does not display PDF image.
    Any help to troubleshoot this code will be appreciated.
    Thank you in advance.
    Jaya

    Hi Dimitri,
    I hope you can see HTML Expression code now. Thank You for responding.
    I have PDFs stored in BLOB columns along with FILE_ID column in the database.
    I want to display these to the APEX user on the page at runtime.
    I have created a SQL Query report page to display FILE_ID column.
    I am using HTML Expression property of the FILE_ID column to pull the image from the table using PROC_DISPLAY_DOCUMENT procedure.
    I typed folowing code int the HTML Expression text area of the FILE_ID column of the report page :
    [!--  img src="#OWNER#.proc_display_document?p_id=#file_id#" ]
    I am using following Procedure code:
    create or replace procedure "PROC_DISPLAY_DOCUMENT"(p_id number) **
    mimetype varchar2(48);
    n_length number;
    s_filename varchar2(400);
    lob_image blob;
    Begin
    select MIME_TYPE,dbms_lob.getlength(blob_content),file_name,blob_content
    into s_mime_type,n_length,s_filename,lob_image
    from tbl_upload_file
    where file_id = p_id;
    owa_util.mime_header(nvl(s_mime_type, 'application/octet' ),false);
    --set the size so the browser knows how much it will be downloading
    htp.p( 'content-length: '|| n_length );
    --The file name will be used by the browser if the users does a "save as"
    htp.p( 'content-Disposition: filename="' || s_filename ||'"');
    owa_util.http_header_close;
    --Download the BLOB
    wpg_docload.download_file( lob_image );
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-202121,'Record matching screenfield filename not found, PROC_DISPLAY_DOCUMENT.');
    end;
    --This is very Important
    --grant execute on PROC_DISPLAY_DOCUMENT to public;
    This code does not work and report does not display PDF image.
    Any help to troubleshoot this code will be appreciated.
    Thank you in advance.
    Jaya

  • HTML Expression and Highlights

    Hi.<p>
    I created a small People Search application. The last name and the first names where typed mixed case. (database is <b>9i</b>).<br>Examples would be<p>
    Anne Baker<br>
    George de Wolf<br>
    Gary VanBueren<p>
    The spec was to show them as they are and export them as they are to a csv but then sort properly.<p>
    I also had to highlight the search patterns.<p>
    So I queried both upper of the names, and the names are they are, showed the upper, hid the actual and enabled the sorts and used the HTML Expression property o upper to set the actual names (#LastName#). This took care of the proper sorting in additions to displaying the names as they were entered. <p>
    But using the &P_Var. as the Highlight word did not work when I used the HTML Expression property. Also the export would return the upper case values.<p>
    So I removed the upper case and HTML expression logic and hacked the anchor tag a little bit to get a value and display another value. I lost the href tag deliberately to avoid a link.<p>
    so the query would return something like <p>
    <a GEORGE DE WOLF>George de Wolf</a>. This would take care of the sorts and the export..<p>
    but the highlight would still not work.<p>
    So I coded the <span> tag in the query to highlight the pattern myself. <p>
    Is there an easy way of doing this. (instead of coding the span tag and hacking the <a> tag)<p>
    - Thanks<br>
    N

    When I use NULL as the value of a column in a Classic Report region and use the HTML Expression column attribute to construct the value using other columns via #COL# notation, the on-screen report works fine but to my surprise the CSV download doesn't use this value, it export the actual column value (which is NULL in this case).Not quite. It is not just a matter of line breaks, the actual column is just a placeholder, the column value is NULL but the HTML expression could combine multiple columns, see my original post.
    I guess there is no way to do this. Apex team - Could this (honor HTML expression in report export) be an enhancement for the next release? Thanks

  • HTML Expressions and HTML

    I an using the column formatting HTML Expression: Ex:<i>#TITLE#</i><br>#PRESENTER#, #INST_NAME#
    This works just fine until I need additional HTML for one of the items. The HTML is in the database for the field TITLE and want to have that HTML displayed. This HTML does not display if I have the field in the HTML Expression. I need to keep these fields together to keep things lined up.
    The table entry looks like this: <s>Modeling of Blood Cell Populations </s> <font color="orange"> withdrawn</font> . The word withdrawn is included but not the formatting. If I do not use the HTML Expression the field display properly, but I need to keep the other fields display with the title.
    ( 1 )     10:00 AM     10:15 AM     download     Modeling of Blood Cell Populations withdrawn
    John Jones, Some College
    Can anyone assist?
    Joyce

    Sorry, I'm not really following this: could you show an example on apex.oracle.com, or post a screenshot somewhere? (Off the top of my head check the report column Display As property is "Standard Report Column", or that this is a Derived Column.)
    Also, please edit your post, wrapping the HTML in \...\ tags to stop it being interpreted by the forum software/browser. (http://wiki.oracle.com/page/Oracle+Discussion+Forums+FAQ)
    Finally, the &lt;s&gt; and &lt;font&gt; elements have been deprecated since forever. It may have nothing to do with the problem, but it would be better practice to use modern mark-up, e.g.
    <div class="presentation">
      <cite class="withdrawn">#TITLE#<span class="wd">&amp;nbsp;withdrawn</span></cite>
      <span class="presenter">#PRESENTER#</span>, <span class="institution">#INST_NAME#</span>
    </div>styled with CSS:
    .presentation cite {
      display: block;
      font-style: italic;
    .presentation cite .wd {
      color: orange;
      font-style: normal;
    }

  • Access denied by Application security check

    I see that others have gotten this error when logging in but I'm getting this during an application install.
    I have an application in workspace A that I exported. I created workspace B, using the same parsing schema and the same workspace the schema assignments. In workspace A, I exported as user ADMIN who has Administrator and Developer rights. The same user with the same rights was used to import and install the application into workspace B. The import into workspace B is successful. For the import, I use the same parsing schema assignment and I let the install utility assign a new application ID. It apparently chose app ID 115 because after a few minutes into the install I get the "Access denied by Application security check" and at the top of the page it says "Application 115 installed".
    To make matters worse, when I log back into workspace A, I see that application 115 has just been installed into THAT workspace.

    Lloyd,
    That's weird. What version of Application Express? I would suggest using a different user (not ADMIN) for export and import, as I'm sure what you experienced is due to a bug related to the privileges of the ADMIN user.
    Scott

  • Getting the value of a html:text property in javascript function

    Hi all,
    I am using struts framework and I need to get a value in a textfield both in java part and javascript part
    <td><html:text property="identityNumber"> </td>
    I dont know how can I reach the value user entered in that field in the javascript function
    function verifyID(){
              var identityUserEntered = ????
    alert(identity);
    }

    the javascript expression document.forms[0].identityNumber.value should do it.
    You do realise you can't run java and javascript at the same time though right? The only way javascript can communicate with java is to submit an http request (normally submit form)

  • "Disable Check for SQL Express" against SQL Server Agent

    Good afternoon,
    Seeing as it has been a know issue for many years now[1],
    is there a reason why Microsoft has yet to include a “Disable Check for SQL Express” override (similar to the
    Automatic Configuration (& other) monitors) for each of the following objects included in the
    Microsoft SQL Server Management Pack?
    SQL Server Agent Windows Service (Monitor)
    Discover SQL Server Agent for a DB Engine (Discovery)
    This would prevent me from have to continually create overrides
    disabling the monitor|discovery each time a new instance of SQL Express is installed in our Management Group.
    Thanks,
    Larry
    [1]
    http://jmkehayias.blogspot.ca/2009/01/sql-server-2008-express-sql-agent-won.html
    http://sqlblogcasts.com/blogs/sqldbatips/archive/2008/06/28/sql-server-2008-express-installs-sql-agent-but-don-t-bother-trying-to-start-it.aspx

    Hello,
    This is much easier
    http://blogs.technet.com/b/emreguclu/archive/2013/01/21/undiscovering-stop-monitoring-sql-2008-express-editions.aspx
    just exclude sqlexpress
    Regards
    Mohammad, IT NOC Team

  • Security check

    what is your name.
    if this msg is posted then this is a bogus site.

    Thanks, Scott.
    For 'Read Only', I meant the application was imported with build status of 'Run application only'.
    I know how to export the application, but I don't know how to include all the database objects within the export. I am still trying to learn that part. Could you give me some quick steps, or tell me where to read in the user guide.
    More details about my issue --
    I created a user 'Viewer' without developer or administrator permission using admin account. I imported my application as Run application only, and I try to use Viewer to log in to 'Application Express Login' page, which requires workspace, username, and password. And this is where I got 'Access denied by Application security check' message.
    I am thinking should I use 'Viewer' to log into the ''Application Express Login' page at all? Should this user be at least a developer?
    One last question: Where can I find this message 'Access denied by Application security check'? It does not seems important to mess with it, but I am just curios about where does this message come from?
    Thanks again,
    Yivon

  • Help please: "Access denied by Application security check"

    I am very new for using Application express 2.2.
    I create a demon application, and want to creat a end user right now.
    The end user has no-dev and no-admin privileges. However when I tried to logon I got error message "Access denied by Application security check", and only option is to log-out.
    What I have done wrong?
    Thanks,

    See http://download-east.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28550/sec.htm#BABBCIEE
    When you create users in the Apex repository (using an Admin account in the workspace), and give them neither Dev nor Admin privilege, they are not meant to login to the Application Builder. You would use the link above to create an authentication scheme in applications you develop.
    [Read that Chapter 11 Managing Application Security from start to finish]

  • How can I disable local file access security check?

    Windows 7
    Firefox 3.6.16
    I would like to disable the security check used for blocking access to local files.

    I don't know if this is completely correct, but...
    I have the NoScript extension installed. When I looked in about:config, I found an entry called:
    noscript.allowLocalLinks
    When I toggled this to "true," I was able to navigate via URLs to local and networked files.
    When I looked it up, I found out that you can set this switch using the NoScript UI (Options|Advanced|Trusted).

  • Yoga 2 Kernel Security Check Failure

    I have this Yoga 2 13' for almost two months. A few days after my purchase, the computer suddenly gave a blue screen and restarted. Then this BSODs became more frequent. The strange thing is that, I was in France for almost a month, and no BSODs happened. Now that I am in Turkey for a few days, the PC started to give out kernel security check failures. 
    Any suggestions for the resolution of the problem. Cause it's quite annoying to wait for the PC to crush before doing anything?
    Here are the details for dump files: 
    computer name: BAHADIR
    windows version: Windows 8.1 , 6.2, build: 9200
    windows dir: C:\windows
    Hardware: 20344, LENOVO, INVALID
    CPU: GenuineIntel Intel(R) Core(TM) i5-4210U CPU @ 1.70GHz Intel586, level: 6
    4 logical processors, active mask: 15
    RAM: 4212088832 total
    Crash Dump Analysis
    Crash dump directory: C:\windows\Minidump
    Crash dumps are enabled on your computer.
    On Mon 8.12.2014 12:26:19 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120814-13828-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD0012EB1D5E0, 0xFFFFD0012EB1D538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Mon 8.12.2014 12:26:19 GMT your computer crashed
    crash dump file: C:\windows\memory.dmp
    This was probably caused by the following module: netwbw02.sys (Netwbw02+0xD945)
    Bugcheck code: 0x139 (0x2, 0xFFFFD0012EB1D5E0, 0xFFFFD0012EB1D538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\drivers\netwbw02.sys
    product: Intel® Wireless WiFi Link Adapter
    company: Intel Corporation
    description: Intel® Wireless WiFi Link Driver
    Bug check description: The kernel has detected the corruption of a critical data structure.
    A third party driver was identified as the probable root cause of this system error. It is suggested you look for an update for the following driver: netwbw02.sys (Intel® Wireless WiFi Link Driver, Intel Corporation).
    Google query: Intel Corporation KERNEL_SECURITY_CHECK_FAILURE
    On Mon 8.12.2014 11:25:34 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120814-20953-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD001829955E0, 0xFFFFD00182995538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Mon 8.12.2014 10:22:55 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120814-7203-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD00174FC5180, 0xFFFFD00174FC50D8, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Mon 8.12.2014 09:48:13 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120814-12515-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD000C3F70180, 0xFFFFD000C3F700D8, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Mon 8.12.2014 08:26:09 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120814-12703-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD000210D55E0, 0xFFFFD000210D5538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Sat 6.12.2014 19:57:40 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120614-13812-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD00025F335E0, 0xFFFFD00025F33538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Sat 6.12.2014 17:03:33 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120614-21828-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD001CA954180, 0xFFFFD001CA9540D8, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Sat 6.12.2014 16:58:13 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120614-17812-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD0002BFC5180, 0xFFFFD0002BFC50D8, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Sat 6.12.2014 14:38:37 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120614-14515-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD00023BD05E0, 0xFFFFD00023BD0538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.

    I have this Yoga 2 13' for almost two months. A few days after my purchase, the computer suddenly gave a blue screen and restarted. Then this BSODs became more frequent. The strange thing is that, I was in France for almost a month, and no BSODs happened. Now that I am in Turkey for a few days, the PC started to give out kernel security check failures. 
    Any suggestions for the resolution of the problem. Cause it's quite annoying to wait for the PC to crush before doing anything?
    Here are the details for dump files: 
    computer name: BAHADIR
    windows version: Windows 8.1 , 6.2, build: 9200
    windows dir: C:\windows
    Hardware: 20344, LENOVO, INVALID
    CPU: GenuineIntel Intel(R) Core(TM) i5-4210U CPU @ 1.70GHz Intel586, level: 6
    4 logical processors, active mask: 15
    RAM: 4212088832 total
    Crash Dump Analysis
    Crash dump directory: C:\windows\Minidump
    Crash dumps are enabled on your computer.
    On Mon 8.12.2014 12:26:19 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120814-13828-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD0012EB1D5E0, 0xFFFFD0012EB1D538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Mon 8.12.2014 12:26:19 GMT your computer crashed
    crash dump file: C:\windows\memory.dmp
    This was probably caused by the following module: netwbw02.sys (Netwbw02+0xD945)
    Bugcheck code: 0x139 (0x2, 0xFFFFD0012EB1D5E0, 0xFFFFD0012EB1D538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\drivers\netwbw02.sys
    product: Intel® Wireless WiFi Link Adapter
    company: Intel Corporation
    description: Intel® Wireless WiFi Link Driver
    Bug check description: The kernel has detected the corruption of a critical data structure.
    A third party driver was identified as the probable root cause of this system error. It is suggested you look for an update for the following driver: netwbw02.sys (Intel® Wireless WiFi Link Driver, Intel Corporation).
    Google query: Intel Corporation KERNEL_SECURITY_CHECK_FAILURE
    On Mon 8.12.2014 11:25:34 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120814-20953-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD001829955E0, 0xFFFFD00182995538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Mon 8.12.2014 10:22:55 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120814-7203-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD00174FC5180, 0xFFFFD00174FC50D8, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Mon 8.12.2014 09:48:13 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120814-12515-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD000C3F70180, 0xFFFFD000C3F700D8, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Mon 8.12.2014 08:26:09 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120814-12703-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD000210D55E0, 0xFFFFD000210D5538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Sat 6.12.2014 19:57:40 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120614-13812-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD00025F335E0, 0xFFFFD00025F33538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Sat 6.12.2014 17:03:33 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120614-21828-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD001CA954180, 0xFFFFD001CA9540D8, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Sat 6.12.2014 16:58:13 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120614-17812-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD0002BFC5180, 0xFFFFD0002BFC50D8, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
    On Sat 6.12.2014 14:38:37 GMT your computer crashed
    crash dump file: C:\windows\Minidump\120614-14515-01.dmp
    This was probably caused by the following module: ntoskrnl.exe (nt+0x14F1A0)
    Bugcheck code: 0x139 (0x2, 0xFFFFD00023BD05E0, 0xFFFFD00023BD0538, 0x0)
    Error: KERNEL_SECURITY_CHECK_FAILURE
    file path: C:\windows\system32\ntoskrnl.exe
    product: Microsoft® Windows® Operating System
    company: Microsoft Corporation
    description: NT Kernel & System
    Bug check description: The kernel has detected the corruption of a critical data structure.
    The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.

  • HT201457 I have a mid 2011 iMac and have installed windows 8.1 on it  I costantly get system thread not handled and kernel security check failure and the Mac restarts

    I Have a mid 2011 iMac with windows 8.1 on it and constantly get system thread exception not handled and kernel security check failur

    I Have a mid 2011 iMac with windows 8.1 on it and constantly get system thread exception not handled and kernel security check failur

  • How to call stored procedure with multiple parameters in an HTML expression

    Hi, Guys:
    Can you show me an example to call stored procedure with multiple parameters in an HTML expression? I need to rewrite a procedure to display multiple pictures of one person stored in database by clicking button.
    The orginal HTML expression is :
    <img src="#OWNER#.dl_sor_image?p_offender_id=#OFFENDER_ID#" width="75" height="75">which calls a procedure as:
    procedure dl_sor_image (p_offender_id IN NUMBER)now I rewrite it as:
    PROCEDURE Sor_Display_Current_Image(p_n_Offender_id IN NUMBER, p_n_image_Count in number)could anyone tell me the format for the html expression to pass multiple parameters?
    Thanks a lot.
    Sam

    Hi:
    Thanks for your help! Your question is what I am trying hard now. Current procedure can only display one picture per person, however, I am supposed to write a new procedure which displays multiple pictures for one person. When user click a button on report, APEX should call this procedure and returns next picture of the same person. The table is SOR_image. However, I rewrite the HTML expression as follows to test to display the second image.
    <img src="#OWNER#.Sor_Display_Current_Image?p_n_Offender_id=#OFFENDER_ID#&p_n_image_Count=2" width="75" height="75"> The procedure code is complied OK as follows:
    create or replace
    PROCEDURE Sor_Display_Current_Image(p_n_Offender_id IN NUMBER, p_n_image_Count in number) AS
        v_mime_type VARCHAR2(48);
        v_length NUMBER;
        v_name VARCHAR2(2000);
        v_image BLOB;
        v_counter number:=0;
        cursor cur_All_Images_of_Offender is
          SELECT 'IMAGE/JPEG' mime_type, dbms_lob.getlength(image) as image_length, image
          FROM sor_image
          WHERE offender_id = p_n_Offender_id;
        rec_Image_of_Offender cur_All_Images_of_Offender%ROWTYPE;
    BEGIN
        open cur_All_Images_of_Offender;
        loop
          fetch cur_All_Images_of_Offender into rec_Image_of_Offender;
          v_counter:=v_counter+1;
          if (v_counter=p_n_image_Count) then
            owa_util.mime_header(nvl(rec_Image_of_Offender.mime_type, 'application/octet'), FALSE);
            htp.p('Content-length: '||rec_Image_of_Offender.image_length);
            owa_util.http_header_close;
            wpg_docload.download_file (rec_Image_of_Offender.image);
          end if;
          exit when ((cur_All_Images_of_Offender%NOTFOUND) or (v_counter>=p_n_image_Count));
        end loop;
        close cur_All_Images_of_Offender;
    END Sor_Display_Current_Image; The procedure just open a cursor to fetch the images belong to the same person, and use wpg_docload.download_file function to display the image specified. But it never works. It is strange because even I use exactly same code as before but change procedure name, Oracle APEX cannot display an image. Is this due to anything such as make file configuration in APEX?
    Thanks
    Sam

  • After security checks my ibank statement page does not load, load indicator around 80% complete then hangs. in IE loads OK.

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    ibank home page loads as does the security check page and accounts page. When specific account selected the loading indicator (bottom right) gets to around 80% then hangs. Tried with Internet Explorer and all oakay.
    == This happened
    ==
    Every time Firefox opened
    == This week
    ==
    == Troubleshooting information
    ==
    Application Basics
    Name Firefox
    Version 3.6.6
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Ancestry.com Advanced Image Viewer 1.0.0.1 false [email protected]
    RealPlayer Browser Record Plugin 1.1.5 false
    20-20 3D Viewer 4.5.2.0 false [email protected]
    Modified Preferences
    Name
    Value
    accessibility.blockautorefresh true
    accessibility.typeaheadfind.flashBar 0
    browser.history_expire_days.mirror 180
    browser.places.smartBookmarksVersion 2
    browser.startup.homepage https://login.yahoo.com/config/login_verify2?.intl=uk&.partner=bt-1&.done=http%3a//bt.yahoo.com/%3f
    browser.startup.homepage_override.mstone rv:1.9.2.6
    extensions.lastAppVersion 3.6.6
    network.cookie.prefsMigrated true
    places.last_vacuum 1279483935
    print.print_printer HP Photosmart C4100 series
    print.printer_HP_Photosmart_C4100_series.print_bgcolor false
    print.printer_HP_Photosmart_C4100_series.print_bgimages false
    print.printer_HP_Photosmart_C4100_series.print_command
    print.printer_HP_Photosmart_C4100_series.print_downloadfonts false
    print.printer_HP_Photosmart_C4100_series.print_edge_bottom 0
    print.printer_HP_Photosmart_C4100_series.print_edge_left 0
    print.printer_HP_Photosmart_C4100_series.print_edge_right 0
    print.printer_HP_Photosmart_C4100_series.print_edge_top 0
    print.printer_HP_Photosmart_C4100_series.print_evenpages true
    print.printer_HP_Photosmart_C4100_series.print_footercenter
    print.printer_HP_Photosmart_C4100_series.print_footerleft &PT
    print.printer_HP_Photosmart_C4100_series.print_footerright &D
    print.printer_HP_Photosmart_C4100_series.print_headercenter
    print.printer_HP_Photosmart_C4100_series.print_headerleft &T
    print.printer_HP_Photosmart_C4100_series.print_headerright &U
    print.printer_HP_Photosmart_C4100_series.print_in_color true
    print.printer_HP_Photosmart_C4100_series.print_margin_bottom 0.5
    print.printer_HP_Photosmart_C4100_series.print_margin_left 0.5
    print.printer_HP_Photosmart_C4100_series.print_margin_right 0.5
    print.printer_HP_Photosmart_C4100_series.print_margin_top 0.5
    print.printer_HP_Photosmart_C4100_series.print_oddpages true
    print.printer_HP_Photosmart_C4100_series.print_orientation 0
    print.printer_HP_Photosmart_C4100_series.print_pagedelay 500
    print.printer_HP_Photosmart_C4100_series.print_paper_data 9
    print.printer_HP_Photosmart_C4100_series.print_paper_height 11.00
    print.printer_HP_Photosmart_C4100_series.print_paper_size_type 0
    print.printer_HP_Photosmart_C4100_series.print_paper_size_unit 1
    print.printer_HP_Photosmart_C4100_series.print_paper_width 8.50
    print.printer_HP_Photosmart_C4100_series.print_reversed false
    print.printer_HP_Photosmart_C4100_series.print_scaling 1.00
    print.printer_HP_Photosmart_C4100_series.print_shrink_to_fit true
    print.printer_HP_Photosmart_C4100_series.print_to_file false
    print.printer_HP_Photosmart_C4100_series.print_unwriteable_margin_bottom 0
    print.printer_HP_Photosmart_C4100_series.print_unwriteable_margin_left 0
    print.printer_HP_Photosmart_C4100_series.print_unwriteable_margin_right 0
    print.printer_HP_Photosmart_C4100_series.print_unwriteable_margin_top 0
    print.printer_Microsoft_XPS_Document_Writer.print_bgcolor false
    print.printer_Microsoft_XPS_Document_Writer.print_bgimages false
    print.printer_Microsoft_XPS_Document_Writer.print_command
    print.printer_Microsoft_XPS_Document_Writer.print_downloadfonts false
    print.printer_Microsoft_XPS_Document_Writer.print_edge_bottom 0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_left 0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_right 0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_top 0
    print.printer_Microsoft_XPS_Document_Writer.print_evenpages true
    print.printer_Microsoft_XPS_Document_Writer.print_footercenter
    print.printer_Microsoft_XPS_Document_Writer.print_footerleft &PT
    print.printer_Microsoft_XPS_Document_Writer.print_footerright &D
    print.printer_Microsoft_XPS_Document_Writer.print_headercenter
    print.printer_Microsoft_XPS_Document_Writer.print_headerleft &T
    print.printer_Microsoft_XPS_Document_Writer.print_headerright &U
    print.printer_Microsoft_XPS_Document_Writer.print_in_color true
    print.printer_Microsoft_XPS_Document_Writer.print_margin_bottom 0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_left 0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_right 0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_top 0.5
    print.printer_Microsoft_XPS_Document_Writer.print_oddpages true
    print.printer_Microsoft_XPS_Document_Writer.print_orientation 0
    print.printer_Microsoft_XPS_Document_Writer.print_pagedelay 500
    print.printer_Microsoft_XPS_Document_Writer.print_paper_data 1
    print.printer_Microsoft_XPS_Document_Writer.print_paper_height 11.00
    print.printer_Microsoft_XPS_Document_Writer.print_paper_size_type 0
    print.printer_Microsoft_XPS_Document_Writer.print_paper_size_unit 0
    print.printer_Microsoft_XPS_Document_Writer.print_paper_width 8.50
    print.printer_Microsoft_XPS_Document_Writer.print_reversed false
    print.printer_Microsoft_XPS_Document_Writer.print_scaling 1.00
    print.printer_Microsoft_XPS_Document_Writer.print_shrink_to_fit true
    print.printer_Microsoft_XPS_Document_Writer.print_to_file false
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_bottom 0
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_left 0
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_right 0
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_top 0
    privacy.clearOnShutdown.cookies false
    privacy.sanitize.migrateFx3Prefs true
    security.warn_viewing_mixed false
    security.warn_viewing_mixed.show_once false
    == Firefox version
    ==
    3.6.6
    == Operating system
    ==
    Windows 7
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-GB; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6
    == Plugins installed
    ==
    *-Default Plug-in
    *Shockwave Flash 10.1 r53
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *GEPlugin
    *Next Generation Java Plug-in 1.6.0_21 for Mozilla browsers
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Office Authorization plug-in for NPAPI browsers
    *The plug-in allows you to open and edit files using Microsoft Office applications
    *6.0.12.775
    *RealPlayer(tm) HTML5VideoShim Plug-In
    *Google Update
    *Version 1.0.3, copyright 1996-2009 The VideoLAN Teamhttp://www.videolan.org/
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.3"

    I think that it is something wrong with kernel and graphic drivers but i'm not able to solve it from the beginning of using of Arch by me.
    I'm not so sure this issue is software-related only because in my case it seems the laptop screen enters power-saving mode (10-min timeout) on its own without any events logged (as shown by dmesg) so my next thought was OK, I'm going to get rid of this issue disabling the screen power-saving timeout in the BIOS and set it to never power down or something like that and from then on managing power mode manually; ie: when I want to power down I will just use systemctl suspend/hibernate which work fine ... problem is: there are no related options in my BIOS for such timeout.
    The only timeouts I have are in /etc/systemd/logind.conf set to 30min (#IdleActionSec) (commented) by default so these are not in effect because the screens goes blank after 10m which is less than the (default) 30m in logind. Maybe setting loggind to 9m (un-commented) to catch the event before the machine-default one ?
    IdleActionSec=9min
    IdleAction=suspend
    Will check it and report back.

  • HTML Expression - condition

    I have a search page with a report region showing top 10 departments.
    The query I have used is :
    select deptno, count(empno) countv
    from emp
    WHERE rownum < 11
    GROUP BY deptno
    order by deptno desc
    If the count = 1, then clicking on the column(link), I would want to goto the details page, If the count >1 then I want to display the search list in the same page. The user would then click appropriate row to go to details page.
    I tried creating using HTML expression, but URL can point to only one page - how do I specify the condition in html expression?
    Is there any other way I can achieve this?
    Thanks,

    Apart from your link - problem : This query will not guarantee to deliver the top 10 departments...beceause the where is evaluated before the group and order by. You should use a in line view to solve this.
    Roel

Maybe you are looking for