July 26

2 comments

Right Adjust Numeric into Alpha field using RPG Free

By NickLitten

July 26, 2017

adjust, alpha, numeric, right, RPG, RPG400, RPGLE, snippet

I have a NUMERIC in an RPG program that I want to move RIGHT into an Alpha field. In the old days of RPG3 I would use MOVE but in the new days of RPG4 I have a couple of more flexible solutions. So, lets say we have a numeric field containing the number 1234, defined as an signed numeric 10 long it would be stored as – 0000000123. And a Result field which is a big long alpha field:

dcl-s myNumber zoned(10:0) inz(1234)
dcl-s myAlpha char(10) inz(*BLANKS)

Rpg code snippet right adjust numeric

Some programmers will forget that a = b is actually eval a = b because the eval is silent 🙂

We have two easy ways of transforming using RPG4:

With Zero Suppression

If we want to be transformed right justified as ‘ 1234” then:

Eval(r) ResultVariable = %char(myNumber);

Note that the %CHAR %BIF will zero suppress the front of any numeric value.

Without Zero Suppression

If we want to be right justified and show the entire number ‘0000001234” then:

Eval(r) ResultVariable = %editc(myNumber:'X');

Yes – I know! That EDITC %BIF is ugly isnt it?

But it works and that’s how we do it. It’s easy once you get used to it, but I’m still left with the wish that that Lords of RPG Programmer Grammar had enforced a nice rule on the %CHAR to perhaps allow us something like %char(:*NOSUPPRESS) or something like that…

But Hey Ho. 🙁

  • {"email":"Email address invalid","url":"Website address invalid","required":"Required field missing"}

    Join the IBM i Community for FREE Presentations, Lessons, Hints and Tips

    >