From: Ken Borowiak on
Jeff,

If you are interested in creating ODM XML then take a look at:=20
http://support.sas.com/rnd/base/xmlengine/proccdisc/TW8774.pdf

PROC CDISC requires you to create auxillary fields so it can create the XM=
L file properly.

Regards,
Ken Borowiak





-----Original Message-----
From: Jeff Magouirk <jmagouirk(a)ASPENBIOPHARMA.COM>
To: SAS-L(a)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=3DCDISCODM formatactive=3Dyes;
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