Suppress error codes
- Open Calculator, go to Programmer Calc:
- Choose Hex and enter value from szkey 'SYSSEGFLD124' (typically 1700 if no changes were made in the past)
- Choose ‘Bit Toggling Keypad’
- then choose value to suppress (in this case ‘25’)
- You will see new value in the top
- Update as below (SQL Code)
- Send Sync in Vision Pro
Code Below:
--Suppressing 25 (case 00237557)
Select * from tErrorLog
--HINT: SYSSEGFLD124 is field where suppressed codes are kept
Select * from tlookup
where szkey = 'SYSSEGFLD124'
--Update szdescription with new error suppressed, szvalue to new HEX key and szuser to initials so we know who changed last.
update tlookup
set szvalue = '2001700',
szDescription = 'Error 8,9,10,12,25 Suppression'
where szkey = 'SYSSEGFLD124'
--To update szUser (for tracking)
Update tLookUp
set szUser = 'MA'
where szKey = 'SYSSEGFLD124'
--Update SYSSEGFLD00
update tlookup
set szvalue = 'TRUE'
where szkey = 'SYSSEGFLD00'
--Send Sync in Vision Pro