数据声明中的 % 符号是什么意思?

Whats the meaning of the % symbol in a data declaration?

我在 ABAP 代码中找到了这个数据声明。有谁知道这个 % 是什么意思?

Data: %rlmob type str_mob 

无非是 ABAP 对象之外的任何其他字符 ("The name must start with a letter or an underscore (_). Only outside of ABAP objects can the name also start with a different character.")。建议使用 ABAP 对象,因此不推荐使用 %。从历史上看,SAP 也经常使用它来命名 "system"(即非常低级的 SAP 程序)变量、类型和任何其他类型的符号。