FIELD-SYMBOLS是字段符号,类似于FOXPRO的宏,FOXPRO能把一段程序存入一个字符串中,再通过某种方式使该字符串运行。SAP的FIELD-SYMBOLS,把一个结构定义分配给字段符号,通过字段符号来引用结构中的成员。
【例3.1】
REPORT YTEST001.
DATA:BEGIN OF MAN,
NAME(30) TYPE C,
HIGH TYPE P DECIMALS 2,
WEIGHT TYPE P DECIMALS 2,
END OF MAN.
FIELD-SYMBOLS <FSA> LIKE MAN.
DATA MAN1 LIKE MAN.
MAN1-NAME = '张林'.
MAN1-HIGH = '1.78'.
MAN1-WEIGHT = 140.
ASSIGN MAN1 TO <FSA>.
WRITE: / <FSA>-NAME,
<FSA>-HIGH,
<FSA>-WEIGHT.
分享到:
相关推荐
动态数据对象是SAP程序设计中的一个重要概念,主要包括字段符号(field-symbols)和数据引用(data references)两种类型。与普通数据对象相比,动态数据对象的主要特点在于其寻址方式的不同。普通数据对象的寻址方式是...
在《第三章 ABAP语法示例.pdf》中,作者通过一系列具体的例子介绍了ABAP语言的一些核心概念和技术应用,包括字段符号(field-symbols)的使用、字符串处理以及内表操作等。这些知识点对于初学者理解和掌握ABAP编程语言...
##### 3.1 字段符号和通用数据类型 (Field-Symbols and Generic Data Types) 字段符号和通用数据类型是ABAP中用于处理不同类型数据的重要工具。在SAP NetWeaver 7.0中,这些概念得到了扩展和完善,使得开发者能够...
System Organization 3.0 - Chapter Overview 3.1 - The Basic System Components 3.1.1 - The System Bus 3.1.1.1 - The Data Bus 3.1.1.2 - The Address Bus 3.1.1.3 - The Control Bus ...
* 1.0 Original program created * 2.0 Modified selection texts so they are now stored ...* Fixed issue whereby field symbols displayed incorrectly within * HTML documents. * 4.00 Re-structured program.
Messaging size field. Modified testbench to properly check byte count for messaging type packets. - 8-bit SWrite transactions usign 16-bit deviceIDs suffer lost eofs - Version fixed : v4.4 - CR#...
3.1 Syntax of source lines in assembly language 3.2 Literals 3.3 ELF sections and the AREA directive 3.4 An example ARM assembly language module 4 Writing ARM Assembly Language 4.1 About the Unified ...
ABAP 中的 Field symbols 是一种动态数据对象,用于描述字段符号。 12.2 Data reference ABAP 中的 Data reference 是一种动态数据对象,用于描述数据引用。 十三、ABAP 模式按钮 十三、ABAP 子程序 十四...
Statistics is an important field with applications in many areas. This module includes functions for statistical distributions and hypothesis testing. ##### 5.27 ODE Ordinary differential equations ...
1.3.5 Symbols ......................................................................................................................................... 13 1.4 Architecture ...............................