cancel
Showing results for 
Search instead for 
Did you mean: 

short question about system-id

Former Member
0 Kudos

Hi everybody,

how can I get information about the server-id, my web dynpro-application is running on? I need something like sy-sysid in APAP

Thanks

Jan

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Jan,


System.getProperty("SAPSYSTEMNAME");  // System ID
System.getProperty("SAPSYSTEM");   // System Number

Regards

Sebastian

Answers (2)

Answers (2)

Former Member
0 Kudos

HI

String ID = System.getProperty("SAPSYSTEMNAME");

Try this thread,

Regards

Saravanan K

Former Member
0 Kudos

You should find this in the "System Info" page at URL

http://<J2EE-engine>:<http-port>/monitoring/SystemInfo

Armin

Former Member
0 Kudos

ok

but how can I access this during runtime??

My application needs to know the sysid of the server to send this information in an functionmodule call via JCo.

Or is there another possibility in the ABAP-Funktionmodule to see, where the origin of the call was??

regards

Jan

Former Member
0 Kudos

you are faster than I.

Well, thank you everybody. It works.

Jan