home *** CD-ROM | disk | FTP | other *** search
- Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
- Path: sparky!uunet!gatech!paladin.american.edu!auvm!TAUNIVM.BITNET!ZIMERMAN
- Message-ID: <SAS-L%92073023211293@AWIIMC12.IMC.UNIVIE.AC.AT>
- Newsgroups: bit.listserv.sas-l
- Date: Fri, 31 Jul 1992 00:20:59 IST
- Reply-To: OSCAR ZIMERMAN <ZIMERMAN@TAUNIVM.BITNET>
- Sender: "SAS(r) Discussion" <SAS-L@UGA.BITNET>
- From: OSCAR ZIMERMAN <ZIMERMAN@TAUNIVM.BITNET>
- Subject: FSEDIT delete observation
- Lines: 46
-
- Hello SASlers ...
-
- > My question is very simple :
- > In an FSEDIT Application, I want to lock the option
- > DELETE.
- > This means, that the user will be able to add or update
- > a record, but never delete any observation.
- >
- > I am sure that I am not the first one to need something like
- > that.
- >
- > Please,send the possible answers directly to me. I will resume
- > to all of you
- >
- > Plataform : CMS Version 6.06
-
-
- Solution :
-
- There is no way to do that under Version 6.06.
- On the other hand, under Version 6.07, there is more that one
- option to acomplish this task.
- The best one is as follow :
-
- INIT:
- CONTROL ALLCMDS;
- RETURN;
- MAIN:
- CMD=LASTCMD();
- IF CMD='DELETE' THEN DO;
- ... more commands....
- CALL NEXTWORD();
- END;
- TERM:
- RETURN;
-
- Using this method, you have full control of any action
- from the command line.
-
-
- Thank you for all of you
- who help me to solve this
- problem.
-
-
- Natan Galkowicz
-