Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Converts the value of an expression to an unsigned integer.

Parameters

  1. Numeric or Character Expression

Examples

Example 1: Packed -> Unsigned Integer

pjs.define("u1", { type: 'unsigned integer' });
pjs.define("p1", { type: 'packed decimal', length: 7, decimals: 3, initValue: 8236.567 });

u1 = pjs.unsignedInt(p1);

return p1;
//8236

Example 2: Char -> Packed

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()

  • No labels