当前位置:网站首页>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 .
边栏推荐
- tflite模型转换和量化
- SSL certificate deployment
- 学习使用js把两个对象合并成一个对象的方法Object.assign()
- 接口数据安全保证的10种方式
- About Confidence Intervals
- Vernacular high concurrency (2)
- Codeworks 5 questions per day (1700 average) - day 7
- 22. (ArcGIS API for JS) ArcGIS API for JS Circle Collection (sketchviewmodel)
- .net中 接口可以有默认实现了
- How to manage the expiration of enterprise distribution certificates- How to manage Enterprise Distribution certificate expiration?
猜你喜欢

Tencent cloud native database tdsql-c was selected into the cloud native product catalog of the Academy of communications and communications

海思3559万能平台搭建:RTSP实时播放的支持

Top 50 hit industry in the first half of 2022

Do you choose pandas or SQL for the top 1 of data analysis in your mind?

Preprocessing - interpolation

再AD 的 界面顶部(菜单栏)创建常用的快捷图标

史上最全学习率调整策略lr_scheduler

21. (article ArcGIS API for JS) ArcGIS API for JS rectangular acquisition (sketchviewmodel)

Ggplot facet detail adjustment summary

【mysql】mysql中行排序
随机推荐
Native MySQL
On file uploading of network security
Enter the rough outline of the URL question (continuously updated)
接口数据安全保证的10种方式
Leetcode: interview question 17.24 Maximum cumulative sum of submatrix (to be studied)
About Tolerance Intervals
三重半圆环进度条,直接拿去就能用
cuda编程
Confirm the future development route! Digital economy, digital transformation, data This meeting is very important
21. (article ArcGIS API for JS) ArcGIS API for JS rectangular acquisition (sketchviewmodel)
SSL证书部署
Implementation of binary search tree
Summer 2022 daily question 1 (1)
Redis源码学习(31),字典学习,dict.c(一)
Ubuntu 20 installation des enregistrements redisjson
Termux set up the computer to connect to the mobile phone. (knock the command quickly), mobile phone termux port 8022
[development software] tilipa Developer Software
. Net interface can be implemented by default
[leetcode] 450 and 98 (deletion and verification of binary search tree)
19. (ArcGIS API for JS) ArcGIS API for JS line acquisition (sketchviewmodel)