FIORI报表

@AbapCatalog.sqlViewName: 'ZV_ZXK3'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'ZDDL_ZXK3'
@OData.publish: true
define view ZDDL_ZXK3
  as select from ekpo
            join ekko
            on ekpo.ebeln = ekko.ebeln
{
      @UI.selectionField: [{position: 10}]      //选择屏幕
      @UI.lineItem: [{position:10 }]            //报表行项目
  key ekpo.ebeln,
      @UI.selectionField: [{position: 20}]      //选择屏幕
      @UI.lineItem: [{position:20 }]            //报表行项目
  key ekpo.ebelp,
      @UI.selectionField: [{position: 30}]      //选择屏幕
      @UI.lineItem: [{position:30 }]            //报表行项目
      ekpo.matnr,
      @UI.lineItem: [{position:40 }]            //报表行项目
      ekpo.bukrs,
      @UI.lineItem: [{position:50 }]            //报表行项目
      @DefaultAggregation: #SUM                 //默认聚合函数:求和
      @Semantics.amount.currencyCode: 'waers'   //金额货币代码
      ekpo.netwr,
      @UI.identification: [{position:10 }]      //行项目的一般信息
      ekpo.menge,
      @UI.identification: [{position:20 }]      //行项目的一般信息
      ekpo.meins,
      @UI.identification: [{position:30 }]      //行项目的一般信息
      @Semantics.amount.currencyCode: 'waers'   //金额货币代码
      ekpo.netpr,
      @Semantics.currencyCode: true             //货币代码
      ekko.waers
}
where ekko.ebeln = '4500000002'
image.png

image.png

image.png

你可能感兴趣的:(FIORI报表)