joshcunningsworth
joshcunningsworth

Reputation: 197

Command that will include a Library to my Library List in AS400

I'm trying to add the library LAB4LIB to my library list so I can run a CL program and it will be able to find the correct display file. I'm not sure what client access command I should use to do this successfully.

Upvotes: 1

Views: 1974

Answers (1)

user2338816
user2338816

Reputation: 2163

There is no client access command that will do that. (And "client access" hasn't been available for many years.) You would use an OS CL command to add a library to a job's library list.

ADDLIBLE  LAB4LIB

The ADDLIBLE command will 'ADD a LIBrary List Entry'. Additional parameters can be used to insert the new entry into specific positions in the list.

Upvotes: 2

Related Questions