当前位置:网站首页>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 .
边栏推荐
- 机械臂速成小指南(十):可达工作空间
- Delete data in SQL
- Redis源码学习(31),字典学习,dict.c(一)
- 使用 BR 备份 TiDB 集群到 GCS
- Restcloud ETL Community Edition June featured Q & A
- How to customize the shortcut key for latex to stop running
- 维护万星开源向量数据库是什么体验
- VHDL implementation of single cycle CPU design
- 卡尔曼滤波-1
- termux设置电脑连接手机。(敲打命令贼快),手机termux端口8022
猜你喜欢
Simple implementation of AVL tree insertion and verification operations
How to detect whether the MySQL code runs deadlock +binlog view
The most complete learning rate adjustment strategy in history LR_ scheduler
【mysql】mysql中行排序
10 ways of interface data security assurance
机械臂速成小指南(十):可达工作空间
复杂因子计算优化案例:深度不平衡、买卖压力指标、波动率计算
海思3559万能平台搭建:RTSP实时播放的支持
VHDL implementation of arbitrary size matrix multiplication
[security attack and Defense] how much do you know about serialization and deserialization?
随机推荐
太方便了,钉钉上就可完成代码发布审批啦!
Leetcode: interview question 17.24 Maximum cumulative sum of submatrix (to be studied)
Class常量池与运行时常量池
Open3d mesh filtering
U.S. Air Force Research Laboratory, "exploring the vulnerability and robustness of deep learning systems", the latest 85 page technical report in 2022
Restcloud ETL Community Edition June featured Q & A
1200.Minimum Absolute Difference
Code quality management
Basic concepts of Huffman tree
Kalman filter-1
21. (article ArcGIS API for JS) ArcGIS API for JS rectangular acquisition (sketchviewmodel)
Adaptive non European advertising retrieval system amcad
Search of linear table
2022夏每日一题(一)
一些常用软件相关
Tencent cloud native database tdsql-c was selected into the cloud native product catalog of the Academy of communications and communications
手机号国际区号JSON格式另附PHP获取
MySQL storage engine
Set static IP for raspberry pie
cuda编程