Re: BPXBATCH utility, how to access to PDS member ?

2007-09-03 Thread IBM-MAIN Anonymous
The resul of the command

for the ls -al commmand

-rwxrwxrwx   1 OMVSKERN SYS1   73728 Sep  3 09:36 /u/myprog

for echo $PATH
/usr/lpp/Printsrv/bin:/bin:.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: BPXBATCH utility, how to access to PDS member ?

2007-09-03 Thread IBM-MAIN Anonymous
I have try with POSIX(ON)

/RUNSHELL EXEC PGM=BPXBATCH,   
/  PARM='PGM /u/openf POSIX(ON)'   
/STDOUT DD PATH='/u/resul',
/ PATHOPTS=(OCREAT,OTRUNC,OWRONLY) 
/SYSRPM DD DSN=ADCDB.PDS.PARMLIB(CMDPRM00),DISP=SHR
/* 
/SYSOUT DD SYSOUT=*
/SYSPRINT DD SYSOUT=*  

But the result is the same, is it correctly coded ?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: BPXBATCH utility, how to access to PDS member ?

2007-09-03 Thread IBM-MAIN Anonymous
Thank's for reply
I have try this utiliy and I have a return code 0 but the PGM do nothing...
(no display message like no execution)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: BPXBATCH utility, how to access to PDS member ?

2007-09-04 Thread IBM-MAIN Anonymous
Thank's a lot to all of you, it's running now, my member is read

THANK'S

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


REQUESTED MODULE HWMCAAPI IS NOT EXECUTABLE

2007-08-06 Thread IBM-MAIN Anonymous
Hello,

In first, I'm sorry if my English is not very good but i try to do my
 best.
Second, I am a beginner in C++ under z/OS

I try to use a sample ( C++ language) provide on ibm ressource link web
 site.
This sample is use to manage HMC console with snmp by batch on z/OS
4 files are provides
- sample C++ (source code)
- API for HMC commande (header file)
- Import files (sidedeck) who contains external definition fonctions
- DLL file (I suppose) for this files there are no source code provide

In first step I a compiled the sample C and the include with the CBCC
 utily
This step is worked well (return code 0)
//COMPIL  EXEC   PROC=CBCC, 
//INFILE='USER1.PDS.SRC(SAMPLEC)',  
//OUTFILE='USER1.PDS.OBJETS(ZSAMPLE),DISP=SHR', 
//CPARM='LSEARCH(USER1.PDS.INCLUDE),DEFINE(MVS),
//   LONG,DLL,LIST' 
//SYSOUT DD SYSOUT=*
//SYSPRINT   DD SYSOUT=*


In second step I have Pre-link and Link my objet (issue from first
 step)
with the import file in SYSIN and the DLL file in SYSLIN and SYSLIB.
This step is work well too, I have a return code 0 and no warning.

//LINKEXEC   PROC=CBCL,  
//OUTFILE='USER1.PDS.LOADC(ZSAMP),DISP=SHR', 
//LPARM='COMPAT(PM3)'
//PLKED.SYSIN DD DSN=USER1.PDS.OBJETS(ZSAMPLE),DISP=SHR  
//DD DSN=USER1.PDS.IMPORT(HWMCAAPI),DISP=SHR 
//SYSLIN  DD DSN=USER1.PDS.DLL(HWMCAAPI),DISP=SHR
//SYSLIB  DD 
//DD DSN=CEE.SCEELKEX,DISP=SHR   
//DD DSN=CEE.SCEECPP,DISP=SHR
//DD DSN=CEE.SCEEOBJ,DISP=SHR
//DD DSN=USER1.PDS.DLL(HWMCAAPI),DISP=SHR
//SYSOUT   DD SYSOUT=*   
//SYSPRINT DD SYSOUT=*   
//*  


When I try to use my PGM ZSAMP, I have this message when it call the
 DLL 

HCSV016I REQUESTED MODULE HWMCAAPI IS NOT EXECUTABLE
IEF450I ADCBRUN PRUN - ABEND=S706 U REASON=0004WMCAAPI)

I have the good STEPLIB in my JCL
Does anyone can explain to my what I have to do ? How to process to
 resolve
this type of trouble. 

I have attach a file report.txt that contains the execution of eatch
 job
That I have used. There is three part CBCC, CBCL and RUN

Thank's for your help

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: REQUESTED MODULE HWMCAAPI IS NOT EXECUTABLE

2007-08-07 Thread IBM-MAIN Anonymous
Thank's for your reply,
I do these tests under z/OS 1.8
The report attachement are too big to be joint to the message

Yes, I have include the header file in my JCL on the LSEARCH sub-parameter

My compilation (CBCC standard procedure)
//COMPIL  EXEC   PROC=CBCC, 
//INFILE='USER1.PDS.SRC(SAMPLEC)',  
//OUTFILE='USER1.PDS.OBJETS(ZSAMPLE),DISP=SHR', 
//CPARM='LSEARCH(USER1.PDS.INCLUDE),DEFINE(MVS),
//   LONG,DLL,LIST' 
//SYSOUT DD SYSOUT=*
//SYSPRINT   DD SYSOUT=*

My link (CBCL standard procedure)
//LINKEXEC   PROC=CBCL, 
//OUTFILE='USER1.PDS.LOADC(ZSAMP),DISP=SHR' 
//PLKED.SYSIN DD DSN=USER1.PDS.OBJETS(ZSAMPLE),DISP=SHR 
//DD DSN=USER1.PDS.IMPORT(HWMCAAPI),DISP=SHR
//SYSLIN  DD DSN=USER1.PDS.DLL(HWMCAAPI),DISP=SHR   
//SYSLIB  DD
//DD DSN=CEE.SCEELKEX,DISP=SHR  
//DD DSN=CEE.SCEECPP,DISP=SHR   
//DD DSN=CEE.SCEEOBJ,DISP=SHR   
//DD DSN=USER1.PDS.DLL(HWMCAAPI),DISP=SHR   
//SYSOUT   DD SYSOUT=*  
//SYSPRINT DD SYSOUT=*  
//* 

All step have a return code 0

SEVERE MESSAGES(SEVERITY = 12) 
NONE 
ERROR MESSAGES (SEVERITY = 08) 
NONE 
WARNING MESSAGES   (SEVERITY = 04) 
NONE 
INFORMATIONAL MESSAGES (SEVERITY = 00) 
2008  2278 

 END OF MESSAGE SUMMARY REPORT 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Help on IEBEDIT Utility

2009-06-08 Thread Subcribe Ibm-Main Anonymous
Here's a link to the manual:

http://publibfp.boulder.ibm.com/cgi-bin/bookmgr/BOOKS/dgt1u104/5.0?
SHELF=&DT=19990113105507

If your INCLUDE statement is the first statement before any steps of the job 
it won't pick it up.  In that case, I added the following before the INCLUDE, 
and it picked up the statement:

//STEP01  EXEC PGM=IEFBR14
//   INCLUDE MEMBER=A1ATTACH 

Kind of klunky, but it works.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Move files between remote hosts via FTP

2009-10-06 Thread Subcribe Ibm-Main Anonymous
Lionel Dyck has written an REXX-based FTP transfer system that can be used 
for transfers between LPAR's named FTPBATCH.  You can get it at:
http://www.lbdsoftware.com/ftpb223.zip

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: REXX & JES2

2009-10-06 Thread Subcribe Ibm-Main Anonymous
Lionel Dyck has two free tools for manipulating SDSF spool data.  You may 
retrieve them from his website where he also has documentaiton: 
http://www.lbdsoftware.com

Downloads: 
http://www.lbdsoftware.com/sdsfext110.zip

http://www.lbdsoftware.com/sdsfpagev128.zip



>-Original Message-
>From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
>Behalf Of Mark Pace
>Sent: Wednesday, September 30, 2009 11:34 PM
>To: IBM-MAIN@bama.ua.edu
>Subject: REXX & JES2
>
>Is there a way to access the JES2 system with REXX?  I've been through
>the
>REXX User's Guide and the Reference, but other than seeing how to find
>the
>JES level I don't see the ability.
>
>I'd like to write some sort of automation against the JES Held, and
>Output
>spools.
>
>--
>Mark Pace
>Mainline Information Systems
>1700 Summit Lake Drive
>Tallahassee, FL. 32317
>
>--
>For IBM-MAIN subscribe / signoff / archive access instructions,
>send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
>Search the archives at http://bama.ua.edu/archives/ibm-main.html
>
> 
==
==
===
>
>
>Disclaimer:
>
>This message and the information contained herein is proprietary and 
confidential and subject to the Tech Mahindra policy statement, you may 
review the policy at http://www.techmahindra.com/Disclaimer.html";>http://www.techmahindr
a.com/Disclaimer.html externally and http://tim.techmahindra.com/Disclaimer.html";>http://tim.techmahindra.c
om/Disclaimer.html internally within Tech Mahindra.
>
> 
==
==
===
>
>--
>For IBM-MAIN subscribe / signoff / archive access instructions,
>send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
>Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: B18 VTS replication question

2009-02-05 Thread SUBSCRIBE IBM-MAIN Anonymous
Hi all,
You will probably need channel extenders like the usd-x from brocade.
we are using them with escon now, but soon we will be using them with ficon.
bert

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Z/Vm for Z/Linux clients on IFL.

2008-08-28 Thread SUBSCRIBE IBM-MAIN Anonymous
Hello all,

When I want to run serveral Z/Linux client by using Z/Vm, does Z/Vm also runs 
on a IFL processor ??

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html



Re: z10 BC announcement

2008-08-28 Thread SUBSCRIBE IBM-MAIN Anonymous
Barry,

Perhaps anyone has visited Poughkeepsie lately.
They should know.

Bert

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html



ChangeMan ZMF

2007-09-18 Thread SUBSCRIBE IBM-MAIN Anonymous
Hi,

I would like to know if there is an API with a command language which can be
used in batch (via a JCL) in order to extract the source files for an
application or a part of an application (with different criteria) in order
to dowload them onto a Windows server.

The Changemen ZMF version is the 5.3.5.

Thanks in advance.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


CA SMF Director

2007-12-13 Thread SUBSCRIBE IBM-MAIN Anonymous
Looking for information on running this product on multiple LPARS.

Thanks

Bill

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


System down after actvating Lpar.

2006-10-25 Thread \"SUBSCRIBE IBM-MAIN Anonymous\"
L.,s.,
We recently had an outage of an lpar in a sysplex.
IBM told us our number of ICP and IQD channels was to high, they use the 
formula: number of physical CP+ICF+ZIIP+ZAAP-1= maximum numer of virtual 
internal channels.
The redbooks do not write about including IQD channels in this formula.
system Z990/b16, 8 CP's, 1 ICF.

Thanks in advance.
Bert.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html