Author |
Message |
Topic: NDM check |
taterhead
Replies: 4
Views: 5056
|
Forum: Job Control Language(JCL) Posted: Wed Jun 09, 2004 8:20 am Subject: NDM check |
DMBATCH can complete successfully but the transfer can fail for a variety of reasons. I'm not real familiar with this stuff so you'll need to scare up a manual, but there's verbiage in the NDM proces ... |
Topic: is it possible to involve the JCL variables inside IDCAMS |
taterhead
Replies: 6
Views: 4462
|
Forum: Job Control Language(JCL) Posted: Fri Feb 20, 2004 9:45 am Subject: is it possible to involve the JCL variables inside IDCAMS |
You can also do it with TSO:
//STEP EXEC PGM=IKJEFT01,
// PARM='DELETE &MYPRE..XXXX.XXXX'
|
Topic: Symbolic Parameter for IDCAMS DELETE command? |
taterhead
Replies: 6
Views: 10019
|
Forum: Job Control Language(JCL) Posted: Tue Jul 08, 2003 7:38 am Subject: Symbolic Parameter for IDCAMS DELETE command? |
Use TSO:
//DELT EXEC PGM=IKJEFT01,
// PARM='DELETE MYID.FILE.&VERSION'
|
Topic: How To OPEN and CLOSE A VSAM FILE USING JCL ? |
taterhead
Replies: 9
Views: 8909
|
Forum: Job Control Language(JCL) Posted: Fri Jun 13, 2003 8:28 am Subject: How To OPEN and CLOSE A VSAM FILE USING JCL ? |
PrakashT,
Can you please elaborate on your requirement ?
Answering your question, explicit "OPEN" and "CLOSE", Iam afraid is possible only through a program.
Cheers,
CoolmanAnd that progr ... |
Topic: Compilation of programs |
taterhead
Replies: 6
Views: 3439
|
Forum: Application Programming Posted: Fri Jun 06, 2003 8:08 am Subject: Compilation of programs |
Semigeezer, linkeditting or relinking, as u put it, is a step in the compilation of the program. So to relink a program u would have to recompile the calling program.
Now, linkeditting happens dep ... |
Topic: how to search a string in cobol |
taterhead
Replies: 10
Views: 16276
|
Forum: Application Programming Posted: Wed Apr 02, 2003 9:25 am Subject: how to search a string in cobol |
*cough cough* INSPECT *cough cough* |
Topic: Validate every byte in a field |
taterhead
Replies: 23
Views: 14742
|
Forum: Application Programming Posted: Thu Dec 19, 2002 9:21 am Subject: Validate every byte in a field |
Check out CLASS in the SPECIAL-NAMES section. You can lay out explicitly what you're checking for.
SPECIAL-NAMES.
CLASS ALPHA-NU ... |
|