Server Guide


Step 2: Building the MVS Native load module

The packaging step generates a packaged image file. Upload this packaged image as binary to MVS and place it in your MVS image library (RECFM=FB, LRECL=80).

Edit ABT.V6R0M0.SABTJLIB(ABTBBLD) to build an executable MVS load module from the packaged image file. In ABTBBLD, find the correct PROC from the list below:

ABTBMF1B
Builds a "load from file" load module for an MVS single image. ABTBMF1B creates a load module that points to a packaged image, so that the load module needs to be built only once for each new application image. See Building a load module using the ABTBMF1B or ABTBMF2B procedure for more information.

ABTBMF2B
Builds a "load from file" load module for an MVS dependent image. ABTBMF2B creates a load module that points to a packaged image, so that the load module needs to be built only once for each new application image. See Building a load module using the ABTBMF1B or ABTBMF2B procedure for more information.

ABTBMN1B
Builds a statically linked load module for an MVS single image.

ABTBMN2B
Builds a statically linked load module for an MVS dependent image. When using this procedure, you must first run the ABTBVM2B procedure for the base image. ABTBMN2B executes the base image created by ABTBVM2B.

ABTBVM2B
Builds a load module for an MVS base image.

Remove the comments for all the parameters for the specified proc and provide the information requested. Note that the following parameters are not required for all the procedures.

Submit the JCL. The module produced is not different from any other C or COBOL MVS load module. If you receive an error while building the load module, see Appendix A, Messages and codes for more information.


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]