The following SAS log
displays a warning that the ItemRef element contains an OrderNumber
attribute that is out of sequence.
Out-of-Sequence Warning in the SAS Log
238 libname Results 'C:\My Documents\';
NOTE: Libref RESULTS was successfully assigned as follows:
Engine: V9
Physical Name: C:\My Documents\
239
240 filename Xmlinp 'C:\XML\AE.xml';
241
242 proc cdisc model=odm read=Xmlinp;
243 odm odmversion="1.2" ordernumber=yes;
244 clinicaldata out=Results.AE sasdatasetname="AE";
245 run;
WARNING: ItemRef OID="ID.AESEV" OrderNumber="21" outside range. Ignoring
OrderNumber.
NOTE: PROCEDURE CDISC used (Total process time):
real time 4.76 seconds
cpu time 0.01 seconds