SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
bep_x_mrs_config.sas
Go to the documentation of this file.
1/* Copyright (C) 2018 SAS Institute Inc. Cary, NC, USA */
2
3/*!
4\file
5\brief The table BEP_X_MRS_CONFIG contains the list of Business Evolution plans and related Master Risk Scenarios required for a given analysis.
6
7 |PK |Variable |Type | Required? |Label |Description |
8 |--------------|--------------------|---------------|-----------|------------------------------|--------------------------------|
9 |![ ](pk.jpg) | <b>BEP_KEY</b> | NUMERIC(8) | Y | Business Evolution Plan Key | Business Evolution Plan Key |
10 |![ ](pk.jpg) | <b>MRS_KEY</b> | NUMERIC(8) | Y | Master Risk Scenario Key | Master Risk Scenario Key |
11
12
13
14\ingroup ddlStaticFlow
15\author SAS Institute Inc.
16\date 2019
17*/
18
19CREATE TABLE &LIBREF..BEP_X_MRS_CONFIG (
20 BEP_KEY NUMERIC(8) label = 'Business Evolution Plan Key',
21 MRS_KEY NUMERIC(8) label = 'Master Risk Scenario Key',
22 CONSTRAINT PRIM_KEY PRIMARY KEY (BEP_KEY, MRS_KEY)
23);