摘要:
一、ALV刷新屏幕 DATA:cl_ref_grid TYPE REF TO cl_gui_alv_grid. FORM frm_fresh_screen . DATA: ls_stbl TYPE lvc_s_stbl. ls_stbl-row = 'X'." 基于行的稳定刷新 ls_stbl-co 阅读全文
摘要:
1、问题 今日Linux环境突然出问题,ping本机IP都不行,重新网卡出现以下错误: [ck@localhost ~]$ sudo systemctl start network.serviceJob for network.service failed because the control p 阅读全文
摘要:
问题:eclipse提示source not found 解决办法: 1.解压hadoop-2.9.0-src.tar得到文件夹hadoop-2.9.0-src 2.把文件夹hadoop-2.9.0-src压缩成hadoop-2.9.0-src(格式为.zip)3.eclipse引用文件(1)单击A 阅读全文
摘要:
问题:[org.apache.hadoop.util.Shell] - Did not find winutils.exe: {} java.io.FileNotFoundException: Could not locate Hadoop executable: D:\soft\hadoop\ha 阅读全文
摘要:
1.需求 处理前: 多行合并后: 2.实现 select LISTAGG(begindate,chr(13)) WITHIN GROUP (ORDER BY begindate desc) from hi_psndoc_work where pk_psndoc='000111100000000JJO 阅读全文
摘要:
1.程序结构 REPORT ZMMR_TEST2 NO STANDARD PAGE HEADING LINE-SIZE 40 MESSAGE-ID zmm01. NO STANDARD PAGE:设置为无基本标题。LINE-SIZE 40 :设置报表宽度为40。MESSAGE-ID zmm01 :设 阅读全文
摘要:
一、内表定义. 1.1参照表类型创建内表——先定义类型,参照类型定义内表. TYPES:BEGIN OF s_type, no(6) TYPE c, name(10) TYPE c, part(16) TYPE c, END OF s_type. DATA:gt_itab TYPE STANDARD 阅读全文