iSeriesCodePoet
Programmer
The big thing with /free is getting rid of the MOVE statements. If you want help, post the MOVE code you have with the field definitions, then someone else or yourself can post the /free equivalent. We will try and use this for complete MOVE to /free documentation. I will also create a FAQ pointing to this thread.
Make sure to use
Me first:
Text to Number:
Convert date:
How do you convert these?
iSeriesCodePoet
iSeries Programmer/Lawson Software Administrator
See my progress to converting to linux.
Make sure to use
Code:
[ code ] [ /code ]
Me first:
Text to Number:
Code:
D Number S 5 0
D Text S 5
C MOVE Text Number
Convert date:
Code:
D Date S 8 0
D TempDate D
C *ISO MOVE Date TempDate // YYYYMMDD
C *USA MOVE TempDate Date // MMDDYYYY
How do you convert these?
iSeriesCodePoet
iSeries Programmer/Lawson Software Administrator
See my progress to converting to linux.