Re: mixed text in CP SMSG

2010-02-05 Thread Aisik Chang
Yes, this case ESACTP's console has all uppercase text displayed.

Thanks,

Ann

On Wed, Feb 3, 2010 at 12:59 PM, Schuh, Richard  wrote:

>  It the receiver of the SMSG folding it to upper case?
>
>
> Regards,
> Richard Schuh
>
>
>
>
>  --
> *From:* The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] *On
> Behalf Of *Aisik Chang
> *Sent:* Wednesday, February 03, 2010 7:14 AM
>
> *To:* IBMVM@LISTSERV.UARK.EDU
> *Subject:* Re: mixed text in CP SMSG
>
>   It still does not come out with the mixed case:
>
> -
> 10:11:42
>
>  8 *-* address command 'CP SMSG ESATCP ALERT zVM-SEV3:'
> cpline
>>>>   "CP SMSG ESATCP ALERT zVM-SEV3:
> Testing"
> 10 *-*
> exit
> Ready; T=0.01/0.01
> 10:11:42
> ESATCP  : 10:11:42 MAINT   (3779) has issued command: ALERT ZVM-SEV3:
> TESTING
>
> -
>
> I used disg 8, but the same result.  What's missing here  ?
>
> Thanks,
>
> Ann
>
>
>
>
> On Tue, Feb 2, 2010 at 3:18 PM, Bruce Hayden  wrote:
>
>> Put it in your exec as:
>> Address Command  'CP SMSG'  VMUSER  tline
>> And if 'VMUSER' is the userid and not a variable, put it in the quotes
>> too:
>> Address Command  'CP SMSG  VMUSER'  tline
>>
>> On Tue, Feb 2, 2010 at 11:02 AM, Aisik Chang  wrote:
>> > I have an exec:
>> >
>> > /*  */
>> > tline = 'This is a testing'
>> > 'CP SMSG'  VMUSER  tline
>> > exit
>> > 
>> > VMUSER received all uppercase text.
>> >  Is there was to send mixed case  with the command  CP SMSG ?
>> >
>> > Thanks,
>> >
>> > Ann
>>
>>
>>
>> --
>> Bruce Hayden
>> z/VM and Linux on System z ATS
>> IBM, Endicott, NY
>>
>
>


Re: mixed text in CP SMSG

2010-02-03 Thread Schuh, Richard
It the receiver of the SMSG folding it to upper case?


Regards,
Richard Schuh






From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf 
Of Aisik Chang
Sent: Wednesday, February 03, 2010 7:14 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: mixed text in CP SMSG

It still does not come out with the mixed case:
-
10:11:42
 8 *-* address command 'CP SMSG ESATCP ALERT zVM-SEV3:'  cpline
   >>>   "CP SMSG ESATCP ALERT zVM-SEV3: Testing"
10 *-* exit
Ready; T=0.01/0.01 10:11:42
ESATCP  : 10:11:42 MAINT   (3779) has issued command: ALERT ZVM-SEV3: TESTING
-

I used disg 8, but the same result.  What's missing here  ?

Thanks,

Ann




On Tue, Feb 2, 2010 at 3:18 PM, Bruce Hayden 
mailto:bjhay...@gmail.com>> wrote:
Put it in your exec as:
Address Command  'CP SMSG'  VMUSER  tline
And if 'VMUSER' is the userid and not a variable, put it in the quotes too:
Address Command  'CP SMSG  VMUSER'  tline

On Tue, Feb 2, 2010 at 11:02 AM, Aisik Chang 
mailto:a829...@gmail.com>> wrote:
> I have an exec:
>
> /*  */
> tline = 'This is a testing'
> 'CP SMSG'  VMUSER  tline
> exit
> 
> VMUSER received all uppercase text.
>  Is there was to send mixed case  with the command  CP SMSG ?
>
> Thanks,
>
> Ann



--
Bruce Hayden
z/VM and Linux on System z ATS
IBM, Endicott, NY



Re: mixed text in CP SMSG

2010-02-03 Thread Mike Walter
Ahhh... it all becomes a little bit clearer now.

Issued from a REXX-language exec:
address command 'CP SMSG OPERATOR Please ignore this mixed case 
message.' 
Note that we are running CA's VM:Operator on the userid OPERATOR. 
VM:Operator is set here to accept the CP SMSG data.

VM:Operator displays that message as:
Please ignore this mixed case message. 

So, we have proof that CP is not uppercasing all SMSG command text issued 
within quotes.  (Different results will be observed when entering the 
command outside of quotes in rexx, and without the 'address command' 
environment, and from the CMS command line.)

But you are sending the CP SMSG data to ESATCP, a different application 
program.  Apparently, ESATCP is upper-casing the message text.

Look in ESATCP for additional clues.  FWIW, the good folks at Velocity 
Software monitor the list pretty closely, but you probably should contact 
them directly for product assistance.

