Search found 16 matches

by nagesh divvela
Wed Apr 28, 2010 11:02 am
Forum: DFSORT , ICETOOL & Utilities
Topic: number of records in input file
Replies: 3
Views: 15781

Code: //SYSIN DD * SORT FIELDS=COPY OUTFIL REMOVECC,NODETAIL, TRAILER1=(10:'NO OF RECORDS:',COUNT) /* Hi...could you please let me know what REMOVECC & NODETAIL strings are for ? Regards, Nagesh D
by nagesh divvela
Tue Mar 30, 2010 5:05 pm
Forum: DFSORT , ICETOOL & Utilities
Topic: Query for an utility to copy records on condition
Replies: 3
Views: 6673

Hi Frank, Thanks for the reply and the query. Both the data sets are of LRECL 80 only, the data mmddyy would be starting from position 1 itself in the other dataset. So it will be like, one dataset will be having the date value in the first six chars and the other would be having the data set names ...
by nagesh divvela
Tue Mar 30, 2010 12:58 am
Forum: DFSORT , ICETOOL & Utilities
Topic: Query for an utility to copy records on condition
Replies: 3
Views: 6673

Query for an utility to copy records on condition

Hi, I have a dataset which would be having the dataset name with date qualifier like beow, where the last qualifier is the date(MMDDYY) : ABCD.ABCDEF.ABCDEF.032410 ABCD.ABCDEF.ABCDEF.032510 ABCD.ABCDEF.ABCDEF.032310 I wanted to copy all the file name that have been created before particular date whi...
by nagesh divvela
Tue Mar 23, 2010 2:35 am
Forum: JCL
Topic: To check if datasets exists or not..
Replies: 1
Views: 4916

To check if datasets exists or not..

Hi, I will be having the list of dataset names in a dataset. The requirement is to check whether all the dataset names in the dataset are cataloged or not. Even copying all the cataloged dataset names into one file and uncataloged datasets into another file will be a best option for me. Can someone ...
by nagesh divvela
Fri Mar 05, 2010 3:22 pm
Forum: JCL
Topic: Giving the expiry date also as a parameter while allocating
Replies: 4
Views: 7059

Hi Anuj,

In the other thread I was searching for the COBOL utility, Here under the JCL section I just requested for the parameter which we give in the JCL.

@ Frank, thanks for the reply. It was the thing which I was actually looking for.

Regards,
Nagesh
by nagesh divvela
Fri Mar 05, 2010 3:16 pm
Forum: COBOL
Topic: Giving expiry date for a file getting dynamically allocated
Replies: 4
Views: 6428

Hi Anuj, It is actually using the utility DSUDYNA which I mentioned, If you can suggest any other utility where we can dynamically allocate a file giving the retention period/ expiry date is even fine. Thanks for the update, Please let me know the other Utilities where I can get this requirement don...
by nagesh divvela
Tue Mar 02, 2010 9:47 pm
Forum: JCL
Topic: Giving the expiry date also as a parameter while allocating
Replies: 4
Views: 7059

Giving the expiry date also as a parameter while allocating

Hi all,

Can some one suggest me how to give the expiry date in the DCB parameters which we give for a dataset creation in the JCL.

I need to give the expiry date while allocating the dataset, so like giving the LRECL how to give the expiry date ?

Regards,
Nagesh D
by nagesh divvela
Tue Mar 02, 2010 9:12 pm
Forum: COBOL
Topic: Giving expiry date for a file getting dynamically allocated
Replies: 4
Views: 6428

Giving expiry date for a file getting dynamically allocated

Hello all, We have REXX tool/subroutine DSUDYNA, which uses a DTG with file name and DCB parameters for dynamically allocating a file. My requirement is that it has to be allocated with certain expiry date. In the DCB parameters given in the DTG, the expiry date parameter is not there. So, is there ...
by nagesh divvela
Wed Jan 13, 2010 2:02 pm
Forum: COBOL
Topic: COBOL Change command
Replies: 9
Views: 14774

Hi,

I have gone through F1 as suggested, got the right answer for this.

after giving the Change command if we give 'L CHG', it will take you to the line where it was changed, '&L CHG' will take us through all the changed lines by enter.

Nagesh D
by nagesh divvela
Mon Jan 04, 2010 9:28 am
Forum: COBOL
Topic: SPLIT SCREENS Naming
Replies: 5
Views: 7558

Hi Anuj,

Thanks for the clue, but it is showing that

IKJ56500I COMMAND NAME NOT FOUND
***

When I am giving the NAME SCR command in the command line of the screen where I have opened a member of a PDS.

Regards,
Nagesh.
by nagesh divvela
Mon Dec 28, 2009 1:32 pm
Forum: COBOL
Topic: COBOL Change command
Replies: 9
Views: 14774

Thanks all for the information..

@Dick, thanks for giving that suggestion, earlier I was trying with
X ALL <string1>; C ALL <string1> <string2>
which executed as it has to execute.

@Vraix, thanks for mentioning the command clearly, your reply has given me a clear idea, thats really helpful

Regards
by nagesh divvela
Mon Dec 28, 2009 9:41 am
Forum: XPEDITER
Topic: Compilation Error using Expeditor option
Replies: 3
Views: 34220

Compilation Error using Expeditor option

Hi..

I have alloacated the DDIO file on my RACF ID...
still If I try to complile any component in changman with the XPEDITOR copilation option, it fails with a RC = 08.

Other than DDIO file what else I need inorder to use the XPEDITOR, or what else could be the reason ?
by nagesh divvela
Mon Dec 28, 2009 9:21 am
Forum: COBOL
Topic: SPLIT SCREENS Naming
Replies: 5
Views: 7558

SPLIT SCREENS Naming

Hi all.. We have the option of splitting the screen by F2 or starting a new screen by START, we can also see the list of all the split screens giving the LIST <then> F9 command Do we have any command to name the screen for recognising it easily.. Naming it the time when we are opening or later even....
by nagesh divvela
Mon Dec 28, 2009 9:00 am
Forum: COBOL
Topic: COBOL Change command
Replies: 9
Views: 14774

Thanks for the explanation... When I give X all command it ade the lines non displayable.. - - - - - - - - - - - - - - - - - - - 2 Line(s) not Displayed But later when I gave the C ALL PRG ARG..it has changed the string and is displaying the total code as it shows when we give a change command in di...
by nagesh divvela
Mon Dec 28, 2009 8:46 am
Forum: COBOL
Topic: COBOL Change command
Replies: 9
Views: 14774

Thanks for that..

It is a good thought of giving a find for the changed string and then differentiating whether it was changed or not from the label "==CHG>" will do my need.

But I did not understand how X ALL would help in this context.