APPEND 和.INCLUDE有什么区别

时间:2024-03-22 18:27:02

SAP提供了两种方法来增强table和structure的字段:
l Structures
l Customizing includes(CI includes)
这两种方式都可以给table增加字段而不需要改变table本身。Append structure只能分配给一个表,不过一个table可以分配多个structure。Append structure和include structure的区别在于指向table的方式不同。如果要通过include structure为表增加字段必须在table增加include行。Table指向的是substructure。而对于append structure它指向的是table所以对于table本身没有任何改变。对于append structure sap的开发人员不需要考虑任何事情。一个append structure只能分配给一个table,相反对于include structure,include语句必须在sap table或structure中存在。这必须被sap开发人员预留。

APPEND 和.INCLUDE有什么区别

可以通过append structure为table或structure增加自己的字段,。Append structure可以像其他的普通structure一样使用。
注意:

1:Pool和cluster table不能使用append structure
2:如果table有一个长字段比如LCHAR或LRAW,就不能使用append structure。这是因为长字段必须位于表的末尾。
3:append structure只能用于一张表,一张表可以有多个append structure
4: Append structure中的field name必须位于customer namespace,他们必须以YY或ZZ开头

Customizing Include:如果事先知道表需要增加客户自己的字段,sap开发人员可以通过Customizing include语句将这些字段包括进来。Customizing include可以用于多个表或structure。不存在的customizing include不会导致错误