FSG Reports
I am trying to update the display flag so that some more entries show up in the amount_type list. They did get updated in table rg_report_standard_axes but wont show up in rg_report_standard_axes_vl. The view is just a select from rg_report_standard_axes table with display_in_standard_list_flag = 'Y'. Does anyone know why the display flag in view wont change from N to Y.
update rg_report_standard_axes
set display_in_standard_list_flag = 'Y'
where standard_axis_id in (12, 13, 16, 23, 24, 27, 28, 29, 500, 510);
0