Invoking the LKED procedure

To invoke the LKED procedure, code the following EXEC statement:
//stepname   EXEC   LKED
The following example shows a sample JCL sequence for using the LKED procedure in one step to bind object modules to produce a program module, then execute the program module in a subsequent step.
//LESTEP     EXEC   LKED
  (Overriding and additional DD statements for the LKED step)
//LKED.SYSIN DD     *
  (Object module decks and control statements)
//EXSTEP     EXEC   PGM=*.LESTEP.LKED.SYSLMOD
  (DD statements and data for load module execution)

LESTEP invokes the LKED procedure and EXSTEP executes the program module produced by LESTEP.