有没有办法获取当前时间戳或当前日期?SQL 语法是date.now()
,但它在 ABAP CDS 中不起作用。有没有没有参数的解决方案?
问问题
8483 次
2 回答
3
在 7.50 中,您拥有tstmp_current_utctimestamp()
. 它可用于与其他时间戳进行比较,从而需要转换典型的日期和时间字段。例子:
// As our system is set to UTC already, these cast and calculation are OK awaiting ABAP 7.51. Add a day if time is 24:00.
case resb.bdztp when '240000'
then cast( cast( cast( concat( DATS_ADD_DAYS( resb.bdter, 1, 'NULL'), '000000' ) as abap.numc(14) ) as abap.dec( 15, 0 ) ) as timestamp )
else cast( cast( cast( concat( resb.bdter, resb.bdztp ) as abap.numc(14) ) as abap.dec( 15, 0 ) ) as timestamp )
end as RequirementDateTimeUTC,
消耗:
// Seconds since Requirement Date & Time for view isOverdue.
tstmp_seconds_between( resb.RequirementDateTimeUTC, tstmp_current_utctimestamp(), 'NULL') as SecondsSinceReqDateTimeUTC,
于 2019-11-05T14:09:50.547 回答
1
session 变量$session.system_date
在 CDS 视图中用于提供对当前系统日期的直接访问。
当前系统时间还没有会话变量,可以为 CDS 视图提供适当的输入参数。特殊注释@Environment.systemField
可以将 ABAP 系统字段sy-uzeit的值传递给此类型的参数。
于 2019-11-05T10:48:47.270 回答