Skip to Content
0
Former Member
May 28, 2009 at 03:41 PM

get global setting of "System Change Option"

783 Views

Hi together,

i need the value of transaction SE06 -> System Change Option --> Global Setting via RFC.

I know that this value is saved in table TADIR and to get this value via select statement

SELECT SINGLE * FROM tadir INTO ls_tadir

WHERE pgmid = 'HEAD'

AND object = 'SYST'

AND obj_name = space.

But i want to get this value from several systems via RFC! This systems are a mix from 4.5b till 7.1.

So, problem is that RFC_READ_TABLE don't support unicode and that table TADIR was changed through newer versions.

I'm searching a specific RFC which returns this value!

Otherwise i have to get this value via "TABLE_ENTRIES_GET_VIA_RFC" and to split this workarea everytime, which would be not good for performance..