/*--------------------------------------------------------------------------------	*
* program:     metadata.scl                                   						*
* Description: Verify the valid/invalid of parameters: source, metadb, search,    	*
*              task and output 															*		
* By:          Nam Phuong, 8/15/2005														*
*---------------------------------------------------------------------------------	*/
libname mylib "..\data\metadata";

%metadata (source = notexist.ae, 
           metadb = mylib.ae1, 
           search =,
           task =,
           output =);

%metadata (source = mylib.notexist, 
           metadb = mylib.ae1, 
           search =,
           task =,
           output =);

%metadata (source = mylib.ae, 
           metadb = notexist.metadb, 
           search =,
           task =,
           output =);

%metadata (source = mylib.ae, 
           metadb = mylib.metadb, 
           search = sampleofthelongsearchcriterion,
           task =,
           output =);

%metadata (source = mylib.ae, 
           metadb = mylib.metadb, 
           search = pitd,
           task = save,
           output =);

%metadata (source = mylib.ae, 
           metadb = mylib.metadb, 
           search = pitd,
           task = update,
           output = Z:\notexist\dontknow\metadb.html);

%metadata (source = mylib.ae, 
           metadb = mylib.metadb, 
           search = pitd,
           task = update,
           output = C:\metadb.txt);