Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Note
titleContent Freeze

As of July 25th, 2023, there is a content freeze on this page.

Converts the value of an expression to an unsigned integer.

...


Code Block
pjs.define("c1", { type: 'char', length: 15, initValue: ' 12345.6789 +' });
pjs.define("p1", { type: 'packed decimal', length: 15, decimals: 5 });

p1 = pjs.unsignedInt(c1);
 
return p1;
//12345.00000
 


RPG Equivalent 

%UNS()