Hello, I still received the same error. Below is the except from the job I run to create the cport file. The cported file is 'cagu.nguyeve.cport'. After that, I run the ftp on cmd.exe. ftp> binary ftp> get 'cagu.nguyeve.cport' C:\Test.xpt' //STEP00 EXEC PAPCRMS,TYPRUN='P'
//DANFILE EXEC SAS
//WORK DD UNIT=(DISK,4),SPACE=(CYL,(2000,1000),RLSE)
//SASAUTOS DD DSN=UCLN23.FSDU.XTRACMAC,DISP=SHR
//MACROS DD DSN=SSTU.SAS.MACLIB,DISP=SHR
//BFILE DD DSN=BTB.P.A26,DISP=SHR
//NONP1612 DD DSN=RIRU.SONGK3.TDFS.NONPRIME.LON.V1612,DISP=SHR
//DS1612 DD DSN=CAGU.NGUYEVE.CPORT,
// DISP=(,CATLG,DELETE),SPACE=(CYL,(2000,1500),RLSE),
// UNIT=TSSU,DCB=(RECFM=FB,LRECL=80,BLKSIZE=8000)
//SYSIN DD *
%MACRO NP (DSIN,DSOUT);
DATA NONPRIME;
SET &DSIN..RBVFCL;
PROC CPORT DATA=NONPRIME FILE=&DSOUT MEMTYPE=DATA;
RUN;
... View more