Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Does a table exist with kernel information?

Former Member
0 Likes
1,358

Hey there,

I want to get some information about the kernel by using a oracle database connect (from non-SAP). Until now, I have found different tables showing me release, version, support packages and so on (CVERS, UVERS, etc.). But is there also a table where I can find the kernel information?

Thanks in advance

Michael

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,117

Check the FM 'SYSTEM_INFO to get the kernel information

10 REPLIES 10
Read only

Former Member
0 Likes
1,118

Check the FM 'SYSTEM_INFO to get the kernel information

Read only

0 Likes
1,117

What does FM stand for?

Read only

0 Likes
1,117

FM stands for Function Module. Goto SE37 and write the name given above by Vikranth there and execute it.

Edited by: vijetasap on Oct 12, 2009 2:32 PM

Read only

0 Likes
1,117

FM stands for function module. As Thomas pointed that there is no transperant table for this, you cannot use a select query. you will have to call the function module SYSTEM_INFO to get the kernel information. Please search in SCN as to how to call that function module

Read only

0 Likes
1,117

Okay, thank you ..

Are there any possibilities to get the kernel infos using the databaseconnect without SAP? Maybe with oracle specific means?

Read only

0 Likes
1,117

Hi,

Try the FM TH_SAPREL2 (behind you find the old good one C ThSysInfo as in RFC_SYSTEM_INFO)

success.

Gr., Frank

PS: i have not read the full forum, maybe someone else had arlready given this answer

Read only

0 Likes
1,117

Hi

Probably u need to create or called a RFC based on SYSTEM_INFO or calling SYSTEM_INFO in order to export the kernel data,

Just as Bensen wrote, there's RFC_SYSTEM_INFO

P.s.: RFC_SYSTEM_INFO doesn't seem to do the same thing of SYSTEM_INFO (but I've just given a look at both ABAP code)

Max

Read only

0 Likes
1,117

Well, okay .. it seems like there is no table for it .. so I have to think it over .. just googled and saw, that there is a solution between php and sap called saprfc .. so I will try this. Here I can also execute these FMs ..

Thank you all!

Michael

Read only

ThomasZloch
Active Contributor
0 Likes
1,117

This is how System->Status pulls it up:

call 'SAPCORE' id 'ID' field 'VERSION'
                 id 'TABLE' field kernel_version-*sys*.

So I guess there is no transparent table with this info.

Thomas

Read only

0 Likes
1,117

Thanks for your answers, but I want to know a SQL-select statement, nothing with ABAP.