-1

Where is stored the Kernel release and SP level? Table or file (with constant path)?

I'm writing my program on JCo, I need to get this information from there.

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
dino
  • 11
  • 2
  • 6

3 Answers3

1

Table CVERS contains the kernel level (RELEASE) and patch level (EXTRELEASE) for the availables components.

Edit :

Analyzing the code source for the Status/Other Info gave me this line :

  CALL 'SAPCORE' ID 'ID' FIELD 'VERSION'
                 ID 'TABLE' FIELD kernel_version-*sys*.

in module "MODULE get_kinfo OUTPUT." in file LSHSYO01

where kernel_version is defined as

   DATA: BEGIN OF kernel_version OCCURS 0,
      key(21) TYPE c,
      data(69) TYPE c,
   END OF kernel_version.

after the call, table kernel_version-sys contains the following data

SAP version        700
operating system  AIX
...
kernel release      700
database library  OCI_102 (10.2.0.2.0)
kernel compiled    AIX 2 5 005DD9CD4C00 May  2 2010 21:44:17
kernel patch level  254
supported SAP vers. 700
...
hot package level 18

regards
Guillaume

PATRY Guillaume
  • 4,287
  • 1
  • 32
  • 41
0

If you just want to see all that information you just select on the top menu SYSTEM inside you find STATUS.

enter image description here

enter image description here

0

you can use the command disp+work to check kernal release in sap