Search found 23 matches

by Shuku
Fri Nov 02, 2018 2:27 pm
Forum: JCL - Job Control Language.
Topic: How to print a dataset in mainframe?
Replies: 1
Views: 646

How to print a dataset in mainframe?

Hi,

How can we print a dataset to the printer? If someone can guide me to a JCL for it, please direct me or give me a JCL to do so.
by Shuku
Wed Jan 31, 2018 6:01 pm
Forum: CICS, Middleware and MQ Series.
Topic: How to kill the intertest list session.
Replies: 1
Views: 523

How to kill the intertest list session.

Hi,

For one of the testing, I ran the following command:

Code: Select all

LIST tran
to debug my program. In background something happened and my session was stuck and I am told that the only way to get my session back is to recycle the region. Can somebody advise, how to resolve it really without CICS recycle?
by Shuku
Wed Nov 08, 2017 5:57 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: Web Services and SOA ?
Replies: 1
Views: 463

Web Services and SOA ?

hi,

Are Web Services and SOA same?
by Shuku
Thu Apr 28, 2016 12:09 pm
Forum: Thought of the Day, General Talk & Jokes.
Topic: Count to a Million!
Replies: 234
Views: 74053

Re: Count to a Million!

193
by Shuku
Thu Apr 14, 2016 4:58 pm
Forum: SMS & VSAM and BDAM, BSAM, QSAM, BPAM, ISAM, OAM.
Topic: Check the existance of the data in VSAM in CICS program.
Replies: 5
Views: 763

Re: Check the existance of the data in VSAM in CICS program.

Your question, as posted, is so fuzzy as to not be answerable.  We have a VSAM file with merchant number details. Well, VSAM data sets (they are NEVER "files" -- files is a term on the mainframe used for Unix System Services which runs as part of z/OS) can be sequential (ESDS), indexed (K...
by Shuku
Thu Apr 14, 2016 4:56 pm
Forum: CICS, Middleware and MQ Series.
Topic: Debug the CICS program with out increasing the cost.
Replies: 2
Views: 399

Debug the CICS program with out increasing the cost.

Hi,

We usually Xped the CICS programs to debug it. It is said to us that, using Xpeditor takes too high CICS CPU time that causes high mainframe utilization and cost. 

Is there any other way to debug the CICS program or are there some good ways for better Xpeditor use in terms of cost reduction?
by Shuku
Sat Mar 26, 2016 9:53 pm
Forum: SMS & VSAM and BDAM, BSAM, QSAM, BPAM, ISAM, OAM.
Topic: Check the existance of the data in VSAM in CICS program.
Replies: 5
Views: 763

Check the existance of the data in VSAM in CICS program.

Hi, We have a VSAM file with merchant number details. On a CICS map, the user will enter a merchant number. The condition I want to check is that if the merchant number is exists in the VSAM only then the next map should be displayed on screen. What is proper way to check merchant number in the VSAM...
by Shuku
Tue May 26, 2015 1:52 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: How to calculate STRING length?
Replies: 9
Views: 4866

Re: How to calculate STRING length?

Thanks William. I shall not be able to try your example right away as I don't have a mainframe to test it but I understand the logic somewhat moving 10, 17 and zero to lengeth of the field is not clear to me. What is that doing?
by Shuku
Mon May 25, 2015 2:10 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: How to calculate STRING length?
Replies: 9
Views: 4866

Re: How to calculate STRING length?

You can have a variable-length field (the amount of storage allocated is fixed) using OCCURS DEPENDING ON. It is still not a "string", because a string would be terminated, instead of this the variable-length field has a length. Sorry hit the submit button too fast. William sorry I did no...
by Shuku
Mon May 25, 2015 2:08 pm
Forum: Thought of the Day, General Talk & Jokes.
Topic: Top 10 Jobs In The Tech Industry.
Replies: 3
Views: 514

Re: Top 10 Jobs In The Tech Industry.

I think a System Programmer sholud be well paid in U.S. but I dobut if a Mainframe System Programmer will be at par with other System Programmers in terms of salary...
by Shuku
Mon May 25, 2015 2:03 pm
Forum: Suggestions & Feedback : About the website.
Topic: How did you find us?
Replies: 294
Views: 500621

Re: How did you find us?

Same with me, found the site on google.
by Shuku
Mon May 25, 2015 2:02 pm
Forum: Thought of the Day, General Talk & Jokes.
Topic: Where do you live?
Replies: 251
Views: 229162

Re: Where do you live?

india.jpg

India.
by Shuku
Mon May 25, 2015 1:59 pm
Forum: Thought of the Day, General Talk & Jokes.
Topic: Count to a Million!
Replies: 234
Views: 74053

Re: Count to a Million!

149.
by Shuku
Mon May 25, 2015 1:51 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: How to calculate STRING length?
Replies: 9
Views: 4866

Re: How to calculate STRING length?

Thank you so much for the explnation, they were very helping. I could not return to forums but I used something like this:

Code: Select all

01  WS-TEXT           PIC X(40) VALUE 'THIS IS THE VARIABLE VALUE'. 


INSPECT FUNCTION REVERSE(WS-TEXT) TALLYING L FOR LEADING SPACES 
COMPUTE LEN = LENGTH OF WS-TEXT - LEN 
by Shuku
Mon May 25, 2015 1:39 pm
Forum: Thought of the Day, General Talk & Jokes.
Topic: Count to a Million!
Replies: 234
Views: 74053

Re: Count to a Million!

148.
by Shuku
Mon Jun 09, 2014 11:56 am
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: How to calculate STRING length?
Replies: 9
Views: 4866

How to calculate STRING length?

Hi, In Cobol, how can we find the length of the a string? Say: 01 A PIC X(10) And I've used only 7 bytes so the length be 7 but Cobol will tell only 10. How can we calculate that? Also, I feel that in cobol it should not be called string lenght but then this is what i heard other saying it, is it co...
by Shuku
Mon Jun 09, 2014 11:53 am
Forum: Thought of the Day, General Talk & Jokes.
Topic: Count to a Million!
Replies: 234
Views: 74053

Re: Count to a Million!

0130.
by Shuku
Wed May 14, 2014 11:18 pm
Forum: Thought of the Day, General Talk & Jokes.
Topic: Count to a Million!
Replies: 234
Views: 74053

Re: Count to a Million!

0120.

Go to advanced search