Search found 44 matches

by BobP
Tue Dec 01, 2015 3:05 pm
Forum: TSO, ISPF & REXX (Do you still do CLIST?!).
Topic: Way to increase the default logoff time.
Replies: 5
Views: 1009

Re: Way to increase the default logoff time.

Thanks for all your replies.

I think I saw a reply there on this thread using some SDSF trick but it is not there now?
by BobP
Thu Nov 19, 2015 2:47 pm
Forum: File-AID and IBM File Manager.
Topic: How to change some text "text1" to "text2" in File-AID?
Replies: 3
Views: 2750

Re: How to change some text "text1" to "text2" in File-AID?

Hi, FILEAID option 3(Utilities) > option 6(search and update). Key-in the DSN and the text to be replaced. When prompted for confirmation about to perform update or not - select 'yes' and the new changes will be reflected in the code. You can (if I'm not mistaken) generate a batch Job also for this...
by BobP
Thu Nov 19, 2015 2:45 pm
Forum: TSO, ISPF & REXX (Do you still do CLIST?!).
Topic: Way to increase the default logoff time.
Replies: 5
Views: 1009

Re: Way to increase the default logoff time.

Thanks Pandora-Box. I usually keep my terminal busy but you never know when you are pulled in some call and that time it mkaes trouble. 30 minutes default is pretty good, as per the manual but it's 5 minutes at my terminal.
by BobP
Thu Nov 19, 2015 2:41 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: IBM's PDUU.
Replies: 3
Views: 983

Re: IBM's PDUU.

:). Hope it might help someone.
by BobP
Thu Nov 19, 2015 2:40 pm
Forum: Hercules, z390, zCOBOL, CBT Tape Files.
Topic: ACCEPT in OpenCOBOL.
Replies: 14
Views: 8430

Re: ACCEPT in OpenCOBOL.

That will read up to four lines of SYSIN data in one shot :-) That's a differnt behavior. I was thinking that to run the above program on maifnrames one would need a JCL. 5, 2 and 9 as inputs from SYSIN, which will be treated as FB/80 dataset so an input like 5 2 9 are three seperate inputs of type...
by BobP
Mon Nov 16, 2015 5:27 pm
Forum: Hercules, z390, zCOBOL, CBT Tape Files.
Topic: ACCEPT in OpenCOBOL.
Replies: 14
Views: 8430

ACCEPT in OpenCOBOL.

We have this program running for OpenCOBOL: IDENTIFICATION DIVISION. PROGRAM-ID. SOMEPGM. DATA DIVISION. WORKING-STORAGE SECTION. 01 WS-INPUT1 PIC Z(8). 01 WS-INPUT2 PIC 9(9). PROCEDURE DIVISION. PARA. ACCEPT WS-INPUT1. DISPLAY WS-INPUT1. ACCEPT WS-INPUT2. DISPLAY WS-INPUT2. INITIALIZE WS-INPUT1. IN...
by BobP
Fri Nov 13, 2015 1:57 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: IBM's PDUU.
Replies: 3
Views: 983

Re: IBM's PDUU.

Got this example from the internet which has been used successfully. Will start from this: //FTP EXEC PGM=AMAPDUPL //SYSUDUMP DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SYSUT1 DD DISP=SHR,DSN=dump input //SYSIN DD * USERID=anonymous PASSWORD=my email address TARGET_SYS=testcase.boulder.ibm.com TARGET_DSN=...
by BobP
Fri Nov 13, 2015 1:42 pm
Forum: TSO, ISPF & REXX (Do you still do CLIST?!).
Topic: Way to increase the default logoff time.
Replies: 5
Views: 1009

Way to increase the default logoff time.

Hi,

In my office, my TSO session gets logged out if it is not used for 5 minutes, can we extend the automatic logoff time by any chance? Or is it advisable?
by BobP
Wed Nov 11, 2015 8:32 am
Forum: Site Announcements and Rules.
Topic: Happy Diwali!
Replies: 27
Views: 2638

