I am having problems with missing dada that being sent to Datapage.
If I report a location of a feature every thing is good. When I report pt2 to pt3, pt2 to pt4 and pt2 to pt5 the only one that will go to Datapage is pt2 to pt5 and it is labeled as pt2 in Datapage. I have stats set to be labeled by DIMENSION NAME.
You SURE that the program is using DIM-NAME (it's in Pcdmis, not Datapage)? If it is using FEATURE ID, then by using PT2 to PT3, PT2 to PT4, PT2 to PT5, they will all show up as PT2.M and only the LAST one will be in Datapage.
This how my program looks, as you see my variable label is set to dimension name.
But it shows up in datapage as PNT2.M like you have feature name marked.
STATS/ON,DATAPAGE,$
DIRECTORY=,$
READ=10,WRITE=20,MEMPAGES=64,DIMENSION NAME,CONTROLCALC OFF,$
STATS/END
DIM DIST1= 2D DISTANCE FROM POINT PNT2 TO POINT PNT3 PAR TO XAXIS,NO_RADIUS UNITS=MM,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
AX NOMINAL +TOL -TOL MEAS DEV OUTTOL
M 10.500 0.250 0.250 10.315 -0.185 0.000 -#------
DIM DIST2= 2D DISTANCE FROM POINT PNT2 TO POINT PNT11 PAR TO XAXIS,NO_RADIUS UNITS=MM,$
GRAPH=OFF TEXT=OFF MULT=10.00 OUTPUT=BOTH
AX NOMINAL +TOL -TOL MEAS DEV OUTTOL
M 191.696 0.250 0.250 191.524 -0.172 0.000 -#------
RECALL/ALIGNMENT,INTERNAL,A1
MOVE/POINT,NORMAL,<52.803,32.216,67.801>
MOVE/POINT,NORMAL,<52.767,32.03,350.335>
TIP/T1A0B0, SHANKIJK=0, 0, 1, ANGLE=0.258
MOVE/POINT,NORMAL,<36.835,187.051,260.277>
COMMENT/OPER,NO,LOAD NEXT LEVER
LOOP/END
Are you looking at the correct database? You don't specify one in your stats statement. I can't remember what pcdmis uses as a default one. The transaction time stamps should be the time of measurement.
Thanks to all, the database path was the problem. I was using the default but apparently it doesn’t like that. Added C:\Datapage\Part to the statement and everything is good to go.