Hi All,
SO currently I have been working on a SAS script where I have to get UserID and password through the below code:-
%let userid=; %let pass = ;
%MACRO login; %WINDOW info #1 @2 'QSP LOGIN:' attr=highlight #5 @5 'Please enter userid:' #5 @26 userid 20 attr=underline #7 @5 'Please enter password:' #7 @28 pass 20 attr=underline display=no; %DISPLAY info; %MEND login; %login;
and the pass the obtained value of userid and password to another macro which looks like this:-
%qspDataTransfer( id=&userid ,password=&pass ,env=test ,study=0431 ,comp=mk0431-sit1 ,prot=abc ,filepath=/demo ,filename=py.sas7bdat ,PRS_program=TEST ,PRS_project=TEST_PROJECT ,email='aditi.singh@merck.com' );
but this is giving error :
Apparent symbolic reference not resolved.
Please help!
... View more