RE: [U2] Question about execute and stacked data.

2006-02-14 Thread u2
m cannot? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Dave Taylor > Sent: Tuesday, February 14, 2006 1:02 AM > To: u2-users@listserver.u2ug.org > Subject: Re: [U2] Question about execute and stacked data. > > > Ed, > &

Re: [U2] Question about execute and stacked data.

2006-02-13 Thread Dave Taylor
61-5200 (P) 800-339-1497 (F) 310-377-3550 Your Source for Integrated EDI Translation and DataSync Integration www.sysmarkinfo.com - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Monday, February 13, 2006 2:51 PM Subject: RE: [U2] Question about execute and stacked data

Re: [U2] Question about execute and stacked data.

2006-02-13 Thread Mark Johnson
is pretty splintered. My 1 cent. Mark Johnson - Original Message - From: "Louie Bergsagel" <[EMAIL PROTECTED]> To: Sent: Monday, February 13, 2006 6:34 PM Subject: Re: [U2] Question about execute and stacked data. > According to the documentatio

Re: [U2] Question about execute and stacked data.

2006-02-13 Thread Louie Bergsagel
According to the documentation, DATA is only used "...as an input stack to act as responses to INPUT statements..." so your "basic.program.that.builds.a.list" would have to contain INPUT COMMAND;EXECUTE COMMAND or you could add another EXECUTE line after the DATA/EXECUTE lines which ran the fol

RE: [U2] Question about execute and stacked data.

2006-02-13 Thread u2
; -Original Message- > From: [EMAIL PROTECTED] > [HYPERLINK "mailto:[EMAIL PROTECTED]"mailto:[EMAIL PROTECTED] ver.u2ug.org] On Behalf Of > Louie Bergsagel > Sent: Monday, February 13, 2006 4:11 PM > To: u2-users@listserver.u2ug.org > Subject: Re: [U2] Question about execu

Re: [U2] Question about execute and stacked data.

2006-02-13 Thread Louie Bergsagel
What are you trying to do? If you want to execute different commands based on whether or not something like a SAVE.LIST exists, just test @SYSTEM.RETURN.CODE after your select and do what you wish. EXECUTE "GET.LIST TEST" IF @SYSTEM.RETURN.CODE LT 1 THEN CRT "Enter a SAVE.LIST name: ": INPU

Re: [U2] Question about execute and stacked data.

2006-02-13 Thread Mark Johnson
ssume the worst and program around unvalidated data and the good stuff will prevail. Mark Johnson - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Monday, February 13, 2006 11:54 AM Subject: [U2] Question about execute and stacked data. > This is on universe 10.0.10 on w

[U2] Question about execute and stacked data.

2006-02-13 Thread u2
This is on universe 10.0.10 on windows xp. If you have stacked data, it will be executed after an EXECUTE, so: 001 DATA 'WHO' 002 EXECUTE 'SELECT VOC' Will select the voc to list 0, then execute WHO. If the command in EXECUTE doesn't yield a list, then the data isn't executed, so 001 DATA 'WHO' 002