当前位置:网站首页>ABAP dynamic inner table grouping cycle
ABAP dynamic inner table grouping cycle
2022-07-07 03:59:00 【Miserable youth】
stay ABAP When dynamic inner table grouping loop is used in , If direct at end of or group by Will report a mistake .
At end of :
LOOP AT <dy_table> ASSIGNING <dyn_wa>.
AT END OF belnr.
ENDAT.
ENDLOOP.

Group by:
LOOP AT <dy_table> ASSIGNING <dyn_wa> GROUP BY ( belnr = <dyn_wa>-belnr ) ASCENDING ASSIGNING FIELD-SYMBOL(<group>).
ENDLOOP.

This is because <dyn_wa> It's a generic type , Only assignging Type only after .
resolvent :
LOOP AT <dy_table> ASSIGNING <dyn_wa>.
ASSIGN COMPONENT 'BELNR' OF STRUCTURE <dyn_wa> TO <fs_belnr>.
AT END OF <fs_belnr>.
ENDAT.
ENDLOOP.
Close test effectively .
边栏推荐
- C task expansion method
- 19. (ArcGIS API for JS) ArcGIS API for JS line acquisition (sketchviewmodel)
- 未来发展路线确认!数字经济、数字化转型、数据...这次会议很重要
- 我的勇敢对线之路--详细阐述,浏览器输入URL发生了什么
- SQL injection -day15
- 2022年上半年HIT行业TOP50
- [development software] tilipa Developer Software
- 20. (ArcGIS API for JS) ArcGIS API for JS surface collection (sketchviewmodel)
- Clock in during winter vacation
- How to manage the expiration of enterprise distribution certificates- How to manage Enterprise Distribution certificate expiration?
猜你喜欢
![[safe office and productivity application] Shanghai daoning provides you with onlyoffice download, trial and tutorial](/img/58/d869939157669891f369fb274d32af.jpg)
[safe office and productivity application] Shanghai daoning provides you with onlyoffice download, trial and tutorial

QT 项目 表格新建列名称设置 需求练习(找数组消失的数字、最大值)
![[dpdk] dpdk sample source code analysis III: dpdk-l3fwd_ 001](/img/f6/dced69ea36fc95ef84bb546c56dd91.png)
[dpdk] dpdk sample source code analysis III: dpdk-l3fwd_ 001

Calculation of time and space complexity (notes of runners)
![[leetcode] 450 and 98 (deletion and verification of binary search tree)](/img/89/dd7ac0d886e6bbca5a439386c576bb.jpg)
[leetcode] 450 and 98 (deletion and verification of binary search tree)

20. (ArcGIS API for JS) ArcGIS API for JS surface collection (sketchviewmodel)

Kalman filter-1

Some thoughts on cross end development of kbone and applet

未来发展路线确认!数字经济、数字化转型、数据...这次会议很重要

Free PHP online decryption tool source code v1.2
随机推荐
使用 BR 备份 TiDB 集群到 GCS
维护万星开源向量数据库是什么体验
qt-线程等01概念
海思3559万能平台搭建:RTSP实时播放的支持
Que savez - vous de la sérialisation et de l'anti - séquence?
预处理——插值
机器学习笔记 - 使用机器学习进行鸟类物种分类
Set static IP for raspberry pie
复杂因子计算优化案例:深度不平衡、买卖压力指标、波动率计算
太方便了,钉钉上就可完成代码发布审批啦!
Tflite model transformation and quantification
Hisilicon 3559 universal platform construction: RTSP real-time playback support
Introduction to opensea platform developed by NFT trading platform (I)
Hongmi K40S root gameplay notes
1200.Minimum Absolute Difference
The true face of function pointer in single chip microcomputer and the operation of callback function
Kalman filter-1
使用 BR 恢复 GCS 上的备份数据
Arduino droplet detection
19. (ArcGIS API for JS) ArcGIS API for JS line acquisition (sketchviewmodel)