1/04/2019

Condition based oracle apex column URL (Report Page)

Condition based oracle apex column URL (Report Page)

oracle apex





Please find the below code for your reference and modify it.

select (case when order_status =’COMPLETED’ then
'<a title="Click here to generate the report"
class="t-Button t-Button–simple t-Button–small t-Button–hot t-Button–stretch" href="'||
apex_page.get_url(
p_page        => 12,
p_clear_cache => 12,
p_items       => 'P12_ORDER_ID,P12_STATUS',
p_values      => ORDER_ID||','||STATUS)||'">GENERATE REPORT</a>'
else
NULL
end)  “REPORT"
from order

No comments:

Post a Comment

Disable browser right click and view source Javascript

$(document).ready(function() {     //Disable cut copy paste      $('body').bind('cut copy paste', function(e) {         e.pr...