maeUnWaiveViolation
maeUnWaiveViolation(x_dbId[?objectNamet_objectName][?objectTypet_objectType][?checkerNamet_checkerName][?analysisNamet_analysisName][?timet_time] ) => t / nil
Description
Removes from the waivers SQL database a waive rule matching the given criteria.
Ensure that the history is closed before you run this function.
Arguments
Value Returned
|
The rule matching the given criteria is waived from the waivers SQL database. |
||
Examples
Opens a database, removes a waiver database, and then closes it:
axlSession = axlGetWindowSession(hiGetCurrentWindow())
dbId = maeOpenViolationDb(axlSession "test_demoTop:1" "Interactive.3") when( dbId ;;
maeUnWaiveViolation(dbId ?objectName "I8.I0.MP1" ?objectType "instance" ?checkerName "testLib/demo_top/AssertionCheck" ?analysisName "tran" ?time "101.1p")
maeCloseViolationDb(dbId)
)
Return to top