博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
几种查表的方法(转)
阅读量:5050 次
发布时间:2019-06-12

本文共 1369 字,大约阅读时间需要 4 分钟。

说说我常用的几种方法。

1,F1。毫无悬念,当我想要知道某一个字段存在哪一张表里的时候,我就会下意识的按F1,然后去看Technical Infomation。我觉得有一半左右的机会可以得到我想要的答案

2,SAP Application。用SE16进入Data Browser,然后F4,点击进入SAP Application。然后可以看到,一个表和应用相匹配的树状图,根据当前进行的操作内容,查找对应的表。

 

3,CDHDR and CDPOS。这两个表记录了SAP内所有的修改记录:CDHDR是change document header;CDPOS是change document position;一个是header信息,一个是Item信息

如果想知道某个字段在哪个表中,可以去修改这个字段,然后用SE16到CDHDR中查找你刚才的更改记录,输入Name,Date,Time可以缩小范围:

 

然后根据显示出的Change doc. object,Object Value和Document number去CDPOS中查找细节,就可以找到更改的表了

4,ST05。SQL Trace。SQL trace记录了在系统里所做的操作访问了数据库中的那些表。点击Active Trace后,进行和要查找的字段相关的操作后,再Deactive trace,然后Display Trace查看刚才操作的过程中访问过哪些表。有的时候,访问的表很多,但是多数不是想要找的,所以需要花时间去分析。

以上四个是我常用的方法,而且我觉得很有效了。这四个方法在Dennis Barrett的《18 Techniques for Locating the Underlying Data of a Screen Field》里都有提及,他提到的其余的方法没有用过,不做评价了。

不过有一段hint还是不错的:

Many transactions have header information

and detail or item lines in separate linked tables.
Remember that R/3 is a German product. “Kopf” is
German for “head,” and “position” can be interpreted
in German as “detail” or “item.” You’ll often find
header/item table pairs with “K” and “P” in their
names, such as VBAK and VBAP. When you are
looking for linked tables containing the data for a
transaction, this tip may help you identify one if
you have the other.

 

http://itlingm.blog.51cto.com/1774993/562099

转载于:https://www.cnblogs.com/JackSun/archive/2012/03/06/2382471.html

你可能感兴趣的文章
日常报错
查看>>
list-style-type -- 定义列表样式
查看>>
hibernate生成表时,有的表可以生成,有的却不可以 2014-03-21 21:28 244人阅读 ...
查看>>
mysql-1045(28000)错误
查看>>
Ubuntu 编译出现 ISO C++ 2011 不支持的解决办法
查看>>
1.jstl c 标签实现判断功能
查看>>
Linux 常用命令——cat, tac, nl, more, less, head, tail, od
查看>>
超详细的Guava RateLimiter限流原理解析
查看>>
VueJS ElementUI el-table 的 formatter 和 scope template 不能同时存在
查看>>
Halcon一日一练:图像拼接技术
查看>>
Swift - RotateView
查看>>
iOS设计模式 - 中介者
查看>>
centos jdk 下载
查看>>
HDU 1028 Ignatius and the Princess III(母函数)
查看>>
(转)面向对象最核心的机制——动态绑定(多态)
查看>>
token简单的使用流程。
查看>>
django创建项目流程
查看>>
UIActionSheet 修改字体颜色
查看>>
Vue 框架-01- 入门篇 图文教程
查看>>
Spring注解之@Lazy注解,源码分析和总结
查看>>