SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
map_dpd_type.sas
Go to the documentation of this file.
1/* Copyright (C) 2018 SAS Institute Inc. Cary, NC, USA */
2
3/*!
4\file
5
6\brief Mapping days past due types
7
8 |PK |Variable |Type |Not Null * |Relationships |Label |Description |
9 |--------------|---------------------------------------|------------------|-----------|--------------|---------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
10 |![ ](pk.jpg) | <b>DPD_START</b> | NUMERIC(8) | Y | | Days Past Due Type Code | |
11 |![ ](pk.jpg) | <b>DPD_END</b> | NUMERIC(8) | Y | | Days Past Due Code | |
12 | | DPD_CLASS | VARCHAR(50) | N | | Days Past Due Classification | |
13
14Notes:
15- (*) indicates a not-nullable variable.
16- Note that the indicated data types are SAS datatypes.
17
18
19\ingroup ddlMapping
20
21\author SAS Institute Inc.
22\date 2018
23
24*/
25CREATE TABLE &LIBREF..MAP_DPD_TYPE (
26 DPD_START NUMERIC(8) label='Days Past Due start',
27 DPD_END NUMERIC(8) label='Days Past Due end',
28 DPD_CLASS VARCHAR(50) label='Days Past Due Classification'
29);