Mike Walter
Hewitt Associates
The opinions expressed herein are mine alone, not my employer's.



"Aisik Chang"  

Sent by: "The IBM z/VM Operating System" 
02/03/2010 09:14 AM
Please respond to
"The IBM z/VM Operating System" 



To
IBMVM@LISTSERV.UARK.EDU
cc

Subject
Re: mixed text in CP SMSG






It still does not come out with the mixed case:
-
10:11:42   

 8 *-* address command 'CP SMSG ESATCP ALERT zVM-SEV3:'  
cpline
   >>>   "CP SMSG ESATCP ALERT zVM-SEV3: 
Testing"  
10 *-* 
exit
Ready; T=0.01/0.01 
10:11:42
ESATCP  : 10:11:42 MAINT   (3779) has issued command: ALERT ZVM-SEV3: 
TESTING  
-
 
I used disg 8, but the same result.  What's missing here  ?
 
Thanks,
 
Ann
 


 
On Tue, Feb 2, 2010 at 3:18 PM, Bruce Hayden  wrote:
Put it in your exec as:
Address Command  'CP SMSG'  VMUSER  tline
And if 'VMUSER' is the userid and not a variable, put it in the quotes 
too:
Address Command  'CP SMSG  VMUSER'  tline

On Tue, Feb 2, 2010 at 11:02 AM, Aisik Chang  wrote:
> I have an exec:
>
> /*  */
> tline = 'This is a testing'
> 'CP SMSG'  VMUSER  tline
> exit
> 
> VMUSER received all uppercase text.
>  Is there was to send mixed case  with the command  CP SMSG ?
>
> Thanks,
>
> Ann



--
Bruce Hayden
z/VM and Linux on System z ATS
IBM, Endicott, NY





The information contained in this e-mail and any accompanying documents may 
contain information that is confidential or otherwise protected from 
disclosure. If you are not the intended recipient of this message, or if this 
message has been addressed to you in error, please immediately alert the sender 
by reply e-mail and then delete this message, including any attachments. Any 
dissemination, distribution or other use of the contents of this message by 
anyone other than the intended recipient is strictly prohibited. All messages 
sent to and from this e-mail address may be monitored as permitted by 
applicable law and regulations to ensure compliance with our internal policies 
and to protect our business. E-mails are not secure and cannot be guaranteed to 
be error free as they can be intercepted, amended, lost or destroyed, or 
contain viruses. You are deemed to have accepted these risks if you communicate 
with us by e-mail. 


Re: mixed text in CP SMSG

2010-02-03 Thread zMan
On Wed, Feb 3, 2010 at 10:14 AM, Aisik Chang  wrote:

It still does not come out with the mixed case:

-
10:11:42
 8 *-* address command 'CP SMSG ESATCP ALERT zVM-SEV3:'  cpline
   >>>   "CP SMSG ESATCP ALERT zVM-SEV3: Testing"
10 *-* exit
Ready; T=0.01/0.01 10:11:42
ESATCP  : 10:11:42 MAINT   (3779) has issued command: ALERT ZVM-SEV3:
TESTING

-

I used disg 8, but the same result.  What's missing here  ?


I forget whether ESATCP uppercases input -- I suspect it does. This works
for me:

'CP SM RSCS Q SYS'
 Link Line
 Name Status Type Addr LU Name  Logmode  Queueing
 

call diag 8, 'SM RSCS Q sys'
 Location sys is not defined

Same for ADDRESS COMMAND.


Re: mixed text in CP SMSG

2010-02-03 Thread Aisik Chang
It still does not come out with the mixed case:
-
10:11:42

 8 *-* address command 'CP SMSG ESATCP ALERT zVM-SEV3:'
cpline
   >>>   "CP SMSG ESATCP ALERT zVM-SEV3:
Testing"
10 *-*
exit
Ready; T=0.01/0.01
10:11:42
ESATCP  : 10:11:42 MAINT   (3779) has issued command: ALERT ZVM-SEV3:
TESTING
-

I used disg 8, but the same result.  What's missing here  ?

Thanks,

Ann




On Tue, Feb 2, 2010 at 3:18 PM, Bruce Hayden  wrote:

> Put it in your exec as:
> Address Command  'CP SMSG'  VMUSER  tline
> And if 'VMUSER' is the userid and not a variable, put it in the quotes too:
> Address Command  'CP SMSG  VMUSER'  tline
>
> On Tue, Feb 2, 2010 at 11:02 AM, Aisik Chang  wrote:
> > I have an exec:
> >
> > /*  */
> > tline = 'This is a testing'
> > 'CP SMSG'  VMUSER  tline
> > exit
> > 
> > VMUSER received all uppercase text.
> >  Is there was to send mixed case  with the command  CP SMSG ?
> >
> > Thanks,
> >
> > Ann
>
>
>
> --
> Bruce Hayden
> z/VM and Linux on System z ATS
> IBM, Endicott, NY
>


