‎2007 Mar 20 9:20 AM
Hi there,
I need a <b>RFC function module</b> (may more than one), which returns the following kernel information of a SAP ABAP system from release <b>4.6c upwards</b> (!):
- Kernel release
- Unicode or non-unicode
- 32 or 64 bit
Thanks in advance,
Daniel
‎2007 Mar 20 2:54 PM
HI,
Use the system function to get Kernal and other info.
call function 'SYSTEM_INFO'
exporting
key = ' ' " << Pass the key values to get info
importing
value = value.
Values you can pass related to KEY
'SAP_VERSION'
'SAP_SYSTEM_ID'
'MACHINE_TYPE'
'DBNAME'
'DBUSER'
'CTYPE'
'OPSYS_VERSION'
'KERNEL_KIND'
'SAP_VERSION'
To get the Unicode info use fm
TR_GET_IS_UNICODE_SYSTEM
aRs
‎2007 Mar 20 2:54 PM
HI,
Use the system function to get Kernal and other info.
call function 'SYSTEM_INFO'
exporting
key = ' ' " << Pass the key values to get info
importing
value = value.
Values you can pass related to KEY
'SAP_VERSION'
'SAP_SYSTEM_ID'
'MACHINE_TYPE'
'DBNAME'
'DBUSER'
'CTYPE'
'OPSYS_VERSION'
'KERNEL_KIND'
'SAP_VERSION'
To get the Unicode info use fm
TR_GET_IS_UNICODE_SYSTEM
aRs
‎2007 Mar 21 12:28 PM