The pjs.dec() API converts a value to a packed decimal number.
...
- Value / field
- Total length (optional)
- Decimal places - number of decimal place; does not add to the total length (optional)
- Half-adjust - if true, the number will be half-adjusted or rounded (optional)
...
Examples
Example 1: char -> packed decimal
...
Code Block | ||
---|---|---|
| ||
pjs.define("d1", { type: 'date', dateFormat: '*eur', initValue: pjs.date('2016-06-15') }); pjs.define("p1", { type: 'packed decimal', length: 10, decimals: 0 }); p1 = pjs.dec(d1); return p1; //15062016 |
...
RPG Equivalent
%DEC()