I_InvoiceListTypeText

DDL: I_INVOICELISTTYPETEXT Type: view_entity BASIC

Invoice List Type - Text

I_InvoiceListTypeText is a Basic CDS View that provides data about "Invoice List Type - Text" in SAP S/4HANA. It reads from 2 data sources (I_InvoiceListType, I_BillingProcessDocTypeText) and exposes 5 fields with key fields InvoiceListType, Language.

Data Sources (2)

SourceAliasJoin Type
I_InvoiceListType InvoiceListType inner
I_BillingProcessDocTypeText Text from

Annotations (15)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
Consumption.ranked true view
EndUserText.label Invoice List Type - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey InvoiceListType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InvoiceListType I_InvoiceListType InvoiceListType
KEY Language I_BillingProcessDocTypeText Language
InvoiceListTypeName
_Language I_BillingProcessDocTypeText _Language
_InvoiceListType _InvoiceListType
@AbapCatalog.entityBuffer.definitionAllowed: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@Consumption.ranked: true
@EndUserText.label: 'Invoice List Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.representativeKey: 'InvoiceListType'
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET,
                                     #CDS_MODELING_DATA_SOURCE,
                                     #EXTRACTION_DATA_SOURCE,
                                     #LANGUAGE_DEPENDENT_TEXT,
                                     #SEARCHABLE_ENTITY,
                                     #SQL_DATA_SOURCE]
@ObjectModel.usageType: { dataClass: #CUSTOMIZING, serviceQuality: #A, sizeCategory: #S }
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC

define view entity I_InvoiceListTypeText
  as select from I_BillingProcessDocTypeText as Text
    inner join   I_InvoiceListType           as InvoiceListType on Text.BillingProcessDocumentType = InvoiceListType.InvoiceListType

  association to parent I_InvoiceListType as _InvoiceListType on $projection.InvoiceListType = _InvoiceListType.InvoiceListType

{
      @ObjectModel.foreignKey.association: '_InvoiceListType'
      @ObjectModel.text.element: ['InvoiceListTypeName']
  key InvoiceListType.InvoiceListType,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key Text.Language,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Semantics.text: true
      cast ( Text.BillingProcessDocumentTypeName as invoicelisttypename preserving type ) as InvoiceListTypeName,

      Text._Language,
      _InvoiceListType
}