Product Documentation
Virtuoso ADE Verifier SKILL Reference
Product Version IC23.1, November 2023

verifDeleteReqSignoff

verifDeleteReqSignoff(
g_sessionId
[ ?reqId g_reqId ]
)
=> t / nil

Description

Deletes the signoff setup of the specified requirement in a Verifier session.

Arguments

g_sessionId

Integer, string number, or window specifying the Verifier session ID. For example, 0, "0", or window(2).

?reqId g_reqId

Single requirement ID or list of requirement IDs.

Value Returned

t

Signoff setup of the specified requirement is deleted.

nil

There is no signoff information to delete, or the command failed.

Examples

The following example opens a Verifier cellview and retrieves a requirement that has the verification type manual. The example then retrieves the sign-off details of that requirement (ID1). Then, it removes the sign-off and checks its removal.

uid = verifOpenCellView("test" "results" "verifier")
=> 0
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."
)

Deletes a signoff setup for a single requirement.

verifDeleteReqSignoff(uid ?reqId "ID1")
=> t
verifGetReqSignoff(uid "ID1")
=> nil

Deletes signoff setup for a list of requirements.

verifDeleteReqSignoff(uid ?reqId list("ID1" "ID2"))
=> t

Deletes signoff setup for all requirements.

verifDeleteReqSignoff(uid)
=> t

Related Topics

verifGetReqSignoff

verifSignOffReq


Return to top
 ⠀
X