I_InvoiceListType

DDL: I_INVOICELISTTYPE Type: view_entity BASIC

Invoice List Type

I_InvoiceListType is a Basic CDS View (Dimension) that provides data about "Invoice List Type" in SAP S/4HANA. It reads from 1 data source (I_BillingProcessDocumentType) and exposes 7 fields with key field InvoiceListType.

Data Sources (1)

SourceAliasJoin Type
I_BillingProcessDocumentType I_BillingProcessDocumentType from

Annotations (17)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
Consumption.ranked true view
EndUserText.label Invoice List Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey InvoiceListType view
ObjectModel.sapObjectNodeType.name 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 (7)

KeyFieldSource TableSource FieldDescription
KEY InvoiceListType
SDDocumentCategory SDDocumentCategory
IncrementItemNumber IncrementItemNumber
BillingDocumentCategory BillingDocumentCategory
_Text _Text
_SDDocumentCategory _SDDocumentCategory
_BillingDocumentCategory _BillingDocumentCategory
@AbapCatalog.entityBuffer.definitionAllowed: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@Analytics.internalName: #LOCAL
@Consumption.ranked: true
@EndUserText.label: 'Invoice List Type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.representativeKey: 'InvoiceListType'
@ObjectModel.sapObjectNodeType.name: 'InvoiceListType'
@ObjectModel.supportedCapabilities: [ #ANALYTICAL_DIMENSION,
                                      #CDS_MODELING_DATA_SOURCE,
                                      #CDS_MODELING_ASSOCIATION_TARGET,
                                      #SQL_DATA_SOURCE,
                                      #SEARCHABLE_ENTITY,
                                      #EXTRACTION_DATA_SOURCE ]
@ObjectModel.usageType: { dataClass: #CUSTOMIZING, serviceQuality: #A, sizeCategory: #S }
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC

define root view entity I_InvoiceListType
  as select from I_BillingProcessDocumentType

  composition of exact one to many I_InvoiceListTypeText as _Text

{
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @ObjectModel.text.association: '_Text'
  key cast ( BillingProcessDocumentType as invoicelisttype preserving type) as InvoiceListType,
      @ObjectModel.foreignKey.association: '_SDDocumentCategory'
      SDDocumentCategory,
      IncrementItemNumber,
      @ObjectModel.foreignKey.association: '_BillingDocumentCategory'
      BillingDocumentCategory,

      _Text,
      _SDDocumentCategory,
      _BillingDocumentCategory
}
where
     SDDocumentCategory = '3'
  or SDDocumentCategory = '4'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BILLINGPROCESSDOCUMENTTYPE"
],
"ASSOCIATED":
[
"I_BILLINGDOCUMENTCATEGORY",
"I_INVOICELISTTYPETEXT",
"I_SDDOCUMENTCATEGORY"
],
"BASE":
[
"I_BILLINGPROCESSDOCUMENTTYPE"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/