遇到的错误-内部表“OCCURS n”规范在 SAP 方法中缺失


你需要将 et_flights 参数定义为 SFLIGHT 类型。根据定义的方法,你将这种类型作为结构类型,同时还要声明透明表 SFLIGHT。

对于 et_flight,你应当使用带有 SFLIGHT 行结构的现有字典表类型。

你应当在类的定义中将 et_flights 声明在方法内作为一个私有成员或作为方法的返回值。

class myclass definition.
   public section.
   types ty_mytable type standard table of sflight.
   methods mymethod exporting mydata type ty_mytable.
endclass.

class myclass implementation.
    method mymethod.
       select * from sflight into table mydata.
    endmethod.
endclass.

更新日期:2020-06-13

2000+ 浏览量

启动您的职业生涯

通过完成本课程获得认证

开始
广告