Re: Happy Diwali!

May the festival of lights brighten up you and your near and dear ones lives! happy Diwali! :)
by BobP
Thu Nov 05, 2015 2:18 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Read RDW Values of a VB file.
Replies: 8
Views: 1842

Re: Read RDW Values of a VB file.

William Collins wrote:Well, the suggestion by your someone was indeed nonsense :-)
My view on this is as yours, I agree! :D
by BobP
Thu Nov 05, 2015 1:52 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: IBM's PDUU.
Replies: 3
Views: 983

IBM's PDUU.

HI, Is anyone out there using IBM's PDUU utility to upload diagnostic data to IBM? This is a link to IBM's page on this: http://www-05.ibm.com/de/support/ecurep/send_zos-tool.html The z/OS Problem Documentation Upload Utility (IBM PDUU) uses an internal compression feature and offers (optional) file...
by BobP
Thu Oct 22, 2015 2:14 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Read RDW Values of a VB file.
Replies: 8
Views: 1842

Re: Read RDW Values of a VB file.

Thanks. SSRANGE can be used to chekc the array bounds, that's what I know but to use in this situation is a different matter and was surprised with this suggestion.
by BobP
Sun Oct 04, 2015 11:17 am
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Read RDW Values of a VB file.
Replies: 8
Views: 1842

Re: Read RDW Values of a VB file.

Thanks William. I have declared the FD section as, FD CUST-RECORD-IN DATA RECORD IS CUST-REC-IN RECORDING MODE IS V RECORD IS VARYING IN SIZE FROM 1 TO 2021 CHARACTERS DEPENDING ON CUST-RECORD-RDW. Each time I read the record, length of the record, is captured in CUST-RECORD-RDW. Someone suggested t...
by BobP
Tue Sep 22, 2015 3:08 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Read RDW Values of a VB file.
Replies: 8
Views: 1842

Read RDW Values of a VB file.

Hi, I have file which is varuiable-blocked (VB) file. It's LRECL is 3000. In this, first record is of length is 100 bytes, 2nd, 5th record length is 300 bytes etc. How to identify the length of the each Record in that VB file using COBOL? Is it possible to read the file using COBOL and get the recor...
by BobP
Tue Apr 08, 2014 12:25 pm
Forum: File-AID and IBM File Manager.
Topic: How to change some text "text1" to "text2" in File-AID?
Replies: 3
Views: 2750

How to change some text "text1" to "text2" in File-AID?

Hi,

How to change some text "text1" to "text2" in File-AID? Can we use File-Aid for this?

Thanks
by BobP
Tue Apr 08, 2014 12:14 pm
Forum: CICS, Middleware and MQ Series.
Topic: How many times CICS program was executed?
Replies: 2
Views: 2023

Re: How many times CICS program was executed?

Thanks, this helped.
by BobP
Sun Oct 13, 2013 7:17 pm
Forum: CICS, Middleware and MQ Series.
Topic: How many times CICS program was executed?
Replies: 2
Views: 2023

How many times CICS program was executed?

Hi,

Is there any way to how many times a CICS program was executed with a unit or in general?
by BobP
Sun Sep 08, 2013 6:11 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: STRING AND UNSTRING and use of it?
Replies: 2
Views: 2241

Re: STRING AND UNSTRING and use of it?

Thanks Robert - I'm working on it and will get back to you with updates. Thanks for explaining, manuals making better sense now.
by BobP
Wed Sep 04, 2013 6:32 pm
Forum: Thought of the Day, General Talk & Jokes.
Topic: Count to a Million!
Replies: 234
Views: 74841

Re: Count to a Million!

039.
by BobP
Wed Sep 04, 2013 5:03 pm
Forum: Site Announcements and Rules.
Topic: We made a Century!!
Replies: 22
Views: 18378

Re: We made a Century!!

Congratulations!

This board is doing great and deserves this. :)

Go to advanced search