I have mstored compiled macro catalogs in the location "\\C:shared". 
 each macro do different functionality (like, ISO date conversion, formats creation, some calcuctions etc.) 
   
 I have some 20 programs available in another location "\\C:Programs". 
   
 Now i need to write a macro which can run programs (available in "\\C:Programs"). some times i have to use macro catalogs which are available in  "\\C:shared" location (means, need to call those macros in rsubmit blocks). 
   
 Example code: 
 %let rc = %sysfunc( grdsvc_enable(_all_, server= SASApp_DEV));  options autosignon;  filename testlib "C:\Users\yanamadalavenkatesh\Desktop\SAS Parallel Execution\Rsubmit";  libname shared "%sysfunc(pathname(testlib))";     
 rsubmit grid1 wait=no inheritlib=(shared) /*NOTIFY=YES*/ log=logfil;   
 %formatds;  **Catalog is available in  \\C:shared location; 
 %include "\\C:Programs\dm.sas";  endrsubmit; 
   
 rsubmit grid2 wait=no inheritlib=(shared) /*NOTIFY=YES*/ log=logfil;   
 %isodt;  **Catalog is available in  \\C:shared location; 
 %include "\\C:Programs\lb.sas";  endrsubmit; 
   
 My question is, how can I use those catalogs (Means, How can i call those macros) in RSUBMIT blocks. Can you provide the sample code for the same. 
						
					
					... View more