当前位置:网站首页>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.
边栏推荐
- 史上最全学习率调整策略lr_scheduler
- 接口数据安全保证的10种方式
- Hisilicon 3559 universal platform construction: RTSP real-time playback support
- VHDL implementation of arbitrary size matrix addition operation
- PIP download only, not install
- Implementation of binary search tree
- Gpt-3 is a peer review online when it has been submitted for its own research
- 【安全攻防】序列化與反序列,你了解多少?
- [security attack and Defense] how much do you know about serialization and deserialization?
- 一些常用软件相关
猜你喜欢

自适应非欧表征广告检索系统AMCAD

Kalman filter-1

Kbone与小程序跨端开发的一些思考

22. (ArcGIS API for JS) ArcGIS API for JS Circle Collection (sketchviewmodel)

机械臂速成小指南(十):可达工作空间

cuda编程

Basic concepts of Huffman tree

tflite模型转换和量化

When QT uses qtooltip mouse to display text, the picture of the button will also be displayed and the prompt text style will be modified

什么是 BA ?BA怎么样?BA和BI是什么关系?
随机推荐
Implementation of binary search tree
[leetcode] 450 and 98 (deletion and verification of binary search tree)
学习使用js把两个对象合并成一个对象的方法Object.assign()
Hongmi K40S root gameplay notes
Create commonly used shortcut icons at the top of the ad interface (menu bar)
25. (ArcGIS API for JS) ArcGIS API for JS line modification line editing (sketchviewmodel)
Confirm the future development route! Digital economy, digital transformation, data This meeting is very important
Ggplot facet detail adjustment summary
Enter the rough outline of the URL question (continuously updated)
1.19.11.SQL客户端、启动SQL客户端、执行SQL查询、环境配置文件、重启策略、自定义函数(User-defined Functions)、构造函数参数
概率论公式
Enumeration general interface & enumeration usage specification
GPT-3当一作自己研究自己,已投稿,在线蹲一个同行评议
. Net interface can be implemented by default
SQL injection -day15
NoSQL之Redis配置与优化
[safe office and productivity application] Shanghai daoning provides you with onlyoffice download, trial and tutorial
ggplot 分面的细节调整汇总
Top 50 hit industry in the first half of 2022
Redis源码学习(31),字典学习,dict.c(一)