Search found 537 matches

by Natarajan
Fri Jan 09, 2009 11:20 am
Forum: JCL
Topic: I need to FTP from MF to UNIX
Replies: 7
Views: 17604

Hi, we don't have to write any jcl in mainframe. In UNIX execute the following : $ ftp <ip address of mainframe> then, you will see "ftp>" prompt as shown below. ftp> now type below commands to transfer the file from mainframe to unix. ftp> bin (this specifies the format of the file to be downloaded...
by Natarajan
Thu Jan 08, 2009 5:06 pm
Forum: JCL
Topic: Bypassing a step in JCL
Replies: 2
Views: 4783

Hi Som,

Welcome to mainframegurukul.com

Answer to your question -
You can use IF condition to acheive this.

Refer mainframegurukul's free JCL tutorial...
http://www.geocities.com/srcsinc/drona/ ... l/jcl.html
by Natarajan
Mon Jan 05, 2009 2:50 pm
Forum: JCL
Topic: How 2 add attachment to a mail sent through mainframes
Replies: 2
Views: 3968

sending mail from JCL

This topic already discuss 2 months back. Refer following topic

http://www.mainframegurukul.com/Mainfra ... php?t=3508
by Natarajan
Mon Jan 05, 2009 11:52 am
Forum: COBOL
Topic: Tool to practice COBOL Programs
Replies: 2
Views: 6607

Hi Mona,

Welcome to mainframegurukul.com

Answer to your question -
You can use any of the COBOL compilers for this.

Go to google.com
use search word similar to below -
cobol compilers

you will get many compilers... install them in your machine to practice COBOL
programs.
by Natarajan
Wed Dec 31, 2008 2:45 pm
Forum: IMS DB
Topic: Urgent help needed - IMS abend U4047
Replies: 6
Views: 10980

some info from internet...
U4047- IMS PROBLEM(POSSIBLY PROGRAM OR TRAN DOWN)
by Natarajan
Tue Dec 30, 2008 4:20 pm
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: DB2 Database access from various mainframe machines
Replies: 7
Views: 10354

Thanks Perumal for sharing the info with us.
by Natarajan
Sun Dec 28, 2008 11:13 am
Forum: DFSORT , ICETOOL & Utilities
Topic: Create upto n x m records from Input files N and M
Replies: 4
Views: 7586

ICETOOL help

It needs control to be passed back in file2 multiple times. i suggest to write a Easytrieve program / cobol program instead of using any tools.

Anyway, Let us wait for comments from Frank - ICETOOL guru.
by Natarajan
Fri Dec 26, 2008 12:16 pm
Forum: COBOL
Topic: sysout to a file
Replies: 1
Views: 4007

Hi sash,

you have started new topic... instead of clicking 'REPLY' button.
you might have clicked 'POST' button...

Please reply to old topic....


moderators - please deleted this new topic....
by Natarajan
Fri Dec 26, 2008 11:26 am
Forum: COBOL
Topic: sysout to a file
Replies: 12
Views: 23052

Hi Sash, i think of only above two solutions. 1. change your jcl... so that data will be directly written to sequential file 2. transfer full spool data to sequential file manually - look like this option. not suitable for your requirement. i would suggest you to change jcl as i have explained in my...
by Natarajan
Fri Dec 26, 2008 10:19 am
Forum: COBOL
Topic: sysout to a file
Replies: 12
Views: 23052

If you want transfer sysout data to another file, after job execution, manually.

use XDC line command, in the spool. it will transfer all spool details including
SYSOUT to specified sequential file.
by Natarajan
Fri Dec 26, 2008 10:07 am
Forum: COBOL
Topic: sysout to a file
Replies: 12
Views: 23052

Hi Sash, Welcome to mainframegurukul.com Answer to your question. Change the SYSOUT statement in JCL. Your existing code may look like as follows //SYSOUT DD SYSOUT=* Change this to code similar to below. //SYSOUT DD DSN=DEV.FILENAME3, // DISP=(,CATLG,DELETE), // SPACE=(CYL,(10,10,0&...
by Natarajan
Mon Dec 15, 2008 2:22 pm
Forum: ABEND CODES / ERROR CODES
Topic: Urgent Help needed !!
Replies: 11
Views: 32409

It look like error related to large amount of data dumped to spool.
or it is related to storage.

any comments from others in this forum.
by Natarajan
Mon Dec 15, 2008 12:41 pm
Forum: ABEND CODES / ERROR CODES
Topic: Urgent Help needed !!
Replies: 11
Views: 32409

can you post the sort card.
by Natarajan
Mon Dec 15, 2008 12:32 pm
Forum: ABEND CODES / ERROR CODES
Topic: Urgent Help needed !!
Replies: 11
Views: 32409

Let us know what you are doing in that step.

Is it a SORT step?
by Natarajan
Thu Dec 11, 2008 6:43 pm
Forum: EASYTRIEVE
Topic: To split matched and unmatched records into 2 files
Replies: 4
Views: 19191

EASYTRIEVE MATCHING LOGIC

Thanks krishna. Senthil, Here is the job card which will do the required. I assume that you know how to define the files in easytrieve. Below example match the input files based on EMPNO field. JOB INPUT (FILE1 KEY(SO-EMPNO) + FILE2 KEY(AO-EMPNO) ) IF MATCHED PUT OUTPUT1 ELSE...