博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ABAP CDS ON HANA-(10)項目結合して一つ項目として表示
阅读量:4321 次
发布时间:2019-06-06

本文共 641 字,大约阅读时间需要 2 分钟。

Numeric Functions
ABS(arg) 
CEIL(arg)
DIV(arg1, arg2)
DIVISION(arg1, arg2, dec)
FLOOR(arg)
MOD(arg1, arg2)
ROUND(arg, pos)
String Functions
CONCAT(arg1, arg2)
CONCAT(arg1, arg2, space_cnt)
LPAD(arg, len, src)
REPLACE(arg1, arg2, arg3)
SUBSTRING(arg, pos, len)

CDS View

1


@AbapCatalog.sqlViewName: ‘ZFLIGHT_VW’@AbapCatalog.compiler.compareFilter: true@AccessControl.authorizationCheck: #CHECK@EndUserText.label: ‘Demo View SQL Functions’define view Zflight_View as select from spfli as s{key s.carrid, key s.connid, concat_with_space(s.cityfrom, s.cityto, 4 ) as City_From_To}

  


Data Preview

2

 

转载于:https://www.cnblogs.com/yjyongil/p/10496198.html

你可能感兴趣的文章
修改root远程ssh登录权限
查看>>
保存cookies
查看>>
iOS酷炫动画效果合集
查看>>
[CSS] Scale on Hover with Transition
查看>>
状压DP(挑战程序设计竞赛)
查看>>
POJ 2386
查看>>
腾讯云“动态加速”与“CDN”的区别——浅谈对“动态加速”的理解(可能有误)...
查看>>
Spring源码学习笔记(5)
查看>>
Objective-C 日记⑧ 对象初始化
查看>>
mybatis中#{}与${}的区别
查看>>
RTP/RTSP/RTCP的区别和应用
查看>>
Adaboost算法简介
查看>>
在【此电脑】隐藏【设备和驱动器】中不需要的图标
查看>>
【Leetcode】【Medium】Palindrome Partitioning
查看>>
51单片机 | 实现数码管动态显示
查看>>
十进制向十六进制的转换
查看>>
练习JsonJquery查找数据
查看>>
如何使用Goolge Timeline工具
查看>>
POJ3667 Hotel
查看>>
深入浅出 Java Concurrency (16): 并发容器 part 1 ConcurrentMap (1)[转]
查看>>