[CMS-PIPELINES] GLOBALV

2017-12-21 Thread Gentry, Steve
Hi. Is it possible to issue the GLOBALV command from pipes? Or is there a STAGE to retrieve the info? I've tried a number of combination of commands with no luck. Those include "| CMS GLOBALV . . . ." , "| CP GLOBALV . . . ." , "| COMMAND GLOBALV . . . . " and a couple of things with S

Re: [CMS-PIPELINES] GLOBALV

2017-12-21 Thread Rob van der Heij
Steve, Not really. CMS does not provide a native interface for CMS Pipelines to exploit. You can do things with "command" like this: 'PIPE command GLOBALV SELECT $$RDRLIS STACK RDATETYP | append stack | ...' If you write a REXX filter, the value() function may be useful to do what you need. R

Re: [CMS-PIPELINES] GLOBALV

2017-12-21 Thread Michael Harding
Or... 'PIPE command GLOBALV SELECT $$RDRLIS LIST | ... ' and locate or pick the item(s) of interest. -- Mike Harding /sp CMSTSO Pipelines Discussion List wrote on 12/21/2017 07:31:37 AM: > From: Rob van der Heij > To: CMS-PIPELINES@VM.MARIST.EDU > Date: 12/21/2017 07:31 AM > Subject: Re: GLO

Re: [CMS-PIPELINES] GLOBALV

2017-12-21 Thread Gentry, Steve
I'm not understanding something. Why does this work: GLOBALV SELECT SQL/DS LIST And this doesn't: GLOBALV SELECT SQL/DS GET DBNAME (DBNAME IS valid.) -Original Message- From: CMSTSO Pipelines Discussion List [mailto:CMS-PIPELINES@VM.MARIST.EDU] On Behalf Of Michael Harding Sent: T

Re: [CMS-PIPELINES] GLOBALV

2017-12-21 Thread Rob van der Heij
The GET stores the value in a REXX variable, but there is nothing to pick it up and put it into the pipe. On Thu, 21 Dec 2017 at 18:00, Gentry, Steve < steve.gen...@westernsouthernlife.com> wrote: > I'm not understanding something. > Why does this work: GLOBALV SELECT SQL/DS LIST > > And this doe

Re: [CMS-PIPELINES] GLOBALV

2017-12-21 Thread John P. Hartmann
GET set a variable; it does not write to the console. This gripe is so obvious, but in future, could you please specify what you expect and what you achieved. Thank you. On 12/21/2017 06:00 PM, Gentry, Steve wrote: I'm not understanding something. Why does this work: GLOBALV SELECT SQL/DS LIST

Re: [CMS-PIPELINES] GLOBALV

2017-12-21 Thread Hobart Spitz
How about something like: "pipe command GLOBALV SELECT SQL/DS GET DBNAME var1 var2 | hole | append literal dbname var1 vart2 ... | split | varfetch | " ? OREXXMan JCL is the buggy whip of 21st century computing. We want TSO Pipes NOW! On Thu, Dec 21, 2017 at 12:03 PM, Rob van der Heij wrote

Re: [CMS-PIPELINES] GLOBALV

2017-12-21 Thread Gentry, Steve
Oh, geez, of course. Sorry. -Original Message- From: CMSTSO Pipelines Discussion List [mailto:CMS-PIPELINES@VM.MARIST.EDU] On Behalf Of Rob van der Heij Sent: Thursday, December 21, 2017 12:03 PM To: CMS-PIPELINES@VM.MARIST.EDU Subject: Re: GLOBALV The GET stores the value in a REXX va