home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / bit / listserv / sasl / 3506 < prev    next >
Encoding:
Text File  |  1992-07-30  |  1.7 KB  |  52 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!gatech!paladin.american.edu!auvm!SWIRL.MONSANTO.COM!GIBES
  3. Message-ID: <9207310030.AA06570@tin.monsanto.com>
  4. Newsgroups: bit.listserv.sas-l
  5. Date:         Thu, 30 Jul 1992 19:30:29 -0500
  6. Reply-To:     Kernon Gibes <gibes@SWIRL.MONSANTO.COM>
  7. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  8. From:         Kernon Gibes <gibes@SWIRL.MONSANTO.COM>
  9. Subject:      RE: FSEDIT delete observation
  10. Comments: To: SAS-L@uga.cc.uga.edu@tin.monsanto.com
  11. Comments: cc: GIBES@tin.monsanto.com
  12. Lines: 38
  13.  
  14.  CONTENT:   F/U to a response ---fyi---
  15.  SUMMARY:   Can also use FSEDIT option NODEL to prevent deletes
  16.  REL/PLTF:  6.07/?
  17.  E-ADDR:    gibes@swirl.monsanto.com
  18.  NAME:      Kernon Gibes
  19.  PHONE:     (708) 506-2873
  20.  DATE/TIME: 30 July 1992, 7:41 p.m. CDT
  21.  
  22. I think that Natan Galkowicz wrote (regarding preventing a DELETE command
  23. in FSEDIT):
  24.  
  25. >There is no way to do that under Version 6.06.
  26. >On the other hand, under Version 6.07, there is more that one
  27. >option to acomplish this task.
  28. >The best one is as follow :
  29. >
  30. >            INIT:
  31. >            CONTROL ALLCMDS;
  32. >            RETURN;
  33. >            MAIN:
  34. >              CMD=LASTCMD();
  35. >              IF CMD='DELETE' THEN DO;
  36. >                  ... more commands....
  37. >                   CALL NEXTWORD();
  38. >              END;
  39. >            TERM:
  40. >            RETURN;
  41. >
  42. >Using this method, you have full control of any action
  43. >from the command line.
  44.  
  45. FYI:
  46.  
  47. One of the "other" options includes just specifing NODEL on the PROC
  48. FSEDIT statement.  This MIGHT be a preferred approach for someone who
  49. doesn't want to get involved in a lot of SCL coding.  Another approach
  50. is to set the "allow DELETE command" field to "N" in the FSEDIT parms
  51. window.
  52.