1.sap中的动态字段其实类似c#里面的指针,都是指向的地址. 只是写法不同,sap 中的field-symbols就是类似指针. , b TYPE i. FIELD-SYMBOLS <fs> TYPE i. ASSIGN b TO <fs>. <fs> = a. WRITE: 'b =',b. 现在b的值即为a的值. 2.下面记录一下,我在工作中使用到field-symbol 的情况. 背景介绍: 用户发送数据过来,有wbs编码,开始日期,结束日期, 我们需要在s…
Description The Fields object represents a collection of columns in a table. The term field is synonymous with column. Each table in a database has an ordered collection of fields, there is always at least one field in a table. The ordered collection…