Hello,
I have a field of type duration which property "Standard Day/Time Unit" is set to "minute".
The field is "Cumulative Net Time"
I have to fill this field with a value coming from an xml port that represents the number of minutes.
the code I use is as follows :
IF EVALUATE(Rec."Cumulative Net Time",FORMAT(ParseDecimal(Cululative_Net_Time))) THEN;
The problem is that the value 451 is evaluated as 18 days (451/24), and I expect this to be evaluated into 7 hours (451/60).
Is there a way to resolve this problem?
*This post is locked for comments
I have the same question (0)