Hi @DvdM
If you want to re-use the output data from the node you can view and save the output data from the node results. This can be saved as an in-memory CAS table for use in other projects.

If you want to re-use the code used to generate the results, you can save the score code from the node. This is on the summary tab of the node results.

An example of the score code (you can use the programming tasks in SAS Studio to generate the code for you)
*Point to score code saved from Model Studio Node;
filename sfile '/home/sukhsn/casuser/PCA_Score.sas';
*Create output dataset calling score file;
data CASUSER.PCA_OUT;
set CASUSER.HMEQ;
%include sfile;
run;
*View results;
proc print data = CASUSER.PCA_OUT;run;
If you want to re-use the settings you selected for the node, you can save the node to the exchange. This can then be added to new Model Studio pipelines for re-use.
I hope this helps
Harry