简体   繁体   中英

SAP Kernel release in SAP

Where in a SAP stored Kernel release and her SP level? Table or file (with constant path)?

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

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

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

在此处输入图片说明

在此处输入图片说明

您可以使用命令 disp+work 检查 sap 中的内核版本

The kernel level is in table SVERS . I'm not sure where to find the kernel support pack level.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM