SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
map_movement_type.sas
Go to the documentation of this file.
1/* Copyright (C) 2018 SAS Institute Inc. Cary, NC, USA */
2
3/*!
4 \file
5 \brief Movement Type
6 \details
7
8 |PK |Variable |Type | Required? |Relationships |Label | Description |
9 |--------------|-------------------------|------------------|-----------|---------------|---------------------|---------------------|
10 | ![ ](pk.jpg) | <b>MOVEMENT_TYPE_CD</b> | VARCHAR(32) | Y | | Movement Type Code | Movement Type Code |
11 | | MOVEMENT_TYPE | VARCHAR(100) | N | | Movement Type | Movement Type |
12 | | MOVEMENT_CATEGORY | VARCHAR(200) | N | | Movement Category | Movement Category |
13
14\author SAS Institute Inc.
15\date 2018
16
17*/
18CREATE TABLE &LIBREF..MAP_MOVEMENT_TYPE (
19 MOVEMENT_TYPE_CD VARCHAR(32) label = 'Movement Type Code',
20 MOVEMENT_TYPE VARCHAR(100) label = 'Movement Type',
21 MOVEMENT_CATEGORY VARCHAR(100) label = 'Movement Category',
22 CONSTRAINT PRIM_KEY PRIMARY KEY (MOVEMENT_TYPE_CD)
23);