My customer's audit department is requesting that any changes to Manual mode
are logged. Is there anywhere in the system that detects and logs a change
from normal mode to manual mode?
Thanks
Glenn
pgm
DCL VAR(&RETURNDATA) TYPE(*CHAR) LEN(22)
CALL QWCRIPLA PARM( &RETURNDATA +
X'16' +
'IPLA0100' +
X'00000000' )
IF COND(%SST(&RETURNDATA 10 1) *EQ '0') +
THEN(SNDPGMMSG MSG('The keylock position +
is set to auto.'))
IF COND(%SST(&RETURNDATA 10 1) *EQ '1') +
THEN(SNDPGMMSG MSG('The keylock position +
is set to manual.'))
IF COND(%SST(&RETURNDATA 10 1) *EQ '2') +
THEN(SNDPGMMSG MSG('The keylock position +
is set to normal.'))
IF COND(%SST(&RETURNDATA 10 1) *EQ '3') +
THEN(SNDPGMMSG MSG('The keylock position +
is set to secure.'))
END:
ENDPGM
http://as400bks.rochester.ibm.com/iseries/v5r2/ic2924/index.htm?info/apis/qwcripla.htm
Bryan Dietz
"Glenn Robinson" <Gl...@Flying-Fields.co.uk> wrote in message news:<bqq9dt$snb$1$8300...@news.demon.co.uk>...
As far as I'm aware, there is no system logging to changes in the key
position. Not sure what use there is in that as apart from being able to
force the console into DST and IPLs, I can't think of any other extras it
would allow... Under normal circumstances, our systems are in secure mode
with the key removed. This prevents the mode from being changed and IPLs
from the panel which your auditors may find acceptable.
"Bryan Dietz" <bryan...@yahoo.com> wrote in message
news:b4d82b43.03120...@posting.google.com...