I would like to have a Real to String function in relations. Our company standard defines the display of the dimensions of a part as a string parameter in our BOM;
T=6.35 100x500
In order to get this currently I have to write a very complex relation to extract the values from the models;
IF MODEL_THICKNESS < 10
TK=ITOS(MODEL_THICKNESS*100)
DIMENSION="T= "+ EXTRACT(TK,1,1) + "." + EXTRACT(TK,2,2) + " X " + ITOS(MODEL_WIDTH) + " X " + ITOS(MODEL_LENGTH)
ENDIF
IF MODEL_THICKNESS >= 10
TK = ITOS(MODEL_THICKNESS*100)
DIMENSION="T= "+ EXTRACT(TK,1,2) + "." + EXTRACT(TK,3,2) + " X " + ITOS(MODEL_WIDTH) + " X " + ITOS(MODEL_LENGTH)
ENDIF
Luckily we display our dimensions in mm, so I only have to support the imperial thickness of the materials.