I've seen many replies on how to conditionally display column links for Interactive reports.
But what if I have IR Report link attribute ( which does not apply to any specific column but this is an Attribute of Report ) with the following link
Link column: onmouseover="toolTip_enable(event,this,'Edit')"
So I would like to display this "Edit" link ONLY for some values from specific column.
I've tried to add Condition Type Boolean PL/SQL to my Interactive report attributes but the problem is that I do not know how to obtain the values for those specific columns of each row I need to check the value for so when I add debug statements to my PL/SQL condition I see it displays NULL value
BEGIN
apex_debug.enable(7);
apex_debug.log_message('APEX DEBUG OWNER....'||:P2_ID);
apex_debug.log_message('APEX DEBUG OWNER....'||:P2_OWNER);
apex_debug.disable;
return true;
END;
I've read different suggestions about this but what would be the best and easiest solution to populate P2_ID and P2_OWNER for each row of my Interactive report so I could take advantage of this Condition display for the report link which does not apply to any specific column ?
Or perhaps there is a better way ?
Thank you,
Alex