On Monday 31 August 2009 21:47, ITURIEL DO NASCIMENTO NETO wrote: > Do you know if are there any product that automatically update LLA > when an update happens in a PDS or PDSE ?
The LINKLLA program can invoke the linkage-editor and refresh LLA in the same step. See 3rd example below. LINKLLA, which must be APF-authorised, is available here: http://gsf-soft.com/Freeware/ The first two examples below show how it can refresh LLA in batch. -- Gilbert Saint-Flour GSF Software http://gsf-soft.com/ LINKLLA Examples: 1: refresh a whole library (SYSLMOD DD does not specify a member) //WHOLELIB EXEC PGM=LINKLLA //SYSLMOD DD DSN=<library-name>,DISP=SHR //SYSPRINT DD SYSOUT=* 2: refresh only a member (SYSLMOD DD specifies a member) //ONEMBR EXEC PGM=LINKLLA //SYSLMOD DD DSN=<library-name(member)>,DISP=SHR //SYSPRINT DD SYSOUT=* 3: invoke the linkage-editor then refresh the module (SYSLMOD DD specifies a member name, and the step's JCL contains //SYSLIN DD) //LINKRFR EXEC PGM=LINKLLA,PARM='LIST,MAP,RENT' //SYSLIN DD DSN=*.HLASM.SYSLIN,DISP=(OLD,PASS) //SYSLMOD DD DSN=<library-name(member)>,DISP=SHR //SYSPRINT DD SYSOUT=* ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

