Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

what is replacing oracle reports

Wayne_DukeApr 13 2021 — edited Apr 13 2021

With Oracle reports being de-supported, what is replacing it and is it covered by the existing license cost of forms and reports?

This post has been answered by Michael Ferrante-Oracle on Apr 13 2021
Jump to Answer

Comments

François Degrelle
Hello,

Use the Set_Item_Instance_Property() built-in on each item of the record, with a Visual Attribute that have the foreground or the background color set to red.

Francois
Grant Ronald-Oracle
You can usually do this on a post query trigger but be aware that with web deployed Forms you will potentially be generating quite a bit of client network traffic so be aware just incase this starts to give you performance problems.

Regards
Grant
598585
Make a Visual attribute 'VIS' with foreground and background colour as RED and write the following code in post query trigger of the block.

if :Block.status='yourcondition' then
set_item_instance_property('status',CURRENT_RECORD,VISUAL_ATTRIBUTE,'VIS');
end;

Please mark the answer in case it helped
1 - 3

Post Details

Added on Apr 13 2021
5 comments
2,660 views