I'm using several reports using the same array defined in a formula field:
But when the data changes I have to modify all the array definitions in all reports.
Is it possible to read the array data from a file so I only have to modify that one file.
Code:
NumberVar array MANHR := [141,155,169,148];
NumberVar array MANHR1 := [146,161,175,153];
NumberVar array MANHR2 := [77,77,77,77];
NumberVar array MANHR3 := [260,286,312,273];
NumberVar array MANHR4 := [212,233,254,223];
NumberVar array MANHR5 := [172,189,206,181];
But when the data changes I have to modify all the array definitions in all reports.
Is it possible to read the array data from a file so I only have to modify that one file.