Versions Compared

Key

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

...

NAME = Extract(REC,4,0,0)

Example

 

Code Block
* Extract the third field, Nth value.
INV.DT = MASTER<3,N>
/* Extract the fifth field, Nth value, and subvalue number that is yielded by LINE + 1. */
PROD = MASTER<5,N,LINE + 1>
/* Replace the sixth field, Nth value of MASTER with the second field of PM. */
MASTER<6,N> = PM<2>
* Replace field four of MASTER with "WALL CONSTRUCTION".
MASTER<4> = 'WALL CONSTRUCTION'