博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ABAP Append Structure & ABAP Include Structure
阅读量:5039 次
发布时间:2019-06-12

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

Structure is a database object which is a group of fields which can be used in multiple tables in SAP ABAP. The advantage of structure is that it is reusable in multiple tables. The difference between the table and structure is , structure can hold single record only where as a table can hold multiple record.

In this document, you will find step-by-step guide to structure implementation in two ways:

  • Include structure: This option is used only for Custom Tables (i. e. the name starting with Z or Y). These include structure can be reusable.
  • Append structure:This option used only with STANDARD SAP TABLES. The Append Structures are not reusable
1) Where do I manage this Include Structure (SE11 or SBIW)?
You can manage the include structure both places, cause you jump from SBIW into SE11.
2) Is Include Structure the same thing as Append Structure?
An include structure is NOT the same as an Append structure. I tried in a datasource to add a field via an append structure, however I didn't see the
field in the data source. When I changed it to an Include structure , everything was ok.

转载于:https://www.cnblogs.com/jefflu2012/p/4419268.html

你可能感兴趣的文章
前端chrome浏览器调试总结
查看>>
获取手机验证码修改
查看>>
数据库连接
查看>>
python中数据的变量和字符串的常用使用方法
查看>>
等价类划分进阶篇
查看>>
delphi.指针.PChar
查看>>
Objective - C基础: 第四天 - 10.SEL类型的基本认识
查看>>
java 字符串转json,json转对象等等...
查看>>
极客前端部分题目收集【索引】
查看>>
第四天 selenium的安装及使用
查看>>
关于js的设计模式(简单工厂模式,构造函数模式,原型模式,混合模式,动态模式)...
查看>>
KMPnext数组循环节理解 HDU1358
查看>>
android调试debug快捷键
查看>>
【读书笔记】《HTTP权威指南》:Web Hosting
查看>>
Inoodb 存储引擎
查看>>
数据结构之查找算法总结笔记
查看>>
Linux内核OOM机制的详细分析
查看>>
Android TextView加上阴影效果
查看>>
Requests库的基本使用
查看>>
C#:System.Array简单使用
查看>>