Hi All,
Need a little bit of help here... Think i have everyone baffled in work regarding this...
Im trying to run the below code remotely:-
But when it runs i get the following error:-
When i run the code locally it works fine... any ideas?
Ta
Robbie
Need a little bit of help here... Think i have everyone baffled in work regarding this...
Im trying to run the below code remotely:-
Code:
filename Runcode "Drill_Hod.SAS";
Data Franchise_Output_Macro;
file runcode;
set Drill_Hod;
Length Mac_String $500;
Mac_String='%Drill_to_Hod(product='||trim(left(product))||', VM_Sup_Region='||trim(left(VM_Sup_Region))||', vm_hod_region='||trim(left(vm_hod_region))||', VM_Sup_Region_fixed='||trim(left(VM_Sup_Region_fixed))||', vm_hod_region_fixed='||trim(left(vm_hod_region_fixed))||', product_fixed='||trim(left(product_fixed))||');';
put Mac_String;
run;
But when it runs i get the following error:-
Code:
ERROR: Read Access Violation In Task [ CONNECT )
Exception occurred at (6787E1D5)
Task Traceback
Address Frame (DBGHELP API Version 4.0 rev 5)
6787E1D5 03E3F3D8 sasxshel:mcn_main+0x3D1D5
67844FBE 03E3F594 sasxshel:mcn_main+0x3FBE
678459FD 03E3F5C0 sasxshel:mcn_main+0x49FD
67862FEE 03E3F5F8 sasxshel:mcn_main+0x21FEE
67862E7F 03E3F61C sasxshel:mcn_main+0x21E7F
67861FC8 03E3F698 sasxshel:mcn_main+0x20FC8
6784E911 03E3F6C8 sasxshel:mcn_main+0xD911
67851FC7 03E3F720 sasxshel:mcn_main+0x10FC7
6785ACC1 03E3F75C sasxshel:mcn_main+0x19CC1
67858E2E 03E3F7D8 sasxshel:mcn_main+0x17E2E
5B31D86F 03E3F87C saszrlnk:mcn_main+0x1C86F
5B31CB1C 03E3F8B0 saszrlnk:mcn_main+0x1BB1C
5B3247D8 03E3FD9C saszrlnk:mcn_main+0x237D8
5B311E3B 03E3FF88 saszrlnk:mcn_main+0x10E3B
01222B02 03E3FFA0 sashost:Main+0xBE72
01226C20 03E3FFB4 sashost:Main+0xFF90
7C80B683 03E3FFEC kernel32:GetModuleFileNameA+0x1B4
ERROR: Generic critical error.
ERROR: Communication Subsystem Request Parameter Error: Invalid
application identifier.
ERROR: Remote submit to SASSRVP cancelled.
When i run the code locally it works fine... any ideas?
Ta
Robbie