NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M4) Licensed to ASSYSTEM IBERIA SL - TECHEDGE, Site 70217892. NOTE: This session is executing on the X64_7PRO platform. NOTE: Updated analytical products: SAS/STAT 14.2 NOTE: Additional host information: X64_7PRO WIN 6.1.7601 Service Pack 1 Workstation NOTE: SAS initialization used: real time 0.64 seconds cpu time 0.43 seconds 1 2 filename SXLELIB '\\tsclient\C\Transferencia de Archivos\IMPORT TO 2 ! SAS\sgfxml\02303_20171016070200.xml'; 3 filename SXLEMAP '\\tsclient\C\Transferencia de Archivos\IMPORT TO 3 ! SAS\SGFXML\siammapV2.map'; 4 libname SXLELIB xmlv2 xmlmap=SXLEMAP access=READONLY; NOTE: Processing XMLMap version 2.1. NOTE: Libref SXLELIB was successfully assigned as follows: Engine: XMLV2 Physical Name: \\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\sgfxml\02303_20171016070200.xml 5 6 7 DATA alerta; SET SXLELIB.alerta; run; NOTE: There were 10 observations read from the data set SXLELIB.alerta. NOTE: The data set WORK.ALERTA has 10 observations and 7 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.01 seconds 8 9 10 11 libname siamia 'C:\Users\SAS\Desktop\siamia'; NOTE: Libref SIAMIA was successfully assigned as follows: Engine: V9 Physical Name: C:\Users\SAS\Desktop\siamia 12 filename DIRLIST pipe 'dir "\\tsclient\C\Transferencia de Archivos\IMPORT TO 12 ! SAS\sgfxml\0*.xml" /b'; 13 14 data dirlist ; 15 infile dirlist lrecl=200 truncover; 16 input file_name $100.; 17 run; NOTE: The infile DIRLIST is: Unnamed Pipe Access Device, PROCESS=dir "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\sgfxml\0*.xml" /b, RECFM=V,LRECL=200 NOTE: 25 records were read from the infile DIRLIST. The minimum record length was 24. The maximum record length was 24. NOTE: The data set WORK.DIRLIST has 25 observations and 1 variables. NOTE: DATA statement used (Total process time): real time 0.21 seconds cpu time 0.01 seconds 18 19 data _null_; 20 set dirlist end=end; 21 count+1; 22 call symputx('read'||put(count,4.-l),cats("\\tsclient\C\Transferencia de Archivos\IMPORT 22 ! TO SAS\SIAM\",file_name)); 23 call symputx('dset'||put(count,4.-l),scan(file_name,1,'.')); 24 if end then call symputx('max',count); 25 run; NOTE: There were 25 observations read from the data set WORK.DIRLIST. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.03 seconds 26 27 28 29 data siamia.dirlist(rename=(file_name=leadfile)); 30 set dirlist; 31 order=_n_;run; NOTE: There were 25 observations read from the data set WORK.DIRLIST. NOTE: The data set SIAMIA.DIRLIST has 25 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 32 33 options mprint symbolgen; 34 %macro readin; 35 %do i=1 %to &max; 36 37 data siamia.leadtarget&i; 38 set siamia.dirlist; 39 if &i=order; 40 run; 41 42 proc sql noprint; 43 select leadfile 44 into :lf 45 from siamia.leadtarget&i; 46 quit; 47 48 filename sgfxml "C:\Users\SAS\Desktop\siamia\&lf"; 49 filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; 50 libname sgfxml xmlv2 xmlmap=map; 51 52 data siamia.lead; 53 set siamia.lead; 54 run; 55 56 %end; 57 %mend readin; 58 %readin; SYMBOLGEN: Macro variable MAX resolves to 25 SYMBOLGEN: Macro variable I resolves to 1 MPRINT(READIN): data siamia.leadtarget1; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 1 MPRINT(READIN): if 1=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET1 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 1 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget1; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171015083020.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171015083020.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171015083020.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 2 MPRINT(READIN): data siamia.leadtarget2; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 2 MPRINT(READIN): if 2=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET2 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 2 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget2; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171015132340.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171015132340.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171015132340.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable I resolves to 3 MPRINT(READIN): data siamia.leadtarget3; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 3 MPRINT(READIN): if 3=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET3 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 3 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget3; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171015170200.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171015170200.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171015170200.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 4 MPRINT(READIN): data siamia.leadtarget4; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 4 MPRINT(READIN): if 4=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET4 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 4 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget4; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171016070200.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171016070200.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171016070200.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable I resolves to 5 MPRINT(READIN): data siamia.leadtarget5; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 5 MPRINT(READIN): if 5=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET5 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 5 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget5; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017064423.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017064423.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017064423.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 6 MPRINT(READIN): data siamia.leadtarget6; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 6 MPRINT(READIN): if 6=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET6 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 6 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget6; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017120423.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017120423.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017120423.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable I resolves to 7 MPRINT(READIN): data siamia.leadtarget7; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 7 MPRINT(READIN): if 7=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET7 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 7 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget7; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.01 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017120923.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017120923.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017120923.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable I resolves to 8 MPRINT(READIN): data siamia.leadtarget8; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 8 MPRINT(READIN): if 8=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET8 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 8 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget8; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017121423.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017121423.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017121423.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable I resolves to 9 MPRINT(READIN): data siamia.leadtarget9; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 9 MPRINT(READIN): if 9=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET9 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 9 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget9; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017121923.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017121923.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017121923.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable I resolves to 10 MPRINT(READIN): data siamia.leadtarget10; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 10 MPRINT(READIN): if 10=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET10 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 10 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget10; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017122923.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017122923.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017122923.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable I resolves to 11 MPRINT(READIN): data siamia.leadtarget11; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 11 MPRINT(READIN): if 11=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET11 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 11 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget11; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017123423.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017123423.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017123423.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 12 MPRINT(READIN): data siamia.leadtarget12; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 12 MPRINT(READIN): if 12=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET12 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 12 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget12; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017123743.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017123743.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017123743.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 13 MPRINT(READIN): data siamia.leadtarget13; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 13 MPRINT(READIN): if 13=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET13 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 13 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget13; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017123923.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017123923.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017123923.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 14 MPRINT(READIN): data siamia.leadtarget14; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 14 MPRINT(READIN): if 14=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET14 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 14 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget14; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017124423.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017124423.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017124423.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 15 MPRINT(READIN): data siamia.leadtarget15; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 15 MPRINT(READIN): if 15=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET15 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 15 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget15; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017124923.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017124923.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017124923.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 16 MPRINT(READIN): data siamia.leadtarget16; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 16 MPRINT(READIN): if 16=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET16 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 16 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget16; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017125743.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017125743.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017125743.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable I resolves to 17 MPRINT(READIN): data siamia.leadtarget17; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 17 MPRINT(READIN): if 17=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET17 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 17 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget17; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017130423.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017130423.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017130423.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 18 MPRINT(READIN): data siamia.leadtarget18; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 18 MPRINT(READIN): if 18=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET18 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 18 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget18; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.01 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017130923.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017130923.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017130923.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 19 MPRINT(READIN): data siamia.leadtarget19; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 19 MPRINT(READIN): if 19=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET19 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 19 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget19; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017131423.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017131423.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017131423.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 20 MPRINT(READIN): data siamia.leadtarget20; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 20 MPRINT(READIN): if 20=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET20 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 20 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget20; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017131923.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017131923.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017131923.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 21 MPRINT(READIN): data siamia.leadtarget21; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 21 MPRINT(READIN): if 21=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET21 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 21 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget21; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171017132423.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171017132423.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171017132423.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable I resolves to 22 MPRINT(READIN): data siamia.leadtarget22; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 22 MPRINT(READIN): if 22=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET22 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 22 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget22; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171018041103.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171018041103.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171018041103.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 23 MPRINT(READIN): data siamia.leadtarget23; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 23 MPRINT(READIN): if 23=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET23 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 23 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget23; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171018043103.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171018043103.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171018043103.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds SYMBOLGEN: Macro variable I resolves to 24 MPRINT(READIN): data siamia.leadtarget24; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 24 MPRINT(READIN): if 24=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET24 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 24 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget24; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171018043603.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171018043603.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171018043603.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable I resolves to 25 MPRINT(READIN): data siamia.leadtarget25; MPRINT(READIN): set siamia.dirlist; SYMBOLGEN: Macro variable I resolves to 25 MPRINT(READIN): if 25=order; MPRINT(READIN): run; NOTE: There were 25 observations read from the data set SIAMIA.DIRLIST. NOTE: The data set SIAMIA.LEADTARGET25 has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds MPRINT(READIN): proc sql noprint; SYMBOLGEN: Macro variable I resolves to 25 MPRINT(READIN): select leadfile into :lf from siamia.leadtarget25; MPRINT(READIN): quit; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds SYMBOLGEN: Macro variable LF resolves to 02303_20171019040254.xml MPRINT(READIN): filename sgfxml "C:\Users\SAS\Desktop\siamia\02303_20171019040254.xml "; MPRINT(READIN): filename map "\\tsclient\C\Transferencia de Archivos\IMPORT TO SAS\SGFXML\siammapV2.map"; MPRINT(READIN): libname sgfxml xmlv2 xmlmap=map; NOTE: Processing XMLMap version 2.1. NOTE: Libref SGFXML was successfully assigned as follows: Engine: XMLV2 Physical Name: C:\Users\SAS\Desktop\siamia\02303_20171019040254.xml MPRINT(READIN): data siamia.lead; MPRINT(READIN): set siamia.lead; MPRINT(READIN): run; NOTE: There were 0 observations read from the data set SIAMIA.LEAD. NOTE: The data set SIAMIA.LEAD has 0 observations and 0 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds