cancel
Showing results for 
Search instead for 
Did you mean: 

How to find out the sap version (Release SAP_BASIS) on Filesystem

DominikEggimann
Explorer
0 Kudos

Hi there

I want to read the SAP version. Liked by batch.

But I find no possibility until now.

With the disp + work I can read the kernel version.

Can someone help me there?

Thanks and regards

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member

Hi Dominik,

SAP Component Version are stored in Database.

DB tables are 
1.) CVERS - For software components

2.) SVERS - For the release

3.) TPFID - System info (instance etc.)

4.) TSLE4 - Operating System


If you want to read the details at OS level by bach, then use SQL statement

SELECT * FROM <SAP Schema>.CVERS

Regards, Praveen

DominikEggimann
Explorer
0 Kudos

Hello Praveen

Thanks for your answer.

I can not find the table SVERS. The table CVERS is no content.

In the system where I test, only SAP NetWeaver AS Java 7.3 is installed.

regards

Former Member
0 Kudos

Hi Dominik,

Since the discussion opened in ERP area, I assumed your system was ABAP.

If it is JAVA system, Please check the below thread, may be help you

http://scn.sap.com/message/11033400

Regards, Praveen

DominikEggimann
Explorer
0 Kudos

Hello Praveen

I have to do it for ABAP and Java systems.
Thank you.

regards

danoneedcsapadm
Explorer
0 Kudos

Hello Praveen

Good Info, thank you !!

Former Member
0 Kudos

Hi Dominik

Try

select name,saprelease from <SAPSCHEMA>.BC_COMPVERS where name like 'sc/ep-basis' order by name asc;


Regards

Roman

Former Member
0 Kudos

Hello

Please launch JSPM. You will get to know exact stack of your AS Java System.

In other terms if your Java portal is up please check "System Info" page.

Regards,

SG

DominikEggimann
Explorer
0 Kudos

Hello Surojit

Thanks for your answer.

The problem is, I would have read this via batch or PowerShell.
If there is no table in the SQL database where I can read the version?

regards

Former Member
0 Kudos

Hi Dominik,

Is it ERP system or Netweaver  or ??

Please check the table by logon to SAP (ABAP) system first,

Logon to SAP system,

SE16->enter table name 'CVERS' -> press 'F7' -> Press 'F8'

Paste the out put here.

Best regards,

Praveen

DominikEggimann
Explorer
0 Kudos

Hallo Praveen

I'm a SAP consultant... i need the information for Java and abap.

Tank you

Former Member
0 Kudos

Hi Dominik,

I repeat,

The table CVERS contain System component version information in ABAP system.

The table BC_COMPVERS contain System component version information in JAVA system.

It’s very strange to hear that your ABAP system doesn’t contain any data in table CVERS.

There are many way to find out the sap version (Release).But from OS level, Reading data  from the above table with SQL statements are most relevant.

All the best !!

Regards, Praveen