ABAP中ALV的FUNCTION参数问题~

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ABAP中ALV的FUNCTION参数问题~相关的知识,希望对你有一定的参考价值。

如下代码。。
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = g_repid
i_callback_user_command = 'USER_COMMAND'
is_layout = gs_layout
it_fieldcat = it_field
it_sort = it_sort
i_save = 'A'
it_events = i_events
i_callback_top_of_page = 'TOP_OF_PAGE'
TABLES
t_outtab = it_out_table.

小弟初学ABAP,在学习ALV的使用,其中参数很多在挨个学习。。。请问 i_save = 'A'.这个参数代表什么意思?怎么用?找了很多地方找不到好的解释,好心前辈帮帮忙~谢谢,另外,it_sort那个参数好象完整程序里虽然有建立变量it_sort,但并未具体指定排序字段和规则。。。在这里却用到了会有效果吗?或者说是否有默认值在作用?

参考技术A SAP ABAP4编程语言。
给个资料参考。

新的include:Y_ERIC_ALV_FUNCTION
*&---------------------------------------------------------------------*
*& Include Y_ERIC_ALV_FUNCTION
*&---------------------------------------------------------------------*
*===============================ALV=====================
type-pools: slis.
data: i_fieldcat type slis_t_fieldcat_alv with header line.
data: i_events type slis_t_event.
data: i_layout type slis_layout_alv.
data: g_variant like disvariant.
data: l_ls_event type slis_alv_event,
l_title type lvc_title,
l_window_titlebar like sy-title,
ls_hype type lvc_s_hype,
gt_hypetab type lvc_t_hype.
* p_char(1).
*&---------------------------------------------------------*
define add_field.
i_fieldcat-tabname = &1. "内表名称
i_fieldcat-fieldname = &2. "字段名,大写
i_fieldcat-seltext_m = &3. "要显示的字段名
i_fieldcat-outputlen = &4. "长度
i_fieldcat-input = &5. "
i_fieldcat-hotspot = &6.
append i_fieldcat.
end-of-definition.
define display_data.
******启动命令功能********************************
refresh i_events.
call function 'REUSE_ALV_EVENTS_GET'
EXPORTING
i_list_type = 0
IMPORTING
et_events = i_events.
read table i_events with key name = slis_ev_user_command
into l_ls_event.
if sy-subrc = 0.
move slis_ev_user_command to l_ls_event-form.
append l_ls_event to i_events.
endif.
********功能扩充**********************************
i_layout-zebra = 'X'. "颜色交替显示
i_layout-window_titlebar = l_window_titlebar. "抬头显示
i_layout-colwidth_optimize = 'X'. "优化
i_layout-group_change_edit = 'X'.
i_layout-f2code = &2.
call function 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = sy-repid
i_save = 'X'
is_variant = g_variant
i_grid_title = l_title "抬头
it_hyperlink = gt_hypetab
it_events = i_events "事件
it_fieldcat = i_fieldcat[] "显示的内容和描述
is_layout = i_layout
TABLES
t_outtab = &1 "数据表
EXCEPTIONS
program_error = 1
others = 2.
end-of-definition.
selection-screen skip 1.
...
参考技术B ABAP?不懂,对C,C++算法略懂,这个不清楚。帮不了

以上是关于ABAP中ALV的FUNCTION参数问题~的主要内容,如果未能解决你的问题,请参考以下文章

[SAP][ABAP] 关于用FUNCTION实现ALV中选择多列的实现

在SAP abap中。从第一个ALV显示根据筛选条件搜索出第二个ALV的显示数据(内表不一样)点击返回一直转圈

ABAP-动态ALV

求助:Web Dynpro for ABAP的ALV如何得到被选中的多行

abap开发中,在屏幕上怎样显示alv

abap 用的OO ALV 显示的 怎么可以修改标题