Description
Returns the array of subjects and names from the active trial from Eclipse database. If no selection is made, or the selection doesn't include a trial, the empty array is returned.
Functional area
Data management
Command syntax
Syntax
getEclipseAssociatedSubjects |
Arguments
None
Flags
None
Return value
string array
The array of string includes the subject; names of active trial from Eclipse database
Examples
// Print all subjects for active trial from Eclipse database
string $subjects[] = `getEclipseAssociatedSubjects`;
int $l = `getCount $subjects`;
print ("Subjects count = " + string($l), $subjects);