Re: [CMS-PIPELINES] stack + stem append

2020-05-20 Thread Donald Russell
The reason you only see “B” is because that’s all that’s appended to the stem and then passed to your console stage. After that pipe, look at table .0. It will have a value of 2. Pipe stem table. | cons will show A B On Wed, May 20, 2020 at 04:56 Alain Benveniste wrote: > Hi, > /**/ > "PIPE

Re: [CMS-PIPELINES] stack + stem append

2020-05-20 Thread Rob van der Heij
On Wed, 20 May 2020 at 14:38, Alan Altmark wrote: > Stated more clearly, when APPEND is specified, only the appended elements > of the array are written to the output stream. > A lot of the device drivers copy the input records to the output as a courtesy when the function performed isn't

Re: [CMS-PIPELINES] stack + stem append

2020-05-20 Thread Alan Altmark
On Wednesday, 05/20/2020 at 12:24 GMT, "van Sleeuwen, Berry" wrote: > As Kris already mentioned, swap stem and append. In your example you write B > into the stem. > > Secondly, swap the stages, in your request you would append the stem (A) to the > stack (B) so the output is > B > A > > "PIPE

Re: [CMS-PIPELINES] stack + stem append

2020-05-20 Thread Rob van der Heij
On Wed, 20 May 2020 at 13:55, Alain Benveniste wrote: > "PIPE STACK", > "! STEM TABLE1. APPEND", > "! CONSole" > I think Kris and Berry are taking a detour. What the CONS shows here is the stuff that this pipeline is *appending* to the stack, and that's indeed just the B. And a simple

Re: [CMS-PIPELINES] stack + stem append

2020-05-20 Thread van Sleeuwen, Berry
As Kris already mentioned, swap stem and append. In your example you write B into the stem. Secondly, swap the stages, in your request you would append the stem (A) to the stack (B) so the output is B A "PIPE stem table1. ! append stack ! cons" will append the stack to the stem. A B Met

Re: [CMS-PIPELINES] stack + stem append

2020-05-20 Thread Kris Buelens
You request that the STACK be appended to stem Table1 I guess you want "PIPE STACK", "! APPEND STEM TABLE1.", "! CONSole" Kris Buelens, --- VM/VSE consultant, Belgium --- --- Op wo 20 mei 2020 om 13:56 schreef

[CMS-PIPELINES] stack + stem append

2020-05-20 Thread Alain Benveniste
Hi, /**/ "PIPE STRLITeral /A/", "! STEM TABLE1." QUEUE "B" "PIPE STACK", "! STEM TABLE1. APPEND", "! CONSole" I would expect A B as the result but I only get B APPEND seems to not have effect here. Regards Alain