I am new to SAS VIYA and exporing the product. I have created a dummy model "TestVV" and tried to test the same in SAS decision manager. However, I am getting below error higlighted in red. Any help would be appreciated!!! data "Public"."Test_6_TestVVDecision_2018-07-19_07-32-04_output" (overwrite=yes); 97 98 dcl thread decisionFlowThread t; 99 method init(); 100 put 'ERROR: An error occurred while generating code for the node named "TestVV" with type "application/vnd.sas.decision.step.model". '; 101 102 end; 103 104 method run(); 105 set from t; 106 output "Public"."Test_6_TestVVDecision_2018-07-19_07-32-04_output"; 107 end; 108 109 enddata; NOTE: Running THREAD program on all nodes ERROR: An error occurred while generating code for the node named "TestVV" with type "application/vnd.sas.decision.step.model". NOTE: Running DATA program on one node NOTE: Created package decision_db6c5b78_cc00_4f0d_b80 in data set "casuser(d3494564)".decision_db6c5b78_cc00_4f0d_b80. NOTE: Created thread decisionflowthread in data set "casuser(d3494564)".decisionflowthread. NOTE: Execution succeeded. 11 rows affected.
... View more