遇到的错误-内部表“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.
广告