SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
irmst_node_sync_adjustment.sas
Go to the documentation of this file.
1/*
2 Copyright (C) 2018 SAS Institute Inc. Cary, NC, USA
3*/
4
5/** \file
6 \brief Synchronize data objects for downstream execution
7
8 \param[out] ds_out_scenario_info (FRS9_STG.SCENARIO_INFO) Empty output table needed for downstream processing (Credit Risk Analysis)
9 \param[out] ds_out_scenario_data (FRS9_STG.SCENARIO_DATA) Empty output table needed for downstream processing (Credit Risk Analysis)
10
11 \details
12
13 This node ensure that all required tasks have been completed and tables have been created before the execution can proceed to the downstream processing (Credit Risk Analysis)
14
15 In addition the following macro utilities are called:
16
17 | Macro name | Description | Further information |
18 |---------------------------|--------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
19 | irm_session_prepare | Reads RUN_OPTION table and sets logging options | \link irm_session_prepare.sas \endlink |
20 | irm_session_cleanup | Removes all non-IRM WORK datasets/views and deletes all user-created macro variables from workspace session | \link irm_session_cleanup.sas \endlink |
21
22 \ingroup nodes
23 \author SAS Institute Inc.
24 \date 2018
25*/
26
27/* Initialize session */
28%irm_session_prepare();
29
30/* Create empty scenario_info table */
31data &ds_out_scenario_info.;
32 length
33 scenarioId $32.
34 scenarioName $1024.
35 ;
36 stop;
37run;
38
39/* Create empty scenario_data table */
40data &ds_out_scenario_data;
41 length
42 scenarioId $32.
43 scenarioName $1024.
44 ;
45 stop;
46run;
47
48/* Cleanup session */
49%irm_session_cleanup;