Now you're making me design this change :-)
These values used to be stored in the measure series table (renamed to pm_meas_src) but now they're in a separate table (PM_MEAS_SRC_BRKPNT_VALS ) to allow the number of levels to be soft.
You could issue a request by JOINing PM_MEAS_SRC to PM_MEAS_SRC_BRKPNT_VALS_VW. Since you're running 5.2.3HF4 this is a listing report that should work:
-INCLUDE A_DEFAULTS
JOIN MEASURE_SERIES IN PM_MEAS_SRC_BRKPNT_VALS_VW TO MEASURE_SERIES IN PM_MEAS_SRC AS JOIN1
-RUN
DEFINE FILE PM_MEAS_SRC_BRKPNT_VALS_VW
FTYPE/A15 = IF (TLRNC_LVL_LOWER EQ 1) THEN 'Threshold' ELSE 'Flex' ;
END
TABLE FILE PM_MEAS_SRC_BRKPNT_VALS_VW
PRINT
FTYPE
BRKPNT_VALUE
BY MEASURE_SERIES_NAME
WHERE MEASURE_FIELD_NAME EQ 'TARGET' ;
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET STYLE *
-INCLUDE A_STYLE01
END
If you wanted to show the info for only one measure you could issue a WHERE on MEASURE_SERIES.
Same extraction principle would apply for the properties report which is already doing such a filter. The 5.2.3HF4 properties report took out the old code that got the tolerances. A revised one would need to put them back using these principles.
We'll get to it sometime in 5.3! Meantime you could customize if you like.
thanks
Bob Jude Ferrante
Director of Business and Development
WebFOCUS Performance Management
Bob_Ferrante@ibi.com
917-339-5105
I'll take any questions about PMF - business or technical - anytime!