Macros for SAS Application Developers
https://github.com/sasjs/core
Loading...
Searching...
No Matches
mp_testservice.sas
Go to the documentation of this file.
1/**
2 @file
3 @brief To be deprecated. Will execute a SASjs web service on SAS 9 or Viya
4 @details Use the mx_testservice.sas macro instead (documentation can be
5 found there)
6
7 <h4> SAS Macros </h4>
8 @li mx_testservice.sas
9
10 @version 9.4
11 @author Allan Bowe
12
13**/
14
15%macro mp_testservice(program,
16 inputfiles=0,
17 inputdatasets=0,
18 inputparams=0,
19 debug=log,
20 mdebug=0,
21 outlib=0,
22 outref=0,
23 viyaresult=WEBOUT_JSON,
24 viyacontext=SAS Job Execution compute context
25)/*/STORE SOURCE*/;
26
27%mx_testservice(&program,
28 inputfiles=&inputfiles,
29 inputdatasets=&inputdatasets,
30 inputparams=&inputparams,
31 debug=&debug,
32 mdebug=&mdebug,
33 outlib=&outlib,
34 outref=&outref,
35 viyaresult=&viyaresult,
36 viyacontext=&viyacontext
37)
38
39%mend mp_testservice;