Returns the amount number of decimals within a variable or constant.
Parameters:
- Variable or constant
Example:
Code Block | ||
---|---|---|
| ||
pjs.define("testnum", { type: 'packed decimal', length: 7, decimals: 3 }); pjs.define("result", { type: 'integer', length: 5, decimals: 0 }); testnum = 236.56; result = pjs.decimalPositions(testnum); |
RPG Equivalent: %DECPOS()