abap中,select single 与 select ... endselect的区别?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了abap中,select single 与 select ... endselect的区别?相关的知识,希望对你有一定的参考价值。
SELECT SINGLE是查询单条记录,select ... endselect 是循环取数据例如:表table里有 A 字段
1
2
3
3条数据,用SINGLE的话,只能取出第一条,用ENDSELECT的话,它是循环着全部取出来,一行一行的取 参考技术A select single 查询 到一行数据之后就会终止查询 跳出来。
select endselect在代码里面添加一个断点F5 就会看到代码在select于endselect之间循环执行。每次出来一行数据,这种方式在list的报表中比较常见。
另外,在ALV中,常用select …… into corresponding fields of table * from。
这样子F5直接跳过查询语句,所有的数据行都出来了。
实现select2与jqGrid联动动态重新加载数据
1.select2设置
html:
<select id="sel" class="select2"></select>
js:
var selData = [
id: 1, text: 'ER',
id: 2, text: ‘LP',
id: 3, text: ‘LT',
];
$("#sel").select2(
data: selData
);
补充:select2的渲染效果实现必须在html页面标签加载完成后,js中定义.select2()激活方法应尽量在底部
2.jqGrid — jqGrid定义在modal框中,每次点击按钮打开modal,均根据select2对应ID值,动态加载user数据
html:
<div class="jqGrid-wrapper">
<table id="grid-table"></table>
<div id="grid-pager"></div>
</div>
js:
var textModal = $(".getUserModal"); //整个modal的ID
var jqGridTable = $("#grid-table");
var appId = $("#sel option:selected").val(); //获取select2显示内容对应ID
textModal.modal('show');
textModal.on('shown.bs.modal',function ()
jqGridTable.jqGrid(
url: 接口URL,
datatype: "json",
mtype:'POST',
styleUI:'Bootstrap',
colModel: [
label: 'id', name: 'id', width: 40, align:"center",hidden:true,title:false,
label: 'Name', name: 'name', width: 70,align:"center",title:false
],
postData:
"appId":appId
,
jsonReader:
root:"data.contentApproval”, //获取返回json参数中对应的user数据
repeatitems : false
,
viewrecords: true,
width: 450,
height: 230,
rowNum: 10,
rownumWidth: 20,
multiselect: true,
autowidth:true,
pager: "#grid-pager"
);
);
jqGridTab.jqGrid('setGridParam',
url: 接口URL(同上),
datatype : 'json',
postData:
"appId":appId
,
).trigger('reloadGrid');
以上是关于abap中,select single 与 select ... endselect的区别?的主要内容,如果未能解决你的问题,请参考以下文章
ABAP:SELECT SINGLE当没有发现数据时不会更改INTO后的变量