摘要: *& * *& Report RSDEMO_CONTEXT_MENU_LIST * *& * *& * *& * *& * *& * REPORT RSDEMO_CONTEXT_MENU_LIST . tables spfli. *set pf-status 'LIST'. select * fro 阅读全文
posted @ 2020-09-11 10:58 姬如千泷 阅读(539) 评论(0) 推荐(0)
摘要: REPORT RSDEMO02. * demostrates the use of table controls * unsolved problems: attributes left_col and v_scroll do not work * correctly TABLES: SPFLI. 阅读全文
posted @ 2020-09-11 10:50 姬如千泷 阅读(762) 评论(0) 推荐(0)
摘要: ALV 列表和按钮 效果 源代码 PROGRAM bcalvc_tb_menu_with_def_but. *&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 阅读全文
posted @ 2020-09-11 10:46 姬如千泷 阅读(692) 评论(0) 推荐(0)
摘要: BC_CONTROLS_TUTORIAL 效果 代码 REPORT bc_controls_tutorial. * * This report is the result of all exercises described in the * "Controls Tutorial". * * *( 阅读全文
posted @ 2020-09-11 10:25 姬如千泷 阅读(514) 评论(0) 推荐(0)
摘要: program sap_picture_demo. set screen 200. TYPE-POOLS cndp. ************************************************************************ * CLASS c_event_re 阅读全文
posted @ 2020-09-11 10:21 姬如千泷 阅读(218) 评论(0) 推荐(0)
摘要: 1 *& * 2 *& Report RSDEMO_HTML_VIEWER * 3 *& * 4 *& * 5 *& * 6 *& * 7 *& * 8 9 REPORT rsdemo_html_viewer . 10 DATA container TYPE REF TO cl_gui_custom 阅读全文
posted @ 2020-09-11 10:19 姬如千泷 阅读(558) 评论(0) 推荐(0)
摘要: SAP List Tree 效果 源代码 *& * *& Modulpool SAPSIMPLE_TREE_CONTROL_DEMO * *& * *& * *& * *& * *& * INCLUDE TLIST_TREE_CONTROL_DEMOTOP. INCLUDE TLIST_TREE_C 阅读全文
posted @ 2020-09-11 10:05 姬如千泷 阅读(1336) 评论(0) 推荐(0)
摘要: 1 *& * 2 *& Report RSDEMO_DRAG_DROP_EDIT_TREE * 3 *& * 4 *& * 5 *& * 6 *& * 7 *& * 8 9 REPORT rsdemo_drag_drop_edit_tree . 10 DATA ok_code TYPE sy-uco 阅读全文
posted @ 2020-09-11 10:02 姬如千泷 阅读(295) 评论(0) 推荐(0)
摘要: *& * *& Include SIMPLE_TREE_CONTROL_DEMOTOP * *& * *& * REPORT SAPSIMPLE_TREE_CONTROL_DEMO MESSAGE-ID TREE_CONTROL_MSG. CLASS LCL_APPLICATION DEFINITI 阅读全文
posted @ 2020-09-11 09:09 姬如千泷 阅读(219) 评论(0) 推荐(0)
摘要: code as bellow *& * *& Include COLUMN_TREE_CONTROL_DEMOTOP * *& * *& * REPORT SAPCOLUMN_TREE_CONTROL_DEMO MESSAGE-ID TREE_CONTROL_MSG. CLASS LCL_APPLI 阅读全文
posted @ 2020-09-11 09:06 姬如千泷 阅读(293) 评论(0) 推荐(0)
摘要: Effect picture Code as bellow *& * *& Include TLIST_TREE_CONTROL_DEMOTOP * *& * *& * REPORT SAPTLIST_TREE_CONTROL_DEMO MESSAGE-ID TREE_CONTROL_MSG. CL 阅读全文
posted @ 2020-09-11 08:59 姬如千泷 阅读(203) 评论(0) 推荐(0)
摘要: REPORT zjw_test01. CONSTANTS: gc_text_line_length TYPE i VALUE 72. TYPES: text_table_type(gc_text_line_length) TYPE c OCCURS 0. DATA: gv_splitter TYPE 阅读全文
posted @ 2020-09-10 15:47 姬如千泷 阅读(595) 评论(0) 推荐(0)
摘要: 运行SE30 选中Program,点击Excute 点击运行 分析结果 阅读全文
posted @ 2020-09-10 09:05 姬如千泷 阅读(800) 评论(0) 推荐(0)
摘要: Syntax ... ( name1, name2, ... ) ... Effect Defines the element names of a CDS view in ABAP CDS in a name list. The specified names name1, name2, ... 阅读全文
posted @ 2020-08-13 15:43 姬如千泷 阅读(268) 评论(0) 推荐(0)
摘要: Syntax ... @annotation ... Effect Specifies Annotation annotation in the definition of a CDS view of the ABAP CDS before statement DEFINE VIEW. The ch 阅读全文
posted @ 2020-08-13 15:36 姬如千泷 阅读(358) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-08-13 15:20 姬如千泷 阅读(147) 评论(0) 推荐(0)
摘要: Syntax ... annotation[.annotation1[.annotation2]][:value] ... Effect Annotation that can be specified at predefined positions within a CDS source code 阅读全文
posted @ 2020-08-13 13:33 姬如千泷 阅读(977) 评论(0) 推荐(0)
摘要: The following sections summarize the language elements of the DDL and DCL of the ABAP CDS, arranged by topics. •DDL ◦CDS Views ◦CDS View Enhancements 阅读全文
posted @ 2020-08-13 13:06 姬如千泷 阅读(354) 评论(0) 推荐(0)
摘要: The general syntax rules for the DDL and the DCL in ABAP CDS are: Keywords Keywords must be all uppercase, all lowercase, or in lowercase with an uppe 阅读全文
posted @ 2020-08-13 10:42 姬如千泷 阅读(900) 评论(0) 推荐(0)
摘要: REPORT demo_loop_group_by_random. CLASS demo DEFINITION. PUBLIC SECTION. CLASS-METHODS: main, class_constructor. PRIVATE SECTION. CLASS-DATA numbers T 阅读全文
posted @ 2020-08-12 14:08 姬如千泷 阅读(278) 评论(0) 推荐(0)