Re: mixed text in CP SMSG

2010-02-03 Thread Aisik Chang
Thank you all ! !

Ann

On Tue, Feb 2, 2010 at 3:18 PM, Bruce Hayden  wrote:

> Put it in your exec as:
> Address Command  'CP SMSG'  VMUSER  tline
> And if 'VMUSER' is the userid and not a variable, put it in the quotes too:
> Address Command  'CP SMSG  VMUSER'  tline
>
> On Tue, Feb 2, 2010 at 11:02 AM, Aisik Chang  wrote:
> > I have an exec:
> >
> > /*  */
> > tline = 'This is a testing'
> > 'CP SMSG'  VMUSER  tline
> > exit
> > 
> > VMUSER received all uppercase text.
> >  Is there was to send mixed case  with the command  CP SMSG ?
> >
> > Thanks,
> >
> > Ann
>
>
>
> --
> Bruce Hayden
> z/VM and Linux on System z ATS
> IBM, Endicott, NY
>


Re: mixed text in CP SMSG

2010-02-02 Thread Kris Buelens
One can have a look at our "Rexx Telecourse" TCVM1, were we explain the
benefits and side effects of using ADDRESS COMMAND.
Find it here
  http://www.vm.ibm.com/download/packages/descript.cgi?TCVM1
P.S. using call diag 8 to issue the SMSG will fix this particular problem,
but coding an ADDRESS COMMAND in front of the exec will avoid many possible
problems.

2010/2/2 Bruce Hayden 

> Put it in your exec as:
> Address Command  'CP SMSG'  VMUSER  tline
> And if 'VMUSER' is the userid and not a variable, put it in the quotes too:
> Address Command  'CP SMSG  VMUSER'  tline
>
> On Tue, Feb 2, 2010 at 11:02 AM, Aisik Chang  wrote:
> > I have an exec:
> >
> > /*  */
> > tline = 'This is a testing'
> > 'CP SMSG'  VMUSER  tline
> > exit
> > 
> > VMUSER received all uppercase text.
> >  Is there was to send mixed case  with the command  CP SMSG ?
> >
> > Thanks,
> >
> > Ann
>
>
>
> --
> Bruce Hayden
> z/VM and Linux on System z ATS
> IBM, Endicott, NY
>



-- 
Kris Buelens,
IBM Belgium, VM customer support


Re: mixed text in CP SMSG

2010-02-02 Thread Schuh, Richard
Or you can use 
   tline = 'This is a test'
   userid = 'JOEUSER' 

   call diag 8, 'SMSG' userid tline 
Or call diag 8, 'SMSG JOEUSER' tline

There are other variations on the theme, as well. (However, none so good as 
Rachmaninov's "Rhapsody on a Theme by Paganini".)

Regards, 
Richard Schuh 

 

> -Original Message-
> From: The IBM z/VM Operating System 
> [mailto:ib...@listserv.uark.edu] On Behalf Of Bruce Hayden
> Sent: Tuesday, February 02, 2010 12:18 PM
> To: IBMVM@LISTSERV.UARK.EDU
> Subject: Re: mixed text in CP SMSG
> 
> Put it in your exec as:
> Address Command  'CP SMSG'  VMUSER  tline And if 'VMUSER' is 
> the userid and not a variable, put it in the quotes too:
> Address Command  'CP SMSG  VMUSER'  tline
> 
> On Tue, Feb 2, 2010 at 11:02 AM, Aisik Chang 
>  wrote:
> > I have an exec:
> >
> > /*  */
> > tline = 'This is a testing'
> > 'CP SMSG'  VMUSER  tline
> > exit
> > 
> > VMUSER received all uppercase text.
> >  Is there was to send mixed case  with the command  CP SMSG ?
> >
> > Thanks,
> >
> > Ann
> 
> 
> 
> --
> Bruce Hayden
> z/VM and Linux on System z ATS
> IBM, Endicott, NY
> 

Re: mixed text in CP SMSG

2010-02-02 Thread Bruce Hayden
Put it in your exec as:
Address Command  'CP SMSG'  VMUSER  tline
And if 'VMUSER' is the userid and not a variable, put it in the quotes too:
Address Command  'CP SMSG  VMUSER'  tline

On Tue, Feb 2, 2010 at 11:02 AM, Aisik Chang  wrote:
> I have an exec:
>
> /*  */
> tline = 'This is a testing'
> 'CP SMSG'  VMUSER  tline
> exit
> 
> VMUSER received all uppercase text.
>  Is there was to send mixed case  with the command  CP SMSG ?
>
> Thanks,
>
> Ann



-- 
Bruce Hayden
z/VM and Linux on System z ATS
IBM, Endicott, NY