annocrf

Create a template annotation from for CRF from selected data

%annocrf (data = SAS data used in annotations,
                  output = output template);
 

Where

Is Type...

And represents...

data

C (40 chars)

This is a two level dataset specification as in: libname.dataset separated by spacesIf only a one level libname is specified, all the datasets in the libname will be captured.

output

C (200 chars)

The name of the output file.  This can include path and name of RTF file.  If none is specified, the default would be ANNOCRF.RTF which will be saved at the current location.

Details
This tool generates a template annotated CRF with all the variables which will prevent mistyping.  The default display will be in the format of: 
   DATASET NAME.VARIABLE NAME
 
Form example: 
   AE.USUBJID


In the event that the dataset is stored in a transposed CDISC "vertical" structure, it will be annotated with the format of: 
   DATASET NAME.VERTICAL VARIABLE NAME (ORIGINAL VARIABLE)
 
Form example: 
   SUPPQUAL.QNAM (BASEVAR)

All annotations will be stored in the single file with a page break between datasets.

Example

libname dataware 'c:\mypath\to\data';

%annocrf (data = dataware);

%annocrf (data = dataware.ae, output=c:\temp\annocrf.rtf);

 
    Definedoc - DEFINE.XML Software,  Meta-Xceed Inc.© 2009
Bookmark and Share