Data Prep Sheet

Action Principale : fmtLibCntlIn

Preparation Code

Script awaiting validation
Copied!
1 
2DATA work.format_data;
3LENGTH fmtname $8 label $20;
4retain fmtname 'GRADE' type 'C';
5start='A';
6label='Excellent';
7OUTPUT;
8start='B';
9label='Good';
10OUTPUT;
11start='C';
12label='Fair';
13OUTPUT;
14 
15RUN;
16 
17PROC CASUTIL;
18load
19DATA=work.format_data outcaslib="CASUSER" casout="my_cntl_table" replace;
20 
21RUN;
22 
Actions using this script
  • sessionProp fmtLibCntlIn En cours
  • No other action uses this exact script.