Date: Fri, 22 Jan 2010 16:48:40 -0500
Reply-To: evilpettingzoo97@AOL.COM
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Ken Borowiak <evilpettingzoo97@AOL.COM>
Subject: Re: CDISC format of XML
In-Reply-To: <201001222127.o0MJSpl0032705@malibu.cc.uga.edu>
Content-Type: text/plain; charset="us-ascii"
Jeff,
If you are interested in creating ODM XML then take a look at:
http://support.sas.com/rnd/base/xmlengine/proccdisc/TW8774.pdf
PROC CDISC requires you to create auxillary fields so it can create the XML file properly.
Regards,
Ken Borowiak
-----Original Message-----
From: Jeff Magouirk <jmagouirk@ASPENBIOPHARMA.COM>
To: SAS-L@LISTSERV.UGA.EDU
Sent: Fri, Jan 22, 2010 4:27 pm
Subject: CDISC format of XML
I am attempt to output a SAS dataset into XML via the following code -
filename xout 'Z:\Readertestfiles\lateralflow_1.xml' ;
libname xout xml xmltype=CDISCODM formatactive=yes;
data xout.lateralflow;
set b;
run;
am recieving the following error messages.
ERROR: StudyOID KEYSET Variable not set. Exiting
RROR: MetaDataVersionOID KEYSET Variable not set. Exiting
RROR: SubjectKey KEYSET Variable not set. Exiting
RROR: StudyEventOID KEYSET Variable not set. Exiting
RROR: StudyEventRepeatKey KEYSET Variable not set. Exiting
RROR: FormOID KEYSET Variable not set. Exiting
RROR: FormRepeatKey KEYSET Variable not set. Exiting
RROR: ItemGroupOID KEYSET Variable not set. Exiting
RROR: ItemGroupRepeatKey KEYSET Variable not set. Exiting
I am at a loss on what to do.
Thank you in advance for your help.
Jeff
|