Date: Wed, 18 Jun 2008 08:22:42 -0700
Reply-To: tiramisu <kungmarten@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: tiramisu <kungmarten@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: Create "hidden" rows
Content-Type: text/plain; charset=UTF-8
Yes well the thing is I have to do a change in one table, but we have
30 programs that use the table and will process wrong data if they use
the new type of column <abg> (which they will per default). We must
implement the new type, but we do not want to change all our programs,
because of time limitations. Our new type must, however exist because
it is crucial for other reports.
/MÃ¥rten
On Jun 18, 4:33Â pm, gerhard.hellrie...@T-ONLINE.DE (Gerhard
Hellriegel) wrote:
> That is a  thing you could do with views.
>
> data a_v / view=a_v;
> Â set sashelp.class;
> Â if sex="M" then sex=" ";
> run;
>
> ods listing;
> proc print data=a_v;
> Â var name sex;
> run;
>
> each process which is on the view, cannot see the "M"s, on the base data
> it is visible...
>
> Gerhard
>
> On Wed, 18 Jun 2008 08:20:00 -0600, Alan Churchill <savian...@GMAIL.COM>
> wrote:
>
> >Hidden rows is a display issue. How are you displaying the data?
>
> >Alan
>
> >Alan Churchill
> >Savian
> >www.savian.net
>
> >-----Original Message-----
> >From: SAS(r) Discussion [mailto:SA...@LISTSERV.UGA.EDU] On Behalf Of
> >tiramisu
> >Sent: Wednesday, June 18, 2008 8:14 AM
> >To: SA...@LISTSERV.UGA.EDU
> >Subject: Create "hidden" rows
>
> >Is there a way to make certain rows "hidden" by default for the rest
> >of the system. Such as: I have a table where certain values for the
> >column <abg> should not be seen, or readable, for any other programs
> >that reads from the table. I want the values there for one program
> >that relies on just those values.
> >In other words: I want it to work just as the hidden folders on
> >windows or unix. They are not seen per default, but if I select an
> >option i can see it just like any other files or catalogs.
> >Does the option to create hidden rows even exists?
> >Anyways, thank you for your time.
>
> >Best regards,
>
> >Må²´en Lindblad
|