Hello ,
There are two types of score code that Model Studio nodes can create: DATA step or analytic store. To generate score code for an entire pipeline, the score code for each node producing score code is appended together into a single DATA step. When the nodes in a pipeline produce multiple analytic stores, or one or more analytic stores and DATA step score code, an EP score code file is created. EP score code represents the score code produced by these pipelines.
(the above is from : SAS Help Center: Scoring Your Models ... there is also a table that tells you which node produces what.)
You can run this code outside Model Studio.
For complex models, modeling logic may not be stored in a human-readable equation or series of rules but, rather, a machine-readable file. Common file type that may represent models include Pickle for Python models; Analytical store (ASTORE) for SAS models; and rdata, rds, or rda for R models. When the model is saved as an object it must be loaded before it can be used to score data. (the above is from : Training code, scoring code, and what makes a model - The SAS Data Science Blog)
I guess you are looking for simple data step score code (without analytic stores) that you can take anywhere ... but you can't get full data step score code for complex models.
Ciao,
Koen
... View more