Loading

CDS标准视图:付款锁定原因 I_PaymentBlockingReason

视图名称:付款锁定原因 I_PaymentBlockingReason

视图类型:基础视图

视图代码:

点击查看代码
//Documentation about annotations can be found at http://help.sap.com searching for CDS annotations //Inserted by VDM CDS Suite Plugin
@ObjectModel.usageType.sizeCategory: #S   //Inserted by VDM CDS Suite Plugin
@ObjectModel.usageType.serviceQuality: #A //Inserted by VDM CDS Suite Plugin
@ObjectModel.usageType.dataClass: #CUSTOMIZING //Inserted by VDM CDS Suite Plugin
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE , #CDS_MODELING_ASSOCIATION_TARGET , #SQL_DATA_SOURCE ]
@EndUserText.label: 'Payment Blocking Reason'
@Analytics: { dataCategory: #DIMENSION }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIPAYBLOCKREAS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'PaymentBlockingReason'
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Search.searchable: true

define view I_PaymentBlockingReason
  as select from t008
  association [0..*] to I_PaymentBlockingReasonText as _Text on $projection.PaymentBlockingReason = _Text.PaymentBlockingReason
{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
  key cast (zahls as farp_dzlspr) as PaymentBlockingReason,
      _Text
};

事务代码:SPRO

视图结构:

字段名称 技术名称
项目付款冻结 PAYMENTBLOCKINGREASON

posted @ 2025-01-09 13:13  观兴  阅读(26)  评论(0)    收藏  举报