当前位置:网站首页>ABAP ALV显示金额与导出金额不一致
ABAP ALV显示金额与导出金额不一致
2022-04-23 06:29:00 【Willie Y】
问题:
在日常开发中,从自定义数据表取出数据在ALV显示,其中包含金额、数量等字段。但ALV显示的金额与excel导出的金额相差了10倍。如下:

原因:
查看金额字段参考字段,如下:

CURR类型只能保留小数点后2位, 更改为DEC类型,可保存2位以上小数。且DEC类型不需要参考字段:

版权声明
本文为[Willie Y]所创,转载请带上原文链接,感谢
https://blog.csdn.net/willieyuan/article/details/123926786
边栏推荐
- Samplecamerafilter
- 03Scanner类的使用(控制台输入)
- 快排的练习
- Nodejs (four) character reading
- 踩坑日记:Unable to process Jar entry [module-info.class]
- Understanding the Role of Individual Units in a Deep Neural Networks(了解各个卷积核在神经网络中的作用)
- C#使用拉依达准则(3σ准则)剔除异常数据(.Net剔除一组数据中的奇异值)
- Event system (II) multicast events
- NodeJS(二)同步读取文件和异步读取文件
- 系统与软件安全研究(四)
猜你喜欢
随机推荐
Robust and Efficient Quadrotor Trajectory Generation for Fast Autonomous Flight
c#读取INI文件和向ini文件写入数据
ES6 uses recursion to implement deep copy
webflux文件上传下载
平面定义-平面方程
05数组的使用
解决在docker中部署mysql8, 密码正确但无法登陆MySQL问题
如何展示您的数字作品集:来自创意招聘人员的建议
Understanding the Role of Individual Units in a Deep Neural Networks(了解各个卷积核在神经网络中的作用)
庄懂的TA笔记(零)<铺垫与学习方法>
C SVG path parser of xamarin version
Judge whether the beginning and end of the string contain target parameters: startswith() and endswith() methods
Unity获取真实地理地图应用Terrain笔记
.NET 5 的新功能 What‘s new in .NET 5
TimelineWindow
js案例之求最大值,反转数组,冒泡排序
Dropping Pixels for Adversarial Robustness
Electronic builder package error: proxyconnect TCP: Dial TCP: 0: connectex
Mongodb starts warning information processing
Nodejs (I) event driven programming









