COBOL Group moves

2007-08-01 Thread Rashmi Nijaguni Mogali
Hi, I have a query regarding the following group move: 01 GRP1. 05 N1 PIC S9(9) COMP-3 VALUE +0. 05 N2 PIC S9(9) COMP-3 VALUE +0. 01 GRP2. 05 N3 PIC S9(9) COMP-3 VALUE +123. 01 N4 PIC ZZZ,ZZZ,ZZ9. PROCEDURE DIVISION. INITIALI

EZtrieve query

2007-06-01 Thread Rashmi Nijaguni Mogali
Hi, I want to move a value '00280' to a field in a VSAM file. The field is defined as PIC S9(05) COMP-3. How can this be done using EZtrieve?? Regards, Rashmi CAUTION - Disclaimer * This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION in

Recalling GDG generations

2007-04-09 Thread Rashmi Nijaguni Mogali
Hi all, Is there a way to recall the generations of a GDG which have been archived on the tape? I am talking of a batch method here. I need to recall all the archived generations at one go. Regards, Rashmi CAUTION - Disclaimer * This e-mail contains P

Re: Help for SORT requirement

2007-03-19 Thread Rashmi Nijaguni Mogali
EMAIL PROTECTED] On Behalf Of Frank Yaeger Sent: Monday, March 19, 2007 8:16 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: Help for SORT requirement Rashmi Nijaguni Mogali wrote on 03/19/2007 05:51:18 AM: > I have the following requirement: > > Input file: > ---+1+2---

Help for SORT requirement

2007-03-19 Thread Rashmi Nijaguni Mogali
Hi all, I have the following requirement: Input file: ---+1+2+3+4+5+6+7--- -+8 4910024892 123 234 4100324890 456 567 4910024891 789 89

Re: sort problem

2007-01-10 Thread Rashmi Nijaguni Mogali
Yes the spaces need to be replaced by comma -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of john gilmore Sent: Wednesday, January 10, 2007 6:35 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: sort problem Are we to understand that multiple blanks, x'

Sort problem

2007-01-10 Thread Rashmi Nijaguni Mogali
Hi, My input file with record length - 80 bytes is in the following format: AA BBB 12345 AA BB 12345

VSAM file query

2006-10-25 Thread Rashmi Nijaguni Mogali
Hi, I have a query regarding the read of records in a VSAM file. Say, I have defined a VSAM file of 100 bytes with key as the first 20 bytes. The structure is - 01WS-MAIN-RECORD 05 WS-KEY PIC X(20) 05 WS-DATA PIC X(80) Now when I read the file as below and give in the RI

Re: COBOL variable conversion

2006-09-05 Thread Rashmi Nijaguni Mogali
Have tried that already...I am getting SOC7 abend CAUTION - Disclaimer * This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely for the use of the addressee(s). If you are not the intended recipient, please notify the sender by e-mail and de

COBOL variable conversion

2006-09-05 Thread Rashmi Nijaguni Mogali
Hi, I have a variable in my input file defined as follows: 01 APIC S9(03) COMP-3 I need to copy this variable value to the output file variable which is defined as follows: 01 BPIC S9(04) COMP How can I accomplish this? Regards, Rashmi CAUTIO

ReXX query

2006-05-08 Thread Rashmi Nijaguni Mogali
Hi all, I am submitting a job say job1 through my ReXX program. If the RC of job1 is 0, I am submitting job2. This works fine if job1 encounters some abend. In this case job2 is not submitted. But if job1 has some JCL error then job2 is being submitted which should not happen. Is there any w

Submitting job using ReXX

2006-04-26 Thread Rashmi Nijaguni Mogali
Hi all, This is the first time I am coding in ReXX. I need to submit a job using my Rexx program. The job looks something like this: //S2C9011 JOB (S2C9,XX,TI),'', // MSGCLASS=T, // NOTIFY=&SYSUID,

Re: Job scheduling

2006-04-12 Thread Rashmi Nijaguni Mogali
2006 5:57 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: Job scheduling Rashmi Nijaguni Mogali wrote: > Hi, > > > > > I need to schedule the execution of 26 jobs. > > This has to happen such that the 2nd job should start after the > successful execution

Job scheduling

2006-04-11 Thread Rashmi Nijaguni Mogali
Hi, I need to schedule the execution of 26 jobs. This has to happen such that the 2nd job should start after the successful execution of the 1st job, the 3rd after the 2nd and so on. Moreover the output of 1st job is the input to the 2nd job. How do I accomplish this using Clist? Any documen