当前位置:网站首页>ABAP Dynamic Inner table Group cycle
ABAP Dynamic Inner table Group cycle
2022-07-07 03:59:00 【Un garçon horrible.】
InABAPLors de l'utilisation d'une boucle dynamique de regroupement de tableaux intérieurs,Si directementat end of Ougroup by Des erreurs seront signalées.
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.
C'est parce que<dyn_wa>Est un type générique,SeulementassigngingIl n'y a pas de type avant.
Solutions:
LOOP AT <dy_table> ASSIGNING <dyn_wa>.
ASSIGN COMPONENT 'BELNR' OF STRUCTURE <dyn_wa> TO <fs_belnr>.
AT END OF <fs_belnr>.
ENDAT.
ENDLOOP.
Le test de proximité est efficace.
边栏推荐
- [security attack and Defense] how much do you know about serialization and deserialization?
- 数据的存储
- Delete data in SQL
- R data analysis: how to predict Cox model and reproduce high score articles
- U.S. Air Force Research Laboratory, "exploring the vulnerability and robustness of deep learning systems", the latest 85 page technical report in 2022
- 大白话高并发(二)
- 使用 BR 恢复 GCS 上的备份数据
- PHP 实现根据概率抽奖
- QT 使用QToolTip 鼠标放上去显示文字时会把按钮的图片也显示了、修改提示文字样式
- Huawei and Xiaomi "copy each other"
猜你喜欢
随机推荐
codeforces每日5题(均1700)-第七天
Machine learning notes - bird species classification using machine learning
How to manage the expiration of enterprise distribution certificates- How to manage Enterprise Distribution certificate expiration?
Force buckle ----- path sum III
HW notes (II)
自适应非欧表征广告检索系统AMCAD
SSL证书部署
Baidu map JS development, open a blank, bmapgl is not defined, err_ FILE_ NOT_ FOUND
1.19.11.SQL客户端、启动SQL客户端、执行SQL查询、环境配置文件、重启策略、自定义函数(User-defined Functions)、构造函数参数
My brave way to line -- elaborate on what happens when the browser enters the URL
Redis configuration and optimization of NoSQL
QT item table new column name setting requirement exercise (find the number and maximum value of the array disappear)
QT opens a file and uses QFileDialog to obtain the file name, content, etc
维护万星开源向量数据库是什么体验
QT 使用QToolTip 鼠标放上去显示文字时会把按钮的图片也显示了、修改提示文字样式
二叉搜索树的实现
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
PIP download only, not install
idea gradle lombok 报错集锦