SAP ABAP动态内表总结

时间:2014-01-08 15:44:05
【文件属性】:
文件名称:SAP ABAP动态内表总结
文件大小:191KB
文件格式:DOCX
更新时间:2014-01-08 15:44:05
SAP ABAP 动态内表 不知道为什么,被加密了。 重新再发另外一份! type-pools: slis. field-symbols: type standard table, ” 内表结构 , ” 表头 . ” 项 data: dy_table type ref to data, dy_line type ref to data, ” 行 xfc type lvc_s_fcat, ” 列结构 ifc type lvc_t_fcat. call method cl_alv_table_create=>create_dynamic_table exporting it_fieldcatalog = ifc importing ep_table = dy_table. assign dy_table->* to . create data dy_line like line of . assign dy_line->* to .

网友评论

  • 谢谢,对我学心SAP ABAP 开发很有帮助。