Author |
Message |
Topic: Conditional Execution of Jobs with Dialog Manager |
RobertL
Replies: 9
Views: 4409
|
Forum: Job Control Language(JCL) Posted: Mon Apr 19, 2004 7:28 am Subject: Conditional Execution of Jobs with Dialog Manager |
Hello K2,
Your CLIST/REXX program needs to do some error checking after executing the FTINCL service to detect any errors that occur. Other than that, the skeleton should be changed from:
// IF RC ... |
Topic: Delete the para |
RobertL
Replies: 14
Views: 4197
|
Forum: TSO and ISPF Posted: Thu Apr 15, 2004 6:00 am Subject: Delete the para |
Hello John,
Try the edit macro I posted yesterday. It should work. No additional software required.
Regards,
Robert |
Topic: Delete the para |
RobertL
Replies: 14
Views: 4197
|
Forum: TSO and ISPF Posted: Wed Apr 14, 2004 8:43 am Subject: Delete the para |
I haven't tested it, but try the following. It should be pretty close to what you need.
/* rexx */
ADDRESS ISREDIT
'MACRO'
"X ALL" ... |
Topic: CEDF mode takes more time |
RobertL
Replies: 6
Views: 3262
|
Forum: CICS and Middleware Posted: Mon Apr 12, 2004 12:40 pm Subject: CEDF mode takes more time |
Since the transactions you are running using CEDF are conversational, CICS is holding the resources you are using much longer than normal. If more than one person is using CEDF at the same time, you ... |
Topic: Delete the para |
RobertL
Replies: 14
Views: 4197
|
Forum: TSO and ISPF Posted: Mon Apr 12, 2004 11:40 am Subject: Delete the para |
Instead of doing DEL ALL X, try this.
CUT .ZF .ZL NX
It will cut only the non-excluded lines. They can then be pasted wherever you like.
Regards,
Robert |
Topic: cancel user from CICS region |
RobertL
Replies: 3
Views: 3876
|
Forum: CICS and Middleware Posted: Wed Feb 25, 2004 12:47 pm Subject: cancel user from CICS region |
My guess is that he wants to sign the user off of the other terminal when they sign on to the next one. Kinda like some VTAM multi-session managers do. Is that correct? |
Topic: Abend in 5000 records |
RobertL
Replies: 3
Views: 3454
|
Forum: Problem Determination Posted: Wed Feb 25, 2004 12:20 pm Subject: Abend in 5000 records |
You may be making an assumption that the program is issuing a commit after every n number of updates. When an abend occurs, DB2 will roll back to the point of last commit. Restart logic should then ... |
Topic: Editing Line Numbers |
RobertL
Replies: 18
Views: 14177
|
Forum: TSO and ISPF Posted: Wed Jan 21, 2004 1:18 pm Subject: Editing Line Numbers |
NUM OFF tells ISPF edit that there are no line numbers in this member. Any changes to the line number fields are accepted as if it is normal data.
NUM ON STD tells ISPF edit that there are line nu ... |
Topic: Editing Line Numbers |
RobertL
Replies: 18
Views: 14177
|
Forum: TSO and ISPF Posted: Tue Jan 20, 2004 1:43 pm Subject: Editing Line Numbers |
If you set your profile to NUM ON STD, then line numbers will be maintained for you on the right hand side. You will then be free to update the numbers on the left hand side as you see fit.
Regard ... |
Topic: Unstring |
RobertL
Replies: 5
Views: 2451
|
Forum: Application Programming Posted: Tue Jan 20, 2004 1:35 pm Subject: Unstring |
Just one comment. When moving the remaining data, there is no need to specify the second value in the reference modification field (shown below).
MOVE WS-STR (WS-PTR : ) TO WS-REST
If you spe ... |
Topic: Submitting jobs dynamically |
RobertL
Replies: 12
Views: 11940
|
Forum: Job Control Language(JCL) Posted: Fri Jan 09, 2004 8:35 am Subject: Submitting jobs dynamically |
Hi,
As warp5 said, you should probably submit the IDCAMS JCL as a separate job, but the it should specify the name of the JCL member in a DD statement instead of in the INDATASET parm as shown below. ... |
Topic: Two jobs in a member |
RobertL
Replies: 7
Views: 2462
|
Forum: Job Control Language(JCL) Posted: Tue Jan 06, 2004 7:23 am Subject: Two jobs in a member |
Assign a label at the end of job1 (for example .B), then enter the command
SUB .ZF .B
Only the first job will be submitted.
Regards,
Robert |
Topic: PICTURE |
RobertL
Replies: 4
Views: 1615
|
Forum: Application Programming Posted: Tue Jan 06, 2004 7:14 am Subject: PICTURE |
Hi abracadabra,
Believe it or not, sometimes you can even store 5 digits in a PIC 9(4) field when USAGE IS BINARY, COMP, COMP-4, or COMP-5. Cobol treats these a strictly binary fields and truncates ... |
Topic: Submitting a JCL thru a JCL |
RobertL
Replies: 5
Views: 2684
|
Forum: Job Control Language(JCL) Posted: Fri Jan 02, 2004 7:47 am Subject: Submitting a JCL thru a JCL |
Hi Abhi,
Try this...
//SUBMIT EXEC PGM=IEBGENER
//SYSIN DD DUMMY
//SYSUT1 DD DSN=your.jcllib(NEXTJOB),DISP=SHR
//SYSUT2 DD SYSOUT=(A,INTRDR)
//SYSPRINT DD ... |
Topic: PICTURE |
RobertL
Replies: 4
Views: 1615
|
Forum: Application Programming Posted: Fri Jan 02, 2004 7:42 am Subject: PICTURE |
Hi abracadabra,
No. Assuming that this is a USAGE DISPLAY item, the sign occupies the hi order nibble of the low order byte as follows:
F1F2F3F4 Unsigned number
F1F2F3C4 Positive number
F1F2F3 ... |
|