【文件属性】:
文件名称:ABAP动态内表的收集
文件大小:158KB
文件格式:DOCX
更新时间:2014-01-09 12:28:43
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 .
申明:文档资源来源于网络博客!