简体   繁体   中英

How can I read the delivery class of a table?

I want to write a program to show critical Transports eg with changes on Tables with very many items.

For that i should differentiate between Customizing and Workbench Tables.

My Problem is that i have not yet find a Function or something to read that Flag of the Table. I did debug the Transaction SE11 while editing the Flag but i have not yet found the spot where it writes it in the Database or gets it out of it. The only mark I found were the 2 attributes DF-DDXX and DD02D , which hold the flag and which get changed when one edits it, but till now I have not been able to find the spot at witch it is written in the database or used in a function or so.

The info you are looking for is stored in the transparent table DD02L , field CONTFLAG .

So if you want to search for all the customizing tables' names for example, here would be the query.

DATA: lt_tabname TYPE tttabname.

SELECT tabname
  FROM dd02l
  INTO TABLE lt_tabname
  WHERE contflag = 'C'.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM