Author |
Message |
Topic: accepting email id from the rexx panel |
priyaranjan.mishra
Replies: 2
Views: 2268
|
Forum: TSO and ISPF Posted: Mon Apr 03, 2017 1:27 am Subject: accepting email id from the rexx panel |
Thanks a ton Kolusu,
After making the suggested modifications for the continuation character, I was able to achieve the desired output.
Regards
Priyaranjan |
Topic: accepting email id from the rexx panel |
priyaranjan.mishra
Replies: 2
Views: 2268
|
Forum: TSO and ISPF Posted: Fri Mar 31, 2017 7:17 am Subject: accepting email id from the rexx panel |
I have a requirement to enter the email ID on the rexx panel for the user and receive it in the REXX exec to use it in a SORT step.
Following is the sort step inside the REXX EXEC:
QUEUE &quo ... |
Topic: Segregating records using DFSORT/ICETOOL |
priyaranjan.mishra
Replies: 1
Views: 1634
|
Forum: Utilities Posted: Sat Mar 25, 2017 7:15 am Subject: Segregating records using DFSORT/ICETOOL |
I have an input file with the following fields:
Account #
Capacity Code
Sequence #
Sorted in ascending order of Account #
Following is a sample input file:
16909182 SIGS 01
16909182 G ... |
Topic: Sorting Alphanumeric data in ascending order |
priyaranjan.mishra
Replies: 2
Views: 3018
|
Forum: Utilities Posted: Mon Feb 24, 2014 4:52 am Subject: Sorting Alphanumeric data in ascending order |
Thanks a lot Kolusu...the solution works. |
Topic: Sorting Alphanumeric data in ascending order |
priyaranjan.mishra
Replies: 2
Views: 3018
|
Forum: Utilities Posted: Fri Feb 21, 2014 8:56 am Subject: Sorting Alphanumeric data in ascending order |
I am trying to sort a certain portion of my i/p file using the following control card:
SORT FIELDS=(4,5,CH,A,9,20,CH,A)
The data from position 9 to 20 has an alphanumeric character '/' which can a ... |
Topic: To identify duplicate records in a file |
priyaranjan.mishra
Replies: 4
Views: 12435
|
Forum: Utilities Posted: Thu Nov 19, 2009 7:53 am Subject: To identify duplicate records in a file |
Another simple solution is as follows:
//S1 EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//IN DD * ... |
Topic: removing intermediate spaces in the records of a file |
priyaranjan.mishra
Replies: 2
Views: 3155
|
Forum: Utilities Posted: Thu Nov 19, 2009 4:39 am Subject: removing intermediate spaces in the records of a file |
I have to remove intermediate spaces in the records ofa file and insert coma in between.
For example:
I/P:
1234 5678
00000 2222
10 25
O/P:
1234,5678
00000,2222
10,25 |
Topic: Why use 77 level instead of 01 level.? |
priyaranjan.mishra
Replies: 1
Views: 2169
|
Forum: Application Programming Posted: Sun Nov 15, 2009 7:42 am Subject: Why use 77 level instead of 01 level.? |
I believe all the functionalities performed by a 77 level item can be done by declaring the variable in 01 level. Why then we use 77 level item? Any specific reason? |
Topic: Running multiple jobs using single JCL |
priyaranjan.mishra
Replies: 2
Views: 4034
|
Forum: Utilities Posted: Mon Apr 27, 2009 1:09 am Subject: Running multiple jobs using single JCL |
I have a scenario wherein I have to run a cycle of more than 20 jobs in sequence. But the condition here is that before executing the next JCL, the return code for the previous JCL should be verified ... |
|