简体   繁体   English

如何阅读表格的送达类?

[英]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. 我在编辑标志时确实调试了事务SE11,但是我还没有找到将它写入数据库或从中取出的位置。 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. 我发现的唯一标记是2个属性DF-DDXXDD02D ,它们保留该标志,并且在对其进行编辑时会更改,但是直到现在我仍无法找到它写入数据库或使用过的位置。在一个功能上。

The info you are looking for is stored in the transparent table DD02L , field CONTFLAG . 您要查找的信息存储在透明表DD02L字段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'.

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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