Previous Topic: LDA Statement—Specify the Data for the Local Data AreaNext Topic: LINES Statement—Specify the Number of Lines per List Page


LIBL Statement—Specify the Libraries for an I5/OS Job

The LIBL statement specifies the names of the libraries that the job uses.

Supported Job Type

This statement is optional for the i5/OS job type.

Syntax

This statement has the following format:

LIBL library|(library library...)
library

Specifies the name of a library that you want to add to the library list.

Limits: Up to 10 characters; it cannot contain delimiters (such as spaces)

Notes:

Example: Add a Library to the Library List of an i5/OS Job

This example runs a program named PAYJOB on an i5/OS system. The library named PAYROLL is added to the library list.

AGENT I5AGENT
CLPNAME PAYJOB
LIBL PAYROLL

Example: Add More than One Library to the Library List of an i5/OS Job

In this example, the libraries PAYROLL and FINANCE are added to the library list.

AGENT I5AGENT
CLPNAME ACCTJOB
LIBL (PAYROLL FINANCE)