Hi,
I want to submit the existing sas code to GRID without change in the existing code (by calling some other macro to enable the execution on grid)
Sample Code which i want to execute through grid functionality (SAS DI Studio)
libname A 'library_location';
PROC SORT DATA=A.dataset OUT=A.dataset;
BY abc ;
RUN ;