verifGetReqSignoff
verifGetReqSignoff(g_sessionId t_reqId) =>l_reqSignoff/ nil
Description
Retrieves the signoff setup of the specified requirement in a Verifier session. The retrieved information includes the name of the person who signed off the signoff validity period, comments, and if the signoff is enabled for use or disabled.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
Value Returned
|
Disembodied property list (DPL) containing the sign-off setup of the specified requirement. |
|
Examples
The following example opens a Verifier cellview and retrieves a requirement that has the signoff setup:
uid = verifOpenCellView("test" "results" "verifier")
=> 0
Retrieves the disembodied property list of signoff data for the specified requirement.
dpl = verifGetReqSignoff(uid "ID1")
(nil signoffUser "Tom" signoffTime "Jun 14 15:25:59 2018"
signoffLocation "/ADE1/users/harry/tst/EAV_RAK" signoffLifetime "Once"
signoffComments
"Manully passing this requirement until next run."
)
Retrieves the value for signoffUser.
dpl->signoffUser
=> "Tom"
Related Topics
Return to top