Published on :
Development INTERNAL_CREATION

SCL and FRAME Catalog Entries Compilation

This code is also available in: Deutsch Español Français
The script executes a `dm` (Display Manager) command which contains two 'build' operations. The first command, `build sasuser.tipstalk.coltitle.scl`, is responsible for compiling or updating the SCL entry named 'coltitle' located in the 'tipstalk' catalog of the 'sasuser' library. The SCL entry contains the programming code for the interface and logic of a SAS©/AF application. The second command, `build sasuser.tipstalk.coltitle.frame`, performs a similar operation for the corresponding FRAME entry, which defines the structure and visual layout of the application.
Data Analysis

Type : INTERNAL_CREATION


The script does not directly manipulate tabular data or import it from external sources. Its objective is to compile internal components of the SAS system (SCL and FRAME catalog entries) which, once compiled, can be used by other SAS applications to interact with data.

1 Code Block
DM Command
Explanation :
This code block executes a Display Manager command. The 'dm' keyword invokes the Display Manager. The string in quotes contains two 'build' subcommands separated by a semicolon. Each of these subcommands instructs SAS to compile a specified catalog entry (scl and frame) under 'sasuser.tipstalk.coltitle'. The final 'build' after the string indicates the overall action to be performed by the Display Manager, which is compilation.
Copied!
1dm 'build sasuser.tipstalk.coltitle.scl;
2build sasuser.tipstalk.coltitle.frame' build ;
3 
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.