Published on :
Utility EXTERNE

CCLI Library Definition

This code is also available in: Deutsch Español Français
The macro named `AHGlibccli` is defined. When executed, it uses the `libname` statement to associate the logical name 'ccli' with the physical directory 'D:\liuhui\ccli\ccli'. This allows SAS© users to easily access data or SAS© files stored in this directory using the prefix 'ccli'.
Data Analysis

Type : EXTERNE


The 'ccli' library is defined to point to an external path ('D:\liuhui\ccli\ccli'). This path is supposed to contain data or SAS files that would then be accessible via the 'ccli' library.

1 Code Block
MACRO
Explanation :
This block defines the `AHGlibccli` macro. The `libname` statement inside the macro creates an association between the logical name 'ccli' and the file system path 'D:\liuhui\ccli\ccli', thereby allowing access to SAS files (tables, catalogs, etc.) located at this location once the macro is executed.
Copied!
1%macro AHGlibccli;
2*create a libname for ccli;
3LIBNAME ccli 'D:\liuhui\ccli\ccli';
4%mend;
5 
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.