on 2013 Jul 19 10:07 AM
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
Request clarification before answering.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
Hi Dominik
Try
select name,saprelease from <SAPSCHEMA>.BC_COMPVERS where name like 'sc/ep-basis' order by name asc;
Regards
Roman
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
User | Count |
---|---|
120 | |
9 | |
8 | |
5 | |
4 | |
4 | |
3 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.