Therapies SQL Functions

CASCO_All_Therapies

Display the name of all selected therapies and the value descriptor for the case.

 

Return Value:

Returns a text list of all selected therapies with the value descriptor.

Parameters:

CaseNumber, CenterCode, YearCode: Uniquely Identifies the case for which the information should be returned

Delimiter: Characters to display for each separate value.

Value Descriptor:

0 = long description (e.g. Recommended, Performed, etc.)

1 = short description (e.g. R, P, etc.)

Example:                              

(dbo.CASCO_All_Therapies(ToxPat.CaseNumber, ToxPat.CenterCode, ToxPat.YearCode, ', ', 0)) AS All_Therapies

CASCO_Any_Therapy

Determine if any therapies have been selected for the case.

 

Return Value:

Returns a value of 1 if any therapy is selected.

Returns a value of 0 if no therapies are selected.

Parameters:

CaseNumber, CenterCode, YearCode: Uniquely Identifies the case for which the information should be returned

Delimiter: Characters to display for each separate value.

Example:

(dbo.CASCO_Any_Therapy(ToxPat.CaseNumber, ToxPat.CenterCode, ToxPat.YearCode)) AS Any_Therapy