Previous Topic

Next Topic

Book Contents

GetNamedValue(Name)

Returns the data value associated with a name specified in the AddNamedValue method on the Patient or Result object.

Argument

Name

String containing the name passed by the AddNamedValue method.

Example

aeserval_m = Global.GetNamedValue("aeserval")
if aeserval_m = "Y" then
ptinit_m = Global.GetNamedValue("ptinit")
aedate_m = Global.GetNamedValue("aedate")
aeevent_m = Global.GetNamedValue("aeevent")
site_m = Global.GetNamedValue("sitenm")
emailtxt="An SAE has occurred at Site: "&site_m&" for Patient: "&ptinit_m &" on AE Date: "&aedate_m&". The event is : "&aeevent_m&".
call Global.EmailtoInternetUser("test@phaseforward.com","SAE Occurrence",emailtxt)
end if

Send Feedback