Try using the Repeat logic, this will add " " between each input.

SELECT CUSTOMER "<<A,R(" "),ENTER CUSTOMER#(s)>>"

Thanks,
David A. Green
DAG Consulting


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of roy
Sent: Tuesday, January 16, 2007 6:24 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] In-Line prompting AGAIN

Thanks,

There were items in the VOC with all of the single digits, however while
putting the quotes outside the brackets does surround the selection with
quotes, it no longer allows multiple selections by putting spaces between
them.  Hence SELECT CUSTOMER "<<A,ENTER CUSTOMER#(s)>>" returns an error if
7 31 is entered.  "7 31" not found  

Roy


> SELECT CUSTOMER <<A,"ENTER CUSTOMER NUMBER ">> WITH FLAG

There is probably an item called "7", but not one called "31" in either
DICT CUSTOMER or VOC.

Put the quote marks outside the prompt text.
  SELECT CUSTOMER "<<A,ENTER CUSTOMER NUMBER >>" WITH FLAG
 

The 1st way will prompt (the quote marks literally appear):
   "ENTER CUSTOMER NUMBER "= 
the 2nd:
    ENTER CUSTOMER NUMBER =

The 1st will execute:
  SELECT CUSTOMER 7 WITH FLAG
the 2nd:
  SELECT CUSTOMER "7" WITH FLAG
-------
-------
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
-------
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to