I_InvoiceListEnhancedFields

DDL: I_INVOICELISTENHANCEDFIELDS Type: view_entity COMPOSITE Package: VDM_SD_BIL_IL

Invoice List Enhanced Fields

I_InvoiceListEnhancedFields is a Composite CDS View that provides data about "Invoice List Enhanced Fields" in SAP S/4HANA. It reads from 1 data source (I_InvoiceList) and exposes 5 fields with key field InvoiceList. It has 2 associations to related views. Part of development package VDM_SD_BIL_IL.

Data Sources (1)

SourceAliasJoin Type
I_InvoiceList InvoiceList from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_InvoiceList _InvoiceList $projection.InvoiceList = _InvoiceList.InvoiceList
[0..1] I_InvoiceListRemuneration _Remuneration $projection.InvoiceList = _Remuneration.InvoiceList

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Analytics.technicalName ISDINVLSTENHFLD view
EndUserText.label Invoice List Enhanced Fields view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey InvoiceList view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #COMPOSITE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InvoiceList I_InvoiceList InvoiceList
TransactionCurrency I_InvoiceList TransactionCurrency
_Remuneration _Remuneration
_TransactionCurrency _TransactionCurrency
_InvoiceList _InvoiceList
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #('TRANSACTIONAL_DATA')

@Analytics.technicalName: 'ISDINVLSTENHFLD'

@EndUserText.label: 'Invoice List Enhanced Fields'

@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.representativeKey: 'InvoiceList'
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.usageType: { dataClass: #TRANSACTIONAL, serviceQuality: #C, sizeCategory: #L }

@VDM.viewType: #COMPOSITE

define view entity I_InvoiceListEnhancedFields
  as select from I_InvoiceList as InvoiceList

  association [1..1] to I_InvoiceList             as _InvoiceList  on $projection.InvoiceList = _InvoiceList.InvoiceList
  association [0..1] to I_InvoiceListRemuneration as _Remuneration on $projection.InvoiceList = _Remuneration.InvoiceList

{
      @Consumption.valueHelpDefinition: [ { entity: { name: 'I_InvoiceListStdVH', element: 'InvoiceList' } } ]
  key InvoiceList.InvoiceList,

      InvoiceList.TransactionCurrency                           as TransactionCurrency,

      @DefaultAggregation: #NONE
      @Semantics.amount.currencyCode: 'TransactionCurrency'
      cast(InvoiceList.TotalTaxAmount +
           InvoiceList.TotalNetAmount +
           _Remuneration.TotalRemunerationNetAmount +
           _Remuneration.TotalRemunerationTaxAmount  as sum_rl) as TotalGrossAmount,

      _Remuneration,
      _TransactionCurrency,

      // Needed for DCL

      @Consumption.hidden: true
      _InvoiceList
}