The change is highlighted in bold:
//MFA PROC DSNQUAL='HLQ.MFA', // TAUQUAL='HLQ.ZSERVER', //* EAUTULIB='CAI.NDVRR15.CSIQAUTU', //* EAUTHLIB='CAI.NDVRR15.CSIQAUTH', //* ECONLIB='CAI.NDVRR15.CSIQLOAD', //* LIBRIAN='CAI.CAILIB', // TCPDATA='TCPIP.OS390.TCPDATA' //* //*------------------------------------------------------------------* //* * //* Micro Focus Mainframe Access - MFA Started Task * //* * //*------------------------------------------------------------------* //* Q u i c k C o n f i g u r a t i o n * //*------------------------------------------------------------------* //* * //* Change the DSNQUAL value on the PROC statement to the correct * //* value for your installation. * //* * //* Change the TCPDATA value on the PROC statement to specify the * //* data set name used at your installation. For CA TCPAccess you * //* may remove this symbolic parameter and the associated * //* DD statement. * //* * //*------------------------------------------------------------------* //* A d v a n c e d C o n f i g u r a t i o n * //*------------------------------------------------------------------* //* * //* Endevor Considerations * //* ---------------------- * //* If you will be using the Mainframe Access Server Endevor * //* support, change the EAUTHLIB and ECONLIB values * //* on the PROC statement to specify the data set names of your * //* Endevor AUTHLIB and CONLIB program libraries. * //* Remove the comment asterisks from the two PROC statements * //* and from the two DD statements in the STEPLIB concatenation. * //* * //* Librarian Considerations * //* ------------------------ * //* If you will be using the Mainframe Access Server Librarian * //* support, change the LIBRIAN value on the PROC statement * //* to specify the data set name of your Librarian program library. * //* Remove the comment asterisk from the PROC statement and from * //* the DD statement in the STEPLIB concatenation. * //* * //* Mainframe Call Generator Considerations * //* --------------------------------------- * //* If you will be using the Mainframe Call Generator feature, * //* remove the comment asterisk from the supplied MCGLIB DD * //* statement (the DD name must be MCGLIB) and change the data set * //* name to the name of your program library. * //* If you have more than one program library for MCG the MCGLIB * //* DD can specify a concatenation of progam libraries. * //* * //* DBCS Code Page Considerations * //* ----------------------------- * //* If you want DBCS code page support you must uncomment the EZA* * //* DD statments. The TCPIP.SEZADBCX data set is supplied by IBM * //* as a part of TCP/IP. * //* * //* z/Server Holder Considerations * //* ----------------------------- * //* If you want to start the z/Server holder under MFA uncomment * //* the z/Server DD statements including on the STEPLIB. * //* * //* * //* Change Log * //* * //* * //* ChangeID Description * //* -------- -------------------------------------------------------* //* V3.10 New DD statement - //ABNLIGNR DD DUMMY * //* V4.00 Endevor changes * //* V5.00 zServer support * //* V6.00 Mainframe Access XML configuration support * //*------------------------------------------------------------------* //* //MFA EXEC PGM=MFMFM,REGION=64M //STEPLIB DD DISP=SHR,DSN=&DSNQUAL..LOADLIB // DD DISP=SHR,DSN=&TAUQUAL..AUTHLIB //*--------------------------------------------------- //* Optional site-dependent Librarian program library //*--------------------------------------------------- //* DD DISP=SHR,DSN=&LIBRIAN //*--------------------------------------------------- //* Optional site-dependent Endevor program libraries //*--------------------------------------------------- //* DD DISP=SHR,DSN=&EAUTULIB //* DD DISP=SHR,DSN=&EAUTHLIB //*CONLIB DD DISP=SHR,DSN=&ECONLIB //DLL DD DISP=SHR,DSN=&DSNQUAL..LOADLIB //TABLES DD DISP=SHR,DSN=&DSNQUAL..TABLES //XDBIN DD DISP=SHR,DSN=&DSNQUAL..CNTL(PARMS) //SERVERS DD DISP=SHR,DSN=&DSNQUAL..CNTL(SERVERS) //XDBACC DD DISP=SHR,DSN=&DSNQUAL..CNTL(ACCESS) //CEEOPTS DD DISP=SHR,DSN=&DSNQUAL..CNTL(CEEOPTS) //SYSPRINT DD SYSOUT=A //SYSTERM DD SYSOUT=A //SYSUDUMP DD SYSOUT=A //XDBOUT DD SYSOUT=A //DSNTRACE DD SYSOUT=A //DUMMY DD DUMMY //ABNLIGNR DD DUMMY revoke ABENDAID //* //*-------------------------------- //* zServer Holder //*-------------------------------- //* //*SYSEXEC DD DISP=SHR,DSN=&TAUQUAL..EXEC //*CONFXML DD DISP=SHR,DSN=&DSNQUAL..CNTL(MFAXML) //*CONFOSR DD DISP=SHR,DSN=&TAUQUAL..OSR(MFAOSR) //*DSPPRT DD SYSOUT=*,LRECL=255 //*SYSOUT DD SYSOUT=* //*SYSTSIN DD DUMMY //*SYSTSPRT DD SYSOUT=* //* //*-------------------------------- //* Site-dependent TCP/IP data set //*-------------------------------- //* //SYSTCPD DD DISP=SHR,DSN=&TCPDATA //* //*----------------------------- //* Optional audit log data set //*----------------------------- //* //XDBAUDIT DD DUMMY,DISP=SHR,DSN=&DSNQUAL..AUDIT //* //*--------------------------------------------------- //* Optional Mainframe Call Generator program library //*--------------------------------------------------- //* //*MCGLIB DD DISP=SHR,DSN=YOUR.MCG.PROGRAM.LIBRARY //* //*--------------------------------------------------- //* Optional DBCS code pages //*--------------------------------------------------- //* //*EZACHLAT DD DSN=TCPIP.SEZADBCX(EZACHLAT),DISP=SHR //*EZAHGLAT DD DSN=TCPIP.SEZADBCX(EZAHGLAT),DISP=SHR //*EZAKJLAT DD DSN=TCPIP.SEZADBCX(EZAKJLAT),DISP=SHR //*EZASCLAT DD DSN=TCPIP.SEZADBCX(EZASCLAT),DISP=SHR