Generic response to sometext.othertext: typically the most used expression in SAS with a dot in the middle is the LIBNAME.DATASET syntax element. So SASHELP.CLASS refers to a data set named CLASS in the Library named SASHELP. Specifically it is a small data set supplied by SAS which is typically used to demonstrate simple(ish) manipulations of data, modeling, reporting or graphing.
So if you see this in a DATA= on a procedure that is the name of the data set(or less commonly data view) in the specified library the procedure is to use. If it appears in a SET, MERGE, MODIFY, UPDATE statement in a DATA step, that is the name of a dataset in that libarary. If using Proc SQL and it appears in a FROM clause it is the source of data.
There are a number of functions related to data set manipulation that use this as well.
Less common it might relate to a CATALOG which stores all kinds of SAS stuff but usage will be different.
... View more