Feeds:
Posts
Comments

Archive for the ‘Mainframe Code’ Category

We had an instance like the below..
A VSAM file which has got opened by a CICS program in a LPAR region needs to be copied to another LPAR region. We had given shroption (2,3) which doesnt allow us to proceed. As share option 2 allows only one processor at a time to open a data [...]

Read Full Post »

 To send the email to pager using FTP in mainframe
This job catalogs most of the commands needed to send a email to my pager.
// JOB SETEMAIL
// EXEC LIBR,PARM=’MSHP’
ACCESS S=TECH.CONFIG
CATALOG PAGEMESF.L                        REPLACE=YES
SET USER=SYSTEM
SET PASSWORD=xyzxyax
SET HOST=DOCRS2.DOC.STATE.OK.US
SET FROM=xyzx…@aaa.bbb.ccccc.dd.US
SET SUBJECT=Your Page message
SET TO=1234567…@PAGE.METROCALL.zzz   (Stephen Frazier)
SEND
QUIT
/+
Then I run [...]

Read Full Post »