We have build a tool that automatically creates Data catalog, Program documentations, Data lineage, runtime statistics and more utilizing the output from the procedure proc scaproc 2 questions: 1) if we have a program like: proc scaproc;
record 'record.txt';
run;
%include("Some_SAS_program.sas");
proc scaproc;
write;
run; Then the file record.txt will hold all the right JOBSPLITS for the included code, BUT the source code included does not follow after the line: /* JOBSPLIT: STEP SOURCE FOLLOWS */ Is there some way to achieve that the code is included in the output from proc scaproc? 2) Proc export does not seem to generate any ATTR-information on what is being exported. Is there a way to capture that information using proc scaproc? A description on what we are trying to achieve is here: https://www.youtube.com/watch?v=hxJw1ZFj1r4
... View more