Re: Exclusive ENQ on dataset owned (SHR) by Started Task?

2012-06-06 Thread Hansen, Dave L - Eagan, MN
Linda, My parmlibs have the printer members in them. I was just trying to get a REXX job to delete a printer member. Address ISPEXEC "LMINIT DATAID(INDD) DATASET('VPS.PARMLIB3') ENQ(SHRW)" "LMOPEN DATAID("INDD") OPTION(OUTPUT)" "LMMDEL DATAID("INDD") MEMBER(DAVE)" "LMCLOSE DATAID("INDD")" "LMFR

Exclusive ENQ on dataset owned (SHR) by Started Task?

2012-06-06 Thread Hansen, Dave L - Eagan, MN
Group, We are running z/OS V1R13 and a product called VPS. I wrote some code to ADD, UPDATE and DELETE members of a PDS. It worked fine until VPS came up. I see that the VPS started task "OWNS SHR" the dataset. I need to allocate a dataset exclusively (EXCL/DISP=MOD) to do a delete from

Re: Printing limits and userids

2012-03-30 Thread Hansen, Dave L - Eagan, MN
Group, We are running z/OS V1R12 and z/OS V1R13. Currently we print to IP printers using VPS. However JES2 also does 3270 print to high-speed laser printers. The request I was given is to limit print for both IP and 3270 printing. It was a small brain-storm but this is what we came up wit

Printing limits and userids

2012-03-29 Thread Hansen, Dave L - Eagan, MN
Group, We have a lot of large reports in our MVS spool. Any suggestions on limiting users from printing large reports by their userids, or a way to differentiate between valid print processing and potentially erroneous print processing by report name with JES2? A 50,000 page report may be v

PRINT (NOCC for z/OS?

2012-02-15 Thread Hansen, Dave L - Eagan, MN
Group, We found the issue with this. The MVS Spool can hold binary PDFs. The leading x'40' is NOT a problem. We added more of them to prove it. The problem is with the PDF viewer. Thank you for all your input on this matter, Dave Dave Hansen Eagan Software Systems Branch 651-406

Re: REXX IEBCOPY Continuation?

2012-02-15 Thread Hansen, Dave L - Eagan, MN
] Sent: Wednesday, February 15, 2012 3:00 PM To: IBM-MAIN@bama.ua.edu Subject: Re: REXX IEBCOPY Continuation? I don't think SELECT can start in column 1.. -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Hansen, Dave L - Eagan, MN

Re: REXX IEBCOPY Continuation?

2012-02-15 Thread Hansen, Dave L - Eagan, MN
t: Re: REXX IEBCOPY Continuation? On Wed, 15 Feb 2012 12:41:17 -0800, Scott Ford wrote:   Usually you need to queue a null line as the last line in the stack.. The count ("queued()") should make that unnecessary. ____ From: "Hansen, Dave L - Eaga

Re: REXX IEBCOPY Continuation?

2012-02-15 Thread Hansen, Dave L - Eagan, MN
Sent: Wednesday, February 15, 2012 2:41 PM To: IBM-MAIN@bama.ua.edu Subject: Re: REXX IEBCOPY Continuation? Dave,   Usually you need to queue a null line as the last line in the stack.. Scott J Ford Software Engineer http://www.identityforge.com   ________________ From: &q

Re: REXX IEBCOPY Continuation?

2012-02-15 Thread Hansen, Dave L - Eagan, MN
ot; V6 = "S M=TRAY2LN" Queue V1 Queue V2 Queue V3 Queue V4 Queue V5 Queue V6 "EXECIO" queued() "DISKW SYSIN (FINIS" "DELSTACK" "TSOEXEC IEBCOPY"   Regards, Thomas Berg _____ Thomas Berg   Specialist   A M   SW

REXX IEBCOPY Continuation?

