SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
irmst_node_allocate_adjustments.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 Allocate adjustments to detail data
7
8 \details
9
10 This node makes a call to macro \link irmc_adjustment_allocate.sas \endlink to perform the adjustment allocation.
11
12 In addition the following macro utilities are called:
13
14 | Macro name | Description | Further information |
15 |---------------------------|--------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
16 | irm_session_prepare | Reads RUN_OPTION table and sets logging options | \link irm_session_prepare.sas \endlink |
17 | 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 |
18
19 \ingroup nodes
20 \author SAS Institute Inc.
21 \date 2018
22*/
23
24/* Initialize session */
25%irm_session_prepare();
26
27%irmc_adjustment_allocate(ds_in_reportmart_config = &ds_in_reportmart_config.
28 , ds_in_aggregation_config = &ds_in_aggregation_config.
29 , ds_in_dependency_config = &ds_in_dependency_config.
30 , ds_in_map_movement = &ds_in_map_movement.
31 , ds_in_rules_info = &ds_in_rules_info.
32 , ds_in_sync_mart = &ds_in_sync_mart.
33 , ds_in_mart_meta = &ds_in_mart_meta.
34 , ds_in_mart_dataInfo = &ds_in_mart_dataInfo.
35 , ds_in_mart_partition_list = &ds_in_mart_partition_list
36 , ds_out_modified_delta = &ds_out_modified_delta.
37 , ds_out_alloc_rules_summary = &ds_out_alloc_rules_summary.
38 , ds_out_dataInfo = &ds_out_dataInfo.
39 , ds_out_reportmart_config = &ds_out_reportmart_config.
40 , epsilon = 1e-10
41 , rule_summary_schema_name = &rule_summary_schema_name.
42 , rule_summary_schema_version = &rule_summary_schema_version.
43 , dataDefinition_name = Allocation Rules Summary Schema
44 , dataDefinition_desc = Allocation Rules Summary schema definition
45 , business_category = STM
46 , dr_library_name = &dr_library_name.
47 , dr_libref = &dr_libref.
48 , username = &irm_user_id.
49 , password = &irm_user_password.
50 , tgt_ticket = &tgt_ticket.
51 , rgf_protocol = &rgf_protocol.
52 , rgf_host = &rgf_host.
53 , rgf_port = &rgf_port.
54 , rgf_service = &rgf_service.
55 , rgf_solution = &rgf_solution.
56 );
57/* Cleanup session */
58%irm_session_cleanup;