in reply to Calling SAS from Perl

need to call a SAS program and pass parameters into the SAS code

If the parameters need to be passed as normal command line arguments, that would simply be something like

system "your-SAS-program", @parameters;

(@parameters would contain the individual parameters, of course)

How would you call the program outside of Perl?  Knowing that would help us to give more specific advice.