dc_getservicecode.sas
Go to the documentation of this file.
1 /**
2  @file
3  @brief Gets service code
4 
5  <h4> SAS Macros </h4>
6  @li mv_getjobcode.sas
7 
8  @version 9.3
9  @author 4GL Apps Ltd
10  @copyright 4GL Apps Ltd. This code may only be used within Data Controller
11  and may not be re-distributed or re-sold without the express permission of
12  4GL Apps Ltd.
13 **/
14 
15 %macro dc_getservicecode(loc=,outref=);
16 
17 %local name;
18 %let name=%scan(&loc,-1,/);
19 %mv_getjobcode(path=%substr(&loc,1,%length(&loc)-%length(&name)-1)
20  ,name=&name
21  ,outref=&outref
22 )
23 
24 %mend dc_getservicecode;