cancel
Showing results for 
Search instead for 
Did you mean: 

Table where SE06 settings are stored

Former Member
0 Kudos

Hi,

I need to know which table stores the data for SE06 settings. For instance, if I change the modifiable/not-modifiable status from SE06, which table reflects this change?

P.S. Searching the internet I found one table named DDPRS, but this table stores the logs for SE06 but not the settings.

Thanks in advance

Arindam

Accepted Solutions (0)

Answers (2)

Answers (2)

0 Kudos

User table DLV_SYSTC from SE16. We can find the status of software components from here of SE06.

Former Member
0 Kudos

This is the table:

UPDATE tadir SET edtflag = lv_edtflag
                   WHERE pgmid    = 'HEAD'
                     AND object   = 'SYST'
                     AND obj_name = space.

Where lv_edtflag is:

IF gv_system_changeable = gc_not_changeable.
      lv_edtflag = 'N'.                "not changeable
    ELSE.
      lv_edtflag = ' '.                "changeable
    ENDIF.

For more info, check report RSWBO004 FORM update_tadir