GENERAL DESCRIPTION |
The Alias Comparison Tool (ACT) in the Laboratory
System Re-Engineering Project (LSRP) uses FileMan Database Server (DBS) API
calls to read the Security Level field (#2) in the DG Security Log (#38.1)
file.
1) The following FileMan DBS API is used to determine if the value, LRCVAL,
being passed in from a COTS Lab Information Management System (LIMS) is a
valid value for the Security Level Field (#2):
D CHK^DIE(38.1,2,"E",LRCVAL,.LRVAL) where LRCVAL is 0 or 1
Example:
>S LRCVAL=1
> D CHK^DIE(38.1,2,"E",LRCVAL,.LRVAL)
>W LRVAL
1
2) The following FileMan DBS API is used to get the Security Level Field (#2)
definition:
$$GET1^DID(38.1,2,"","POINTER")
Example:
>S LRFLDEF=$$GET1^DID(38.1,2,"","POINTER")
>W LRFLDEF
0:NON-SENSITIVE;1:SENSITIVE;
|