2012-02-15 Thread Hansen, Dave L - Eagan, MN
Group, I have a REXX EXEC: "NEWSTACK" V1 = "COPY1 COPY INDD=INDD1,OUTDD=OUTDD1" V2 = "S M=(DBOK62,DP13,LAND1CPY,SSTDN,TRAY2LND)" queue V1 '+' V2 "EXECIO" queued() "DISKW SYSIN (FINIS" "DELSTACK" "TSOEXEC IEBCOPY" It gets an error: FCO105I COPY1 COPY INDD=INDD1,OUTDD=OUTDD1 + S M=(DBOK62,DP1

Re: PRINT (NOCC for z/OS?

2012-02-09 Thread Hansen, Dave L - Eagan, MN
ussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Paul Gilmartin Sent: Thursday, February 09, 2012 12:06 PM To: IBM-MAIN@bama.ua.edu Subject: Re: PRINT (NOCC for z/OS? On Thu, 9 Feb 2012 10:51:42 -0600, Bill Godfrey wrote: >On Thu, 9 Feb 2012 08:55:00 -0600, Hansen, Dave L - Eagan, MN wro

Re: PRINT (NOCC for z/OS?

2012-02-09 Thread Hansen, Dave L - Eagan, MN
Group, I think this is it: NOCC means to not interpret the first character of an input record as carriage control; it does not mean to write SPOOL records without carriage control. We are storing PDFs on the MVS spool. When being read through some software there is an extra space being pre

PRINT (NOCC for z/OS?

2012-02-08 Thread Hansen, Dave L - Eagan, MN
Bonjour, When I worked on z/VM I could print without carriage control using "PRINT member (NOCC". On JES2 when I put stuff out to the spool it's inserting a x'40' as the leading character. I tried XMIT and see the "\INMR01", but again there is now a leading x'40'. How can I put some

QUEUED() not working with ISPF (CROSS POSTED to ISPF-L)

2012-01-25 Thread Hansen, Dave L - Eagan, MN
Readers, IBM helped identify the issue. It is a TSO problem. TSO gets 'confused' between line-mode and full screen. Before: ADDRESS ISPEXEC 'VPUT ... ADDRESS ISPEXEC 'DISPLAY .. ADDRESS ISPEXEC 'VGET ... After:ADDRESS ISPEXEC 'VPUT ... AD

Re: QUEUED() not working with ISPF (CROSS POSTED to ISPF-L)

2011-12-08 Thread Hansen, Dave L - Eagan, MN
Anthony, Let me try this again. I did notice a problem with my cut and paste. This: If PRTRID = "QUIT" Then Exit Else Say "PRTRID =" PRTRID ADDRESS 'ISPEXEC' Should have been: If PRTRID = "QUIT" Then Exit Else Say "PRTRID =" PRTRID ADDRESS 'ISPEXEC' Tha

Re: QUEUED() not working with ISPF (CROSS POSTED to ISPF-L)

2011-12-07 Thread Hansen, Dave L - Eagan, MN
@bama.ua.edu Subject: Re: QUEUED() not working with ISPF (CROSS POSTED to ISPF-L) In <84ea18831601b6429e578236ae239b01a41d467...@eagnmnsxmb07.usa.dce.usps.gov>, on 12/07/2011 at 10:50 AM, "Hansen, Dave L - Eagan, MN" said: > 4). QUEUED() = 0 is shown >pull PRTRID===&

Re: QUEUED() not working with ISPF (CROSS POSTED to ISPF-L)

2011-12-07 Thread Hansen, Dave L - Eagan, MN
I - /* "ISPEXEC SELECT PGM(CLRSCRN)" */ D -"ISPEXEC SELECT PGM(CLRSCRN)" -Original Message- From: Hansen, Dave L - Eagan, MN [mailto:dave.l.han...@usps.gov] Sent: Wednesday,

QUEUED() not working with ISPF (CROSS POSTED to ISPF-L)

2011-12-07 Thread Hansen, Dave L - Eagan, MN
ISPF Masters; I have been struggling with IBM since July on this one. IBM says they can NOT duplicate this. I am not using PCOMM and this borders on an application issue. We are running z/OS V1R12. QUEUED() is not showing anything, but the pull on line 14 is being satistifed by somethin

AFT (Assured File Transfer) Technology (UNCLASSIFIED)

2011-12-06 Thread Hansen, Dave L - Eagan, MN
Group, Are there differences in AFT technology by provider? FTP solutions tend to be different by platform. There appears to be a few different Assured File Transfer (AFT) providers. On the ucdmo.gov site (Nov 2011) - The UCDMO Cross-Domain base line lists AFT. On some internet

IPRESOLV on XCA Majnode

2011-10-13 Thread Hansen, Dave L - Eagan, MN
MainFrame Friends, I have been reviewing the Enterprise Extender Implementation Guide (SG24-7359) in Chapter 4 it talks about IPRESOLV. It says "We recommend coding a reasonable non-zero value to avoid hanging sessions across connection networks". The default for IPRESOLV is 0 (indefinitel

Using unique HOSTSA (running VTAM as pure EN/NN) = 'Better Manageability'?

2011-10-07 Thread Hansen, Dave L - Eagan, MN
Group, I have been reviewing the Enterprise Extender Implementation guide (SG24-7359) in Chapter 3 it talks about HOSTSA and SACONNS. It says "For better manageability we recommend defining or keeping a unique subarea number using HOSTSA, and running VTAM as a pure EN/NN by coding SACONNS=N

VTAM BASE MSGLEVEL?

2011-09-20 Thread Hansen, Dave L - Eagan, MN
Group, I was looking at the VTAM start option HPRITMSG to specify which HPR messages VTAM should use. This ties back to your VTAM MSGLEVEL start option. The default for MSGLEVEL is BASE. It says VTAM issues the pre-V4R1 message that this message number replaces. There is also a note that

TSO NETSTAT INTERVAL?

2011-09-16 Thread Hansen, Dave L - Eagan, MN
Group, I was reading in the UNIX System Services Planning (ga22-7800-19 for V1R13 & ga22-7800-18 for V1R12) about inetd. In the -18 on page 351 it says "To verify that inetd is listening on port 513, issue the TSO NETSTAT INTERVAL command and check the output". Unfortunately after looking

CoS and QoS

2011-08-31 Thread Hansen, Dave L - Eagan, MN
Dedicated readers, We use Enterprise Extender and I am looking at IPTOS. Traffic prioritization using ToS byte management is generally preferrable to port-based prioritization (V1R12 SNA Net Imp Gde pg. 144). IPTOS (Differentiated services) is a little different between IPv4 and IPv6. W

TSO/E NSLOOKUP and DIG deprecation

2011-08-12 Thread Hansen, Dave L - Eagan, MN
Group, Has anyone had an issue with managing DNS entries and finding a DNS name that should not have the name it does? I keep looking for a wildcard query that can report on more than one DNS record at a time so I can find DNS names that don't conform to our standards. I looked in the V1R1

z/VM RACF installation planning

2011-06-06 Thread Hansen, Dave L - Eagan, MN
Group, We are looking at using RACF for z/VM 6.1. We have RACF for z/OS V1R12 and are looking at sharing the RACF database between z/OS and z/VM. The RACF System's Programmer Guide has reasons why we should run the RACF utilities from the z/OS side. Our z/VM mainly has just z/LINUX guests

ISPF Help panel help

2011-05-16 Thread Hansen, Dave L - Eagan, MN
Group, We are running z/OS V1R10 (&z/OS V1R12). I have been looking through the ISPF Dialog Developer's Guide and Reference and I am having a problem with my help panel. My Primary panel has &ZPRIM=YES and .HELP=SSBVPSH. From my primary panel I enter PF1 and I get my help panel. My panel

Re: CMS Sort Descending?

2011-01-07 Thread Hansen, Dave L - Eagan, MN
here should know the answer. Charles -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Hansen, Dave L - Eagan, MN Sent: Friday, January 07, 2011 7:08 AM To: IBM-MAIN@bama.ua.edu Subject: CMS Sort Descending? Group, We maintain the SYSTEM

CMS Sort Descending?

2011-01-07 Thread Hansen, Dave L - Eagan, MN
Group, We maintain the SYSTEM CONFIG on z/VM using an exec that renames the members. I need to run this exec on the oldest file first. If I could sort FLIST/LISTF in descending date order I would be able to process the files in order from top to bottom. I looked at FLIST and found:" If th

TCP/IP network management interfaces (NMI)

2010-12-13 Thread Hansen, Dave L - Eagan, MN
Hi, We are running z/OS V1R10. Our network management vendor is BMC and we are running MainView for IP. NETMONitor is in the PROFILE.TCPIP and if turned on it will start all supported network monitoring services. Basically I am looking at starting PKTTRCSERVICE, TCPCONNSERVICE and SMFSERV

TCP/IP network management interfaces (NMI)

2010-12-09 Thread Hansen, Dave L - Eagan, MN
From: Hansen, Dave L - Eagan, MN Sent: Thursday, December 09, 2010 2:51 PM To: 'IBM Mainframe Discussion List' Subject: TCP/IP network management interfaces (NMI) Hi, We are running z/OS V1R10. Our network management vendor is BMC and we are running MainView for IP. NETMONitor