cancel
Showing results for 
Search instead for 
Did you mean: 

How to check the validity period of saprouter ?

Former Member
0 Kudos

Dear all,

As per sap note 1178684, we can check the validity period of the saprouter by executing "sapgenpse get_my_name -n validity"

I am wondering how to run that command in as/400 ?

Please advise. I am not familiar with as/400 OS.

Thanks

Regards,

Kent

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Kent,

you can do it as follows:

CALL PGM(SAPGENPSE) PARM('get_my_name' '-n' 'validity')

I typically use the following and see everything:

CALL PGM(SAPGENPSE) PARM('get_my_name')

More information is on:

http://www.easymarketplace.de/snc-iseries-setup.php

Regards

Volker Gueldenpfennig, consolut international ag

http://www.consolut.net - http://www.4soi.de - http://www.easymarketplace.de

Former Member
0 Kudos

Hi Volker,

I executed below

CD DIR('/usr/sap/saprouter')

CALL PGM(SAPGENPSE) PARM('get_my_name')

and it prompted below

Couldn't load function "sapcr_pseconv" from shared library "libsapcrypto.o"
ILEWRAPPER calling sapgenpse: Nonzero returncode of PASE program. (rc=4)
Press ENTER to end terminal session.

Please advise.

Thanks.

Regards,

Kent

Former Member
0 Kudos

Hi Kent,

please proceed as described on the http://www.easymarketplace.de/snc-iseries-setup.php

logon with sidadm (or sidofr):

(depending on the user, that is running the SAPRouter)

CD DIR('/usr/sap/saprouter')

ADDLIBLE LIB(SAPROUTER) ??? or whereever the stuff is ...

RMVENVVAR ENVVAR('SECUDIR')

ADDENVVAR ENVVAR('SECUDIR') VALUE('/usr/sap/saprouter')

RMVENVVAR ENVVAR('SNC_LIB')

ADDENVVAR ENVVAR('SNC_LIB') VALUE('/usr/sap/saprouter/sapcrypto')

CALL PGM(SAPGENPSE) PARM('get_my_name')

Regards

Volker Gueldenpfennig, consolut international ag

http://www.consolut.net - http://www.4soi.de - http://www.easymarketplace.de

Former Member
0 Kudos

Hi Volker,

Ok I managed to get it.

Thanks a lot.

Regards,

Kent

Answers (0)