当前位置:网站首页>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.
边栏推荐
- Construction of Hisilicon universal platform: color space conversion YUV2RGB
- 机械臂速成小指南(十):可达工作空间
- Open3d mesh filtering
- Basic concepts of Huffman tree
- The true face of function pointer in single chip microcomputer and the operation of callback function
- 【mysql】mysql中行排序
- ggplot 分面的细节调整汇总
- [development software] tilipa Developer Software
- Code quality management
- Implementation of map and set
猜你喜欢

【DPDK】dpdk样例源码解析之三:dpdk-l3fwd_001

Create commonly used shortcut icons at the top of the ad interface (menu bar)

Implementation of map and set

23. (ArcGIS API for JS) ArcGIS API for JS ellipse collection (sketchviewmodel)

QT 打开文件 使用 QFileDialog 获取文件名称、内容等

我的勇敢对线之路--详细阐述,浏览器输入URL发生了什么

Adaptive non European advertising retrieval system amcad

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

It's too convenient. You can complete the code release and approval by nailing it!

一些常用软件相关
随机推荐
太方便了,钉钉上就可完成代码发布审批啦!
Search of linear table
Ubuntu20 installation redisjson record
概率论公式
学习使用js把两个对象合并成一个对象的方法Object.assign()
红米k40s root玩机笔记
再AD 的 界面顶部(菜单栏)创建常用的快捷图标
大白话高并发(二)
How to customize the shortcut key for latex to stop running
ubuntu20安裝redisjson記錄
Kalman filter-1
Machine learning notes - bird species classification using machine learning
Enter the rough outline of the URL question (continuously updated)
One of oscp tools: dirsearch usage Encyclopedia
使用切面实现记录操作日志
My brave way to line -- elaborate on what happens when the browser enters the URL
Redis源码学习(31),字典学习,dict.c(一)
A 股指数成分数据 API 数据接口
[leetcode] 450 and 98 (deletion and verification of binary search tree)
Kotlin Android 环境搭建