home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / database / oracle / 1485 < prev    next >
Encoding:
Text File  |  1992-09-03  |  1.2 KB  |  47 lines

  1. Newsgroups: comp.databases.oracle
  2. From: twod@socrates.demon.co.uk (Ian Parkin)
  3. Path: sparky!uunet!pipex!demon!socrates.demon.co.uk!twod
  4. Subject: Forms3 LOV
  5. Distribution: world
  6. Organization: Twod's Software Factory
  7. Lines: 35
  8. Date: Thu, 3 Sep 1992 17:27:16 +0000
  9. Message-ID: <715541236snx@socrates.demon.co.uk>
  10. Sender: usenet@gate.demon.co.uk
  11.  
  12. --
  13. Ian Parkin, twod@socrates.demon.co.uk
  14.  
  15. For a given field in a V3 form I would like **simple** way of constructing
  16. a LOV such that I could display within the LOV some hard-coded values.
  17.  
  18. i.e. :
  19. ====
  20.  
  21. For a field that accepts only 'Y' or 'N' as input I would like these values 
  22. to appear within the fields LOV.
  23.  
  24. This seems a simple thing to do, but using a select such as 
  25.  
  26. SELECT 'Y', 'N'
  27. INTO   :my_field
  28. FROM   system.dual
  29.  
  30. within the field definition screen gives a concatenation of Y and N within
  31. the LOV.
  32.  
  33. I have tried various other methods, but all to no avail.
  34.  
  35. Does anyone know of a simple way of doing this ?
  36.  
  37. By simple I mean little or no maintenance overheads ( i.e. no temporary 
  38. tables, etc ), and if possible a solution consisting soley of the LOV select
  39. text.
  40.  
  41. OK, I know these values are hard-coded and thus could go in the database, but
  42. its just one of those things that has been bugging me.
  43.  
  44. Cheers
  45.  
  46. IAP
  47.