Hello everybody.
Please anyone know how I can view immediately after the report header, the number of measured dimensions, those of the dimensions in tolerance and those of the dimensions out of tolerance? It's possible?
Thank very much.
Yep. There are 2 reports that are created concurrently, the complete report & an OOT report, listing all of the features out of tolerance. You can get the number of features OOT from the OOT report & the number of measured features from the complete report. How you format this information in your report is up to you.
What you do with the values & how you format the report is up to you.
! Set tolerance utilisation for OOT report at the beginning (here 75%)
SET (NAM=WARN$FAC, RVL=75, GRP=3)
! Get number of OOT features
TESTMBR (REA=OutTol, QUE=$WRN)
CVREACHS (NAM=~OutTol, VAL=OutTol, FM2=0, INT=N, ANG=N, SPZ=N, RLS=Y, RTZ=Y)
CONCAT (NAM=~OutTol, STR=('Number of OOT Features: ',~OutTol), INI=Y)
! Get number of in tol features
TESTMBR (REA=InTol, QUE=$RPO)
InTol = InTol - OutTol
CVREACHS (NAM=~InTol, VAL=InTol, FM2=0, INT=N, ANG=N, SPZ=N, RLS=Y, RTZ=Y)
CONCAT (NAM=~InTol, STR=('Number of in Tol. Features: ',~InTol), INI=Y)
Sorry Timothy,
but I can't find the $ WRN object in the $ QUE object list in my LDB database. Where do I find the QUE $ WRN object.
Can you help me please?
